| 18 | |
| 19 | export type ClientOptions = openai.ClientOptions & { openpipe?: OpenPipeConfig | OpenPipe }; |
| 20 | export default class OpenAI extends openai.OpenAI { |
| 21 | constructor({ openpipe, ...options }: ClientOptions = {}) { |
| 22 | super({ ...options }); |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected