(id: string)
| 94 | } |
| 95 | |
| 96 | export function reimportAssistant(id: string): AssistantSaveResult { |
| 97 | return getManager().reimportAssistant(id) |
| 98 | } |
| 99 | |
| 100 | export function updateAssistant(id: string, updates: Partial<AssistantConfig>): AssistantSaveResult { |
| 101 | return getManager().updateAssistant(id, updates) |
nothing calls this directly
no test coverage detected