(workspaceId: string)
| 1808 | } |
| 1809 | |
| 1810 | private assertChatTransientState(workspaceId: string): WorkspaceChatTransientState { |
| 1811 | const state = this.chatTransientState.get(workspaceId); |
| 1812 | assert(state, `Workspace ${workspaceId} not found - must call addWorkspace() first`); |
| 1813 | return state; |
| 1814 | } |
| 1815 | |
| 1816 | private deriveHistoryPaginationState( |
| 1817 | aggregator: StreamingMessageAggregator, |
no test coverage detected