index.ts 420 Bytes
Newer Older
1
2
import { writable } from 'svelte/store';

3
// Backend
4
5
export const config = writable(undefined);
export const user = writable(undefined);
6
7

// Frontend
Timothy J. Baek's avatar
Timothy J. Baek committed
8
export const theme = writable('dark');
9
10
11
export const chatId = writable('');
export const chats = writable([]);
export const models = writable([]);
12
export const modelfiles = writable([]);
Timothy J. Baek's avatar
Timothy J. Baek committed
13

14
15
export const settings = writable({});
export const showSettings = writable(false);