(rawMd: string)
| 114 | } |
| 115 | |
| 116 | export function importAssistantFromMd(rawMd: string): AssistantSaveResult & { id?: string } { |
| 117 | return getManager().importAssistantFromMd(rawMd) |
| 118 | } |
| 119 | |
| 120 | export function isGeneralAssistant(id: string): boolean { |
| 121 | return getManager().isGeneralAssistant(id) |
nothing calls this directly
no test coverage detected