(id: string)
| 34 | create(config: Omit<AssistantConfig, 'id'>): Promise<{ success: boolean; id?: string; error?: string }> |
| 35 | update(id: string, updates: Partial<AssistantConfig>): Promise<{ success: boolean; error?: string }> |
| 36 | delete(id: string): Promise<{ success: boolean; error?: string }> |
| 37 | reset(id: string): Promise<{ success: boolean; error?: string }> |
| 38 | importFromMd(rawMd: string): Promise<{ success: boolean; error?: string }> |
| 39 | importBuiltin(builtinId: string): Promise<{ success: boolean; error?: string }> |
no outgoing calls
no test coverage detected