()
| 6 | import { SQLChatBotId } from "."; |
| 7 | |
| 8 | const getDefaultConversation = (): Conversation => { |
| 9 | return { |
| 10 | id: generateUUID(), |
| 11 | assistantId: SQLChatBotId, |
| 12 | title: dayjs().format("LTS"), |
| 13 | createdAt: Date.now(), |
| 14 | }; |
| 15 | }; |
| 16 | |
| 17 | interface ConversationState { |
| 18 | getState: () => ConversationState; |
no test coverage detected