(state: AIChatSessionState)
| 308 | } |
| 309 | |
| 310 | function getDisplayedBufferKey(state: AIChatSessionState): string { |
| 311 | return state.currentAIChatId ?? DRAFT_AI_CHAT_KEY |
| 312 | } |
| 313 | |
| 314 | export const useAIChatStore = defineStore('aiChatRuntime', () => { |
| 315 | const sessionStates = ref<Record<string, AIChatSessionState>>({}) |
no outgoing calls
no test coverage detected