(workspaceId: string)
| 22 | } |
| 23 | |
| 24 | function streamStartEvent(workspaceId: string): Record<string, unknown> { |
| 25 | return { |
| 26 | type: "stream-start", |
| 27 | workspaceId, |
| 28 | messageId: "assistant-1", |
| 29 | model: TEST_MODEL, |
| 30 | startTime: Date.now(), |
| 31 | }; |
| 32 | } |
| 33 | |
| 34 | function streamAbortEvent( |
| 35 | workspaceId: string, |
no outgoing calls
no test coverage detected