()
| 4 | import type { StreamChunk } from '@tanstack/ai' |
| 5 | |
| 6 | const createAdapter = () => |
| 7 | new OpenAITextAdapter({ apiKey: 'test-key' }, 'gpt-4o-mini') |
| 8 | |
| 9 | function createMockResponsesStream( |
| 10 | chunks: Array<Record<string, unknown>>, |
no outgoing calls
no test coverage detected