├── .dockerignore ├── .env.local.example ├── .eslintrc.json ├── .github └── workflows │ ├── deploy-docker-image.yaml │ └── run-test-suite.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── Makefile ├── README.md ├── SECURITY.md ├── __tests__ └── utils │ └── app │ └── importExports.test.ts ├── components ├── Buttons │ └── SidebarActionButton │ │ ├── SidebarActionButton.tsx │ │ └── index.ts ├── Chat │ ├── Chat.tsx │ ├── ChatInput.tsx │ ├── ChatLoader.tsx │ ├── ChatMessage.tsx │ ├── ErrorMessageDiv.tsx │ ├── MemoizedChatMessage.tsx │ ├── ModelSelect.tsx │ ├── PluginSelect.tsx │ ├── PromptList.tsx │ ├── Regenerate.tsx │ ├── SystemPrompt.tsx │ ├── Temperature.tsx │ └── VariableModal.tsx ├── Chatbar │ ├── Chatbar.context.tsx │ ├── Chatbar.state.tsx │ ├── Chatbar.tsx │ └── components │ │ ├── ChatFolders.tsx │ │ ├── ChatbarSettings.tsx │ │ ├── ClearConversations.tsx │ │ ├── Conversation.tsx │ │ ├── Conversations.tsx │ │ └── PluginKeys.tsx ├── Folder │ ├── Folder.tsx │ └── index.ts ├── Markdown │ ├── CodeBlock.tsx │ └── MemoizedReactMarkdown.tsx ├── Mobile │ └── Navbar.tsx ├── Promptbar │ ├── PromptBar.context.tsx │ ├── Promptbar.state.tsx │ ├── Promptbar.tsx │ ├── components │ │ ├── Prompt.tsx │ │ ├── PromptFolders.tsx │ │ ├── PromptModal.tsx │ │ ├── PromptbarSettings.tsx │ │ └── Prompts.tsx │ └── index.ts ├── Search │ ├── Search.tsx │ └── index.ts ├── Settings │ ├── Import.tsx │ ├── Key.tsx │ └── SettingDialog.tsx ├── Sidebar │ ├── Sidebar.tsx │ ├── SidebarButton.tsx │ ├── components │ │ └── OpenCloseButton.tsx │ └── index.ts └── Spinner │ ├── Spinner.tsx │ └── index.ts ├── docker-compose.yml ├── docs └── google_search.md ├── hooks ├── useCreateReducer.ts └── useFetch.ts ├── k8s └── chatbot-ui.yaml ├── license ├── next-i18next.config.js ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── api │ ├── chat.ts │ ├── google.ts │ ├── home │ │ ├── home.context.tsx │ │ ├── home.state.tsx │ │ ├── home.tsx │ │ └── index.ts │ └── models.ts └── index.tsx ├── postcss.config.js ├── prettier.config.js ├── public ├── favicon.ico ├── locales │ ├── ar │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── bn │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── ca │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ └── sidebar.json │ ├── de │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── en │ │ └── common.json │ ├── es │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── fi │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── fr │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── he │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── id │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── it │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── ja │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── ko │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── pl │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── pt │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── ro │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── ru │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── si │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── sv │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── te │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ ├── tr │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ └── sidebar.json │ ├── vi │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json │ └── zh │ │ ├── chat.json │ │ ├── common.json │ │ ├── markdown.json │ │ ├── promptbar.json │ │ ├── settings.json │ │ └── sidebar.json ├── screenshot.png └── screenshots │ └── screenshot-0402023.jpg ├── services ├── errorService.ts └── useApiService.ts ├── styles └── globals.css ├── tailwind.config.js ├── traefik └── config.yaml ├── tsconfig.json ├── types ├── chat.ts ├── data.ts ├── env.ts ├── error.ts ├── export.ts ├── folder.ts ├── google.ts ├── index.ts ├── llama3-tokenizer-js.d.ts ├── mistral-tokenizer-js.d.ts ├── openai.ts ├── plugin.ts ├── prompt.ts ├── settings.ts └── storage.ts ├── utils ├── app │ ├── api.ts │ ├── clean.ts │ ├── codeblock.ts │ ├── const.ts │ ├── conversation.ts │ ├── folders.ts │ ├── importExport.ts │ ├── prompts.ts │ └── settings.ts ├── data │ └── throttle.ts └── server │ ├── google.ts │ └── index.ts └── vitest.config.ts /.dockerignore: -------------------------------------------------------------------------------- 1 | .env 2 | .env.local 3 | node_modules 4 | test-results 5 | -------------------------------------------------------------------------------- /.env.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/.env.local.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/deploy-docker-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/.github/workflows/deploy-docker-image.yaml -------------------------------------------------------------------------------- /.github/workflows/run-test-suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/.github/workflows/run-test-suite.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/SECURITY.md -------------------------------------------------------------------------------- /__tests__/utils/app/importExports.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/__tests__/utils/app/importExports.test.ts -------------------------------------------------------------------------------- /components/Buttons/SidebarActionButton/SidebarActionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Buttons/SidebarActionButton/SidebarActionButton.tsx -------------------------------------------------------------------------------- /components/Buttons/SidebarActionButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SidebarActionButton'; 2 | -------------------------------------------------------------------------------- /components/Chat/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chat/Chat.tsx -------------------------------------------------------------------------------- /components/Chat/ChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chat/ChatInput.tsx -------------------------------------------------------------------------------- /components/Chat/ChatLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chat/ChatLoader.tsx -------------------------------------------------------------------------------- /components/Chat/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chat/ChatMessage.tsx -------------------------------------------------------------------------------- /components/Chat/ErrorMessageDiv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chat/ErrorMessageDiv.tsx -------------------------------------------------------------------------------- /components/Chat/MemoizedChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chat/MemoizedChatMessage.tsx -------------------------------------------------------------------------------- /components/Chat/ModelSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chat/ModelSelect.tsx -------------------------------------------------------------------------------- /components/Chat/PluginSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chat/PluginSelect.tsx -------------------------------------------------------------------------------- /components/Chat/PromptList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chat/PromptList.tsx -------------------------------------------------------------------------------- /components/Chat/Regenerate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chat/Regenerate.tsx -------------------------------------------------------------------------------- /components/Chat/SystemPrompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chat/SystemPrompt.tsx -------------------------------------------------------------------------------- /components/Chat/Temperature.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chat/Temperature.tsx -------------------------------------------------------------------------------- /components/Chat/VariableModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chat/VariableModal.tsx -------------------------------------------------------------------------------- /components/Chatbar/Chatbar.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chatbar/Chatbar.context.tsx -------------------------------------------------------------------------------- /components/Chatbar/Chatbar.state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chatbar/Chatbar.state.tsx -------------------------------------------------------------------------------- /components/Chatbar/Chatbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chatbar/Chatbar.tsx -------------------------------------------------------------------------------- /components/Chatbar/components/ChatFolders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chatbar/components/ChatFolders.tsx -------------------------------------------------------------------------------- /components/Chatbar/components/ChatbarSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chatbar/components/ChatbarSettings.tsx -------------------------------------------------------------------------------- /components/Chatbar/components/ClearConversations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chatbar/components/ClearConversations.tsx -------------------------------------------------------------------------------- /components/Chatbar/components/Conversation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chatbar/components/Conversation.tsx -------------------------------------------------------------------------------- /components/Chatbar/components/Conversations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chatbar/components/Conversations.tsx -------------------------------------------------------------------------------- /components/Chatbar/components/PluginKeys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Chatbar/components/PluginKeys.tsx -------------------------------------------------------------------------------- /components/Folder/Folder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Folder/Folder.tsx -------------------------------------------------------------------------------- /components/Folder/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Folder'; 2 | -------------------------------------------------------------------------------- /components/Markdown/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Markdown/CodeBlock.tsx -------------------------------------------------------------------------------- /components/Markdown/MemoizedReactMarkdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Markdown/MemoizedReactMarkdown.tsx -------------------------------------------------------------------------------- /components/Mobile/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Mobile/Navbar.tsx -------------------------------------------------------------------------------- /components/Promptbar/PromptBar.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Promptbar/PromptBar.context.tsx -------------------------------------------------------------------------------- /components/Promptbar/Promptbar.state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Promptbar/Promptbar.state.tsx -------------------------------------------------------------------------------- /components/Promptbar/Promptbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Promptbar/Promptbar.tsx -------------------------------------------------------------------------------- /components/Promptbar/components/Prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Promptbar/components/Prompt.tsx -------------------------------------------------------------------------------- /components/Promptbar/components/PromptFolders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Promptbar/components/PromptFolders.tsx -------------------------------------------------------------------------------- /components/Promptbar/components/PromptModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Promptbar/components/PromptModal.tsx -------------------------------------------------------------------------------- /components/Promptbar/components/PromptbarSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Promptbar/components/PromptbarSettings.tsx -------------------------------------------------------------------------------- /components/Promptbar/components/Prompts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Promptbar/components/Prompts.tsx -------------------------------------------------------------------------------- /components/Promptbar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Promptbar'; 2 | -------------------------------------------------------------------------------- /components/Search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Search/Search.tsx -------------------------------------------------------------------------------- /components/Search/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Search'; 2 | -------------------------------------------------------------------------------- /components/Settings/Import.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Settings/Import.tsx -------------------------------------------------------------------------------- /components/Settings/Key.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Settings/Key.tsx -------------------------------------------------------------------------------- /components/Settings/SettingDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Settings/SettingDialog.tsx -------------------------------------------------------------------------------- /components/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /components/Sidebar/SidebarButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Sidebar/SidebarButton.tsx -------------------------------------------------------------------------------- /components/Sidebar/components/OpenCloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Sidebar/components/OpenCloseButton.tsx -------------------------------------------------------------------------------- /components/Sidebar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Sidebar'; 2 | -------------------------------------------------------------------------------- /components/Spinner/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/components/Spinner/Spinner.tsx -------------------------------------------------------------------------------- /components/Spinner/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Spinner'; 2 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/google_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/docs/google_search.md -------------------------------------------------------------------------------- /hooks/useCreateReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/hooks/useCreateReducer.ts -------------------------------------------------------------------------------- /hooks/useFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/hooks/useFetch.ts -------------------------------------------------------------------------------- /k8s/chatbot-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/k8s/chatbot-ui.yaml -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/license -------------------------------------------------------------------------------- /next-i18next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/next-i18next.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/api/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/pages/api/chat.ts -------------------------------------------------------------------------------- /pages/api/google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/pages/api/google.ts -------------------------------------------------------------------------------- /pages/api/home/home.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/pages/api/home/home.context.tsx -------------------------------------------------------------------------------- /pages/api/home/home.state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/pages/api/home/home.state.tsx -------------------------------------------------------------------------------- /pages/api/home/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/pages/api/home/home.tsx -------------------------------------------------------------------------------- /pages/api/home/index.ts: -------------------------------------------------------------------------------- 1 | export { default, getServerSideProps } from './home'; 2 | -------------------------------------------------------------------------------- /pages/api/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/pages/api/models.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- 1 | export { default, getServerSideProps } from './api/home'; 2 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/locales/ar/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ar/chat.json -------------------------------------------------------------------------------- /public/locales/ar/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/ar/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ar/markdown.json -------------------------------------------------------------------------------- /public/locales/ar/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ar/promptbar.json -------------------------------------------------------------------------------- /public/locales/ar/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ar/settings.json -------------------------------------------------------------------------------- /public/locales/ar/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ar/sidebar.json -------------------------------------------------------------------------------- /public/locales/bn/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/bn/chat.json -------------------------------------------------------------------------------- /public/locales/bn/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/bn/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/bn/markdown.json -------------------------------------------------------------------------------- /public/locales/bn/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/bn/promptbar.json -------------------------------------------------------------------------------- /public/locales/bn/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/bn/settings.json -------------------------------------------------------------------------------- /public/locales/bn/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/bn/sidebar.json -------------------------------------------------------------------------------- /public/locales/ca/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ca/chat.json -------------------------------------------------------------------------------- /public/locales/ca/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/ca/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ca/markdown.json -------------------------------------------------------------------------------- /public/locales/ca/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ca/promptbar.json -------------------------------------------------------------------------------- /public/locales/ca/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ca/sidebar.json -------------------------------------------------------------------------------- /public/locales/de/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/de/chat.json -------------------------------------------------------------------------------- /public/locales/de/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/de/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/de/markdown.json -------------------------------------------------------------------------------- /public/locales/de/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/de/promptbar.json -------------------------------------------------------------------------------- /public/locales/de/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/de/settings.json -------------------------------------------------------------------------------- /public/locales/de/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/de/sidebar.json -------------------------------------------------------------------------------- /public/locales/en/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/es/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/es/chat.json -------------------------------------------------------------------------------- /public/locales/es/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/es/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/es/markdown.json -------------------------------------------------------------------------------- /public/locales/es/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/es/promptbar.json -------------------------------------------------------------------------------- /public/locales/es/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/es/settings.json -------------------------------------------------------------------------------- /public/locales/es/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/es/sidebar.json -------------------------------------------------------------------------------- /public/locales/fi/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/fi/chat.json -------------------------------------------------------------------------------- /public/locales/fi/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/fi/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/fi/markdown.json -------------------------------------------------------------------------------- /public/locales/fi/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/fi/promptbar.json -------------------------------------------------------------------------------- /public/locales/fi/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/fi/settings.json -------------------------------------------------------------------------------- /public/locales/fi/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/fi/sidebar.json -------------------------------------------------------------------------------- /public/locales/fr/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/fr/chat.json -------------------------------------------------------------------------------- /public/locales/fr/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/fr/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/fr/markdown.json -------------------------------------------------------------------------------- /public/locales/fr/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/fr/promptbar.json -------------------------------------------------------------------------------- /public/locales/fr/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/fr/settings.json -------------------------------------------------------------------------------- /public/locales/fr/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/fr/sidebar.json -------------------------------------------------------------------------------- /public/locales/he/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/he/chat.json -------------------------------------------------------------------------------- /public/locales/he/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/he/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/he/markdown.json -------------------------------------------------------------------------------- /public/locales/he/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/he/promptbar.json -------------------------------------------------------------------------------- /public/locales/he/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/he/settings.json -------------------------------------------------------------------------------- /public/locales/he/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/he/sidebar.json -------------------------------------------------------------------------------- /public/locales/id/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/id/chat.json -------------------------------------------------------------------------------- /public/locales/id/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/id/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/id/markdown.json -------------------------------------------------------------------------------- /public/locales/id/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/id/promptbar.json -------------------------------------------------------------------------------- /public/locales/id/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/id/settings.json -------------------------------------------------------------------------------- /public/locales/id/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/id/sidebar.json -------------------------------------------------------------------------------- /public/locales/it/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/it/chat.json -------------------------------------------------------------------------------- /public/locales/it/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/it/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/it/markdown.json -------------------------------------------------------------------------------- /public/locales/it/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/it/promptbar.json -------------------------------------------------------------------------------- /public/locales/it/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/it/settings.json -------------------------------------------------------------------------------- /public/locales/it/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/it/sidebar.json -------------------------------------------------------------------------------- /public/locales/ja/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ja/chat.json -------------------------------------------------------------------------------- /public/locales/ja/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/ja/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ja/markdown.json -------------------------------------------------------------------------------- /public/locales/ja/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ja/promptbar.json -------------------------------------------------------------------------------- /public/locales/ja/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ja/settings.json -------------------------------------------------------------------------------- /public/locales/ja/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ja/sidebar.json -------------------------------------------------------------------------------- /public/locales/ko/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ko/chat.json -------------------------------------------------------------------------------- /public/locales/ko/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/ko/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ko/markdown.json -------------------------------------------------------------------------------- /public/locales/ko/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ko/promptbar.json -------------------------------------------------------------------------------- /public/locales/ko/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ko/settings.json -------------------------------------------------------------------------------- /public/locales/ko/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ko/sidebar.json -------------------------------------------------------------------------------- /public/locales/pl/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/pl/chat.json -------------------------------------------------------------------------------- /public/locales/pl/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/pl/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/pl/markdown.json -------------------------------------------------------------------------------- /public/locales/pl/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/pl/promptbar.json -------------------------------------------------------------------------------- /public/locales/pl/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/pl/settings.json -------------------------------------------------------------------------------- /public/locales/pl/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/pl/sidebar.json -------------------------------------------------------------------------------- /public/locales/pt/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/pt/chat.json -------------------------------------------------------------------------------- /public/locales/pt/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/pt/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/pt/markdown.json -------------------------------------------------------------------------------- /public/locales/pt/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/pt/promptbar.json -------------------------------------------------------------------------------- /public/locales/pt/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/pt/settings.json -------------------------------------------------------------------------------- /public/locales/pt/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/pt/sidebar.json -------------------------------------------------------------------------------- /public/locales/ro/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ro/chat.json -------------------------------------------------------------------------------- /public/locales/ro/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/ro/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ro/markdown.json -------------------------------------------------------------------------------- /public/locales/ro/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ro/promptbar.json -------------------------------------------------------------------------------- /public/locales/ro/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ro/settings.json -------------------------------------------------------------------------------- /public/locales/ro/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ro/sidebar.json -------------------------------------------------------------------------------- /public/locales/ru/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ru/chat.json -------------------------------------------------------------------------------- /public/locales/ru/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/ru/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ru/markdown.json -------------------------------------------------------------------------------- /public/locales/ru/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ru/promptbar.json -------------------------------------------------------------------------------- /public/locales/ru/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ru/settings.json -------------------------------------------------------------------------------- /public/locales/ru/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/ru/sidebar.json -------------------------------------------------------------------------------- /public/locales/si/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/si/chat.json -------------------------------------------------------------------------------- /public/locales/si/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/si/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/si/markdown.json -------------------------------------------------------------------------------- /public/locales/si/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/si/promptbar.json -------------------------------------------------------------------------------- /public/locales/si/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/si/settings.json -------------------------------------------------------------------------------- /public/locales/si/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/si/sidebar.json -------------------------------------------------------------------------------- /public/locales/sv/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/sv/chat.json -------------------------------------------------------------------------------- /public/locales/sv/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/sv/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/sv/markdown.json -------------------------------------------------------------------------------- /public/locales/sv/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/sv/promptbar.json -------------------------------------------------------------------------------- /public/locales/sv/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/sv/settings.json -------------------------------------------------------------------------------- /public/locales/sv/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/sv/sidebar.json -------------------------------------------------------------------------------- /public/locales/te/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/te/chat.json -------------------------------------------------------------------------------- /public/locales/te/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/te/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/te/markdown.json -------------------------------------------------------------------------------- /public/locales/te/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/te/promptbar.json -------------------------------------------------------------------------------- /public/locales/te/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/te/settings.json -------------------------------------------------------------------------------- /public/locales/te/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/te/sidebar.json -------------------------------------------------------------------------------- /public/locales/tr/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/tr/chat.json -------------------------------------------------------------------------------- /public/locales/tr/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/tr/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/tr/markdown.json -------------------------------------------------------------------------------- /public/locales/tr/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/tr/promptbar.json -------------------------------------------------------------------------------- /public/locales/tr/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/tr/sidebar.json -------------------------------------------------------------------------------- /public/locales/vi/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/vi/chat.json -------------------------------------------------------------------------------- /public/locales/vi/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/vi/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/vi/markdown.json -------------------------------------------------------------------------------- /public/locales/vi/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/vi/promptbar.json -------------------------------------------------------------------------------- /public/locales/vi/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/vi/settings.json -------------------------------------------------------------------------------- /public/locales/vi/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/vi/sidebar.json -------------------------------------------------------------------------------- /public/locales/zh/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/zh/chat.json -------------------------------------------------------------------------------- /public/locales/zh/common.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /public/locales/zh/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/zh/markdown.json -------------------------------------------------------------------------------- /public/locales/zh/promptbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/zh/promptbar.json -------------------------------------------------------------------------------- /public/locales/zh/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/zh/settings.json -------------------------------------------------------------------------------- /public/locales/zh/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/locales/zh/sidebar.json -------------------------------------------------------------------------------- /public/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/screenshot.png -------------------------------------------------------------------------------- /public/screenshots/screenshot-0402023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/public/screenshots/screenshot-0402023.jpg -------------------------------------------------------------------------------- /services/errorService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/services/errorService.ts -------------------------------------------------------------------------------- /services/useApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/services/useApiService.ts -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /traefik/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/traefik/config.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/types/chat.ts -------------------------------------------------------------------------------- /types/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/types/data.ts -------------------------------------------------------------------------------- /types/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/types/env.ts -------------------------------------------------------------------------------- /types/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/types/error.ts -------------------------------------------------------------------------------- /types/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/types/export.ts -------------------------------------------------------------------------------- /types/folder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/types/folder.ts -------------------------------------------------------------------------------- /types/google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/types/google.ts -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /types/llama3-tokenizer-js.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'llama3-tokenizer-js'; -------------------------------------------------------------------------------- /types/mistral-tokenizer-js.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'mistral-tokenizer-js'; -------------------------------------------------------------------------------- /types/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/types/openai.ts -------------------------------------------------------------------------------- /types/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/types/plugin.ts -------------------------------------------------------------------------------- /types/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/types/prompt.ts -------------------------------------------------------------------------------- /types/settings.ts: -------------------------------------------------------------------------------- 1 | export interface Settings { 2 | theme: 'light' | 'dark'; 3 | } 4 | -------------------------------------------------------------------------------- /types/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/types/storage.ts -------------------------------------------------------------------------------- /utils/app/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/utils/app/api.ts -------------------------------------------------------------------------------- /utils/app/clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/utils/app/clean.ts -------------------------------------------------------------------------------- /utils/app/codeblock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/utils/app/codeblock.ts -------------------------------------------------------------------------------- /utils/app/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/utils/app/const.ts -------------------------------------------------------------------------------- /utils/app/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/utils/app/conversation.ts -------------------------------------------------------------------------------- /utils/app/folders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/utils/app/folders.ts -------------------------------------------------------------------------------- /utils/app/importExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/utils/app/importExport.ts -------------------------------------------------------------------------------- /utils/app/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/utils/app/prompts.ts -------------------------------------------------------------------------------- /utils/app/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/utils/app/settings.ts -------------------------------------------------------------------------------- /utils/data/throttle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/utils/data/throttle.ts -------------------------------------------------------------------------------- /utils/server/google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/utils/server/google.ts -------------------------------------------------------------------------------- /utils/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/utils/server/index.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imoneoi/openchat-ui/HEAD/vitest.config.ts --------------------------------------------------------------------------------