(config: Omit<AssistantConfig, 'id'>)
| 102 | } |
| 103 | |
| 104 | export function createAssistant(config: Omit<AssistantConfig, 'id'>): AssistantSaveResult & { id?: string } { |
| 105 | return getManager().createAssistant(config) |
| 106 | } |
| 107 | |
| 108 | export function deleteAssistant(id: string): AssistantSaveResult { |
| 109 | return getManager().deleteAssistant(id) |
nothing calls this directly
no test coverage detected