Chat History and multi model

This commit is contained in:
Sebarocks 2025-07-29 23:42:15 -04:00
parent a9ffb48b4b
commit 44f391ef1e
13 changed files with 1072 additions and 839 deletions

View file

@ -1,5 +1,16 @@
<script>
import Chat from './lib/Chat.svelte';
import Chat from "./lib/Chat.svelte";
import ChatList from "./lib/ChatList.svelte";
</script>
<Chat />
<div class="drawer lg:drawer-open">
<input id="drawer-toggle" type="checkbox" class="drawer-toggle" />
<div class="drawer-content flex flex-col h-screen">
<Chat />
</div>
<div class="drawer-side">
<label for="drawer-toggle" class="drawer-overlay"></label>
<ChatList />
</div>
</div>