()
| 355 | } |
| 356 | |
| 357 | function getActiveTaskState(): AIChatSessionState | null { |
| 358 | if (!activeTask.value) return null |
| 359 | return getSessionState(activeTask.value.chatKey) |
| 360 | } |
| 361 | |
| 362 | function getOrCreateBuffer( |
| 363 | state: AIChatSessionState, |
nothing calls this directly
no test coverage detected