├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── modal ├── context.py ├── fs_tools.py ├── methods_web.py ├── modal_app.py ├── modal_base.py ├── models │ ├── chat_dalle.py │ ├── chat_model.py │ └── chat_openai.py ├── scripts │ └── create_user.py ├── tools │ └── tools.py └── tts_tools.py ├── netlify.toml ├── package.json ├── prisma ├── migrations │ ├── 20230919005750_init │ │ └── migration.sql │ ├── 20230919020828_init │ │ └── migration.sql │ ├── 20230919021012_role │ │ └── migration.sql │ ├── 20231202050627_public │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo192_mask.png ├── logo512.png ├── logo512_mask.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── backend.js ├── components ├── Chat.js ├── ChatMessage.js ├── ChatView.js ├── HistoryDrawer.js ├── LoginDialog.js ├── SettingsDialog.js ├── ShareDialog.js ├── TopBar.js └── VoiceChatDialog.js ├── index.css ├── index.js ├── logo.svg ├── service-worker.js └── serviceWorkerRegistration.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/README.md -------------------------------------------------------------------------------- /modal/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/modal/context.py -------------------------------------------------------------------------------- /modal/fs_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/modal/fs_tools.py -------------------------------------------------------------------------------- /modal/methods_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/modal/methods_web.py -------------------------------------------------------------------------------- /modal/modal_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/modal/modal_app.py -------------------------------------------------------------------------------- /modal/modal_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/modal/modal_base.py -------------------------------------------------------------------------------- /modal/models/chat_dalle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/modal/models/chat_dalle.py -------------------------------------------------------------------------------- /modal/models/chat_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/modal/models/chat_model.py -------------------------------------------------------------------------------- /modal/models/chat_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/modal/models/chat_openai.py -------------------------------------------------------------------------------- /modal/scripts/create_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/modal/scripts/create_user.py -------------------------------------------------------------------------------- /modal/tools/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/modal/tools/tools.py -------------------------------------------------------------------------------- /modal/tts_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/modal/tts_tools.py -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/package.json -------------------------------------------------------------------------------- /prisma/migrations/20230919005750_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/prisma/migrations/20230919005750_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20230919020828_init/migration.sql: -------------------------------------------------------------------------------- 1 | -- DropIndex 2 | DROP INDEX "Chat_name_key"; 3 | -------------------------------------------------------------------------------- /prisma/migrations/20230919021012_role/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/prisma/migrations/20230919021012_role/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20231202050627_public/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/prisma/migrations/20231202050627_public/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo192_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/public/logo192_mask.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/logo512_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/public/logo512_mask.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/App.js -------------------------------------------------------------------------------- /src/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/backend.js -------------------------------------------------------------------------------- /src/components/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/components/Chat.js -------------------------------------------------------------------------------- /src/components/ChatMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/components/ChatMessage.js -------------------------------------------------------------------------------- /src/components/ChatView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/components/ChatView.js -------------------------------------------------------------------------------- /src/components/HistoryDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/components/HistoryDrawer.js -------------------------------------------------------------------------------- /src/components/LoginDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/components/LoginDialog.js -------------------------------------------------------------------------------- /src/components/SettingsDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/components/SettingsDialog.js -------------------------------------------------------------------------------- /src/components/ShareDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/components/ShareDialog.js -------------------------------------------------------------------------------- /src/components/TopBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/components/TopBar.js -------------------------------------------------------------------------------- /src/components/VoiceChatDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/components/VoiceChatDialog.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/serviceWorkerRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshh12/llm-chat-web-ui/HEAD/src/serviceWorkerRegistration.js --------------------------------------------------------------------------------