()
| 77 | } |
| 78 | |
| 79 | function createModel() { |
| 80 | return new CopilotResponsesLanguageModel({ |
| 81 | modelId: "copilot-test", |
| 82 | fetch: globalThis.fetch, |
| 83 | baseUrl: "https://example.test", |
| 84 | }); |
| 85 | } |
| 86 | |
| 87 | function getJsonBody(init: RequestInit) { |
| 88 | if (typeof init.body !== "string") { |
no outgoing calls
no test coverage detected