()
| 102 | }); |
| 103 | |
| 104 | function createEmptySession(): ChatSession { |
| 105 | return { |
| 106 | id: nanoid(), |
| 107 | topic: DEFAULT_TOPIC, |
| 108 | memoryPrompt: "", |
| 109 | messages: [], |
| 110 | stat: { |
| 111 | tokenCount: 0, |
| 112 | wordCount: 0, |
| 113 | charCount: 0, |
| 114 | }, |
| 115 | lastUpdate: Date.now(), |
| 116 | lastSummarizeIndex: 0, |
| 117 | |
| 118 | mask: createEmptyMask(), |
| 119 | }; |
| 120 | } |
| 121 | |
| 122 | function getSummarizeModel( |
| 123 | currentModel: string, |
no test coverage detected