feat: initial chat history ui (#25)

This commit is contained in:
Kirjava
2024-07-31 22:21:40 +01:00
committed by GitHub
parent be315f685a
commit 41f3f202ec
11 changed files with 285 additions and 5 deletions

View File

@@ -10,6 +10,7 @@ export interface ChatHistory {
urlId?: string;
description?: string;
messages: Message[];
timestamp: string;
}
const persistenceEnabled = !import.meta.env.VITE_DISABLE_PERSISTENCE;