(conversationId: string, chunk: Chunk)
| 1074 | } |
| 1075 | |
| 1076 | function addChunk(conversationId: string, chunk: Chunk): void { |
| 1077 | if (!state.conversations[conversationId]) return |
| 1078 | queueChunk(conversationId, chunk) |
| 1079 | } |
| 1080 | |
| 1081 | function addActivityEvent( |
| 1082 | conversationId: string, |
no test coverage detected