| 1816 | } |
| 1817 | |
| 1818 | export interface ChatMessage { |
| 1819 | id: string; |
| 1820 | role: "user" | "assistant"; |
| 1821 | parts: ChatPart[]; |
| 1822 | createdAt: number; |
| 1823 | completedAt?: number | null; |
| 1824 | parentId?: string | null; |
| 1825 | } |
| 1826 | |
| 1827 | /** How much of the model's context window a session has used, measured off the |
| 1828 | * most recent API request (latest wins, not cumulative). `contextWindow` is |
nothing calls this directly
no outgoing calls
no test coverage detected