()
| 311 | } |
| 312 | |
| 313 | protected createOpenAiAdapter() { |
| 314 | return constructLlmApi({ |
| 315 | provider: this.providerName as any, |
| 316 | apiKey: this.apiKey ?? "", |
| 317 | apiBase: this.apiBase, |
| 318 | requestOptions: this.requestOptions, |
| 319 | env: this._llmOptions.env, |
| 320 | useResponsesApi: this._llmOptions.useResponsesApi, |
| 321 | }); |
| 322 | } |
| 323 | |
| 324 | listModels(): Promise<string[]> { |
| 325 | return Promise.resolve([]); |
nothing calls this directly
no test coverage detected