feat: custom chatId route support

This commit is contained in:
Timothy J. Baek 2023-11-19 17:47:07 -08:00
parent 99e8816e73
commit 2342c5036b
14 changed files with 2672 additions and 2042 deletions

View file

@ -1,4 +1,13 @@
import { writable } from 'svelte/store';
// Backend
export const config = writable(undefined);
export const user = writable(undefined);
// Frontend
export const db = writable(undefined);
export const chatId = writable('');
export const chats = writable([]);
export const models = writable([]);
export const settings = writable({});
export const showSettings = writable(false);