Polling "not yet" response.
()
| 37 | |
| 38 | /** Polling "not yet" response. */ |
| 39 | function authorizationPendingResponse(): Response { |
| 40 | return jsonResponse({ error: "authorization_pending" }); |
| 41 | } |
| 42 | |
| 43 | /** Models list response from Copilot API. */ |
| 44 | function modelsResponse(models: string[] = ["gpt-5", "claude-sonnet-4"]): Response { |
no test coverage detected