(aiChatId: string, messageId: string)
| 94 | } |
| 95 | |
| 96 | export function deleteMessagesFrom(aiChatId: string, messageId: string) { |
| 97 | return getManager().deleteMessagesFrom(aiChatId, messageId) |
| 98 | } |
| 99 | |
| 100 | export function forkAIChat(sourceAIChatId: string, upToMessageId: string, title?: string) { |
| 101 | return getManager().forkAIChat(sourceAIChatId, upToMessageId, title) |
nothing calls this directly
no test coverage detected