| 1 | // Pure helper functions extracted from ChatBar for reuse in ChatPage and tests. |
| 2 | |
| 3 | interface ChatMessage { |
| 4 | readonly role: "user" | "assistant"; |
| 5 | readonly content: string; |
| 6 | readonly timestamp: number; |
| 7 | } |
| 8 | |
| 9 | interface SharedSessionMeta { |
| 10 | readonly activeBookId?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected