(chatKey: string)
| 351 | } |
| 352 | |
| 353 | function getSessionState(chatKey: string): AIChatSessionState | null { |
| 354 | return sessionStates.value[chatKey] ?? null |
| 355 | } |
| 356 | |
| 357 | function getActiveTaskState(): AIChatSessionState | null { |
| 358 | if (!activeTask.value) return null |
no outgoing calls
no test coverage detected