(id: string)
| 110 | } |
| 111 | |
| 112 | export function resetAssistant(id: string): AssistantSaveResult { |
| 113 | return getManager().resetAssistant(id) |
| 114 | } |
| 115 | |
| 116 | export function importAssistantFromMd(rawMd: string): AssistantSaveResult & { id?: string } { |
| 117 | return getManager().importAssistantFromMd(rawMd) |
nothing calls this directly
no test coverage detected