(value: unknown)
| 81 | }) |
| 82 | |
| 83 | function resultChunk(value: unknown) { |
| 84 | return { |
| 85 | type: EventType.CUSTOM, |
| 86 | name: 'generation:result', |
| 87 | value, |
| 88 | timestamp: Date.now(), |
| 89 | } satisfies StreamChunk |
| 90 | } |
| 91 | |
| 92 | function runStartedChunk(runId: string) { |
| 93 | return { |
no test coverage detected