add chat and about page, style everything, let user upload a file and have server return string array of the file's text contents chunked by 4k characters

This commit is contained in:
2023-04-08 19:30:34 -04:00
parent 49e60fcdb6
commit d906c72e8b
8 changed files with 127 additions and 95 deletions

View File

@@ -0,0 +1,5 @@
import { writable } from 'svelte/store';
const prompt = writable<string>(JSON.stringify([]));
export default prompt;