(chunks: unknown[], includeDone = false)
| 745 | } |
| 746 | |
| 747 | function createEventResponse(chunks: unknown[], includeDone = false) { |
| 748 | return new Response(createEventStream(chunks, includeDone), { |
| 749 | status: 200, |
| 750 | headers: { "Content-Type": "text/event-stream" }, |
| 751 | }) |
| 752 | } |
| 753 | |
| 754 | describe("session.llm.stream", () => { |
| 755 | const vivgridFixture = { providerID: "vivgrid", modelID: "gemini-3.1-pro-preview" } |
no test coverage detected