(id: string)
| 201 | } |
| 202 | |
| 203 | async function getAssistantConfig(id: string): Promise<AssistantConfigFull | null> { |
| 204 | try { |
| 205 | return await useAssistantService().getConfig(id) |
| 206 | } catch (error) { |
| 207 | console.error('[AssistantStore] Failed to get config:', error) |
| 208 | return null |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | async function updateAssistant( |
| 213 | id: string, |
nothing calls this directly
no test coverage detected