| 21 | } |
| 22 | |
| 23 | interface OpenAIModelsResponse extends OpenAIErrorResponse { |
| 24 | data?: OpenAIModel[]; |
| 25 | } |
| 26 | |
| 27 | async function tryApi(apiKey: string): Promise<Response> { |
| 28 | const response = await fetch("https://api.openai.com/v1/completions", { |
nothing calls this directly
no outgoing calls
no test coverage detected