(aiChatId: string)
| 133 | } |
| 134 | |
| 135 | export function getAIChatTokenUsage(aiChatId: string) { |
| 136 | return getManager().getAIChatTokenUsage(aiChatId) |
| 137 | } |
| 138 | |
| 139 | export function getHistoryForAgent(aiChatId: string, maxMessages?: number, leafMessageId?: string | null) { |
| 140 | return getManager().getHistoryForAgent(aiChatId, maxMessages, leafMessageId) |
nothing calls this directly
no test coverage detected