(sessionId: string, title: string | undefined, assistantId: string)
| 42 | } |
| 43 | |
| 44 | export function createAIChat(sessionId: string, title: string | undefined, assistantId: string) { |
| 45 | return getManager().createAIChat(sessionId, title, assistantId) |
| 46 | } |
| 47 | |
| 48 | export function getAIChatCountsBySession() { |
| 49 | return getManager().getAIChatCountsBySession() |
nothing calls this directly
no test coverage detected