(sql: string)
| 38 | } |
| 39 | |
| 40 | export function executeAiSQL(sql: string) { |
| 41 | return getManager().executeAiSQL(sql) |
| 42 | } |
| 43 | |
| 44 | export function createAIChat(sessionId: string, title: string | undefined, assistantId: string) { |
| 45 | return getManager().createAIChat(sessionId, title, assistantId) |
nothing calls this directly
no test coverage detected