├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ └── release.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .yarnrc.yml ├── LICENSE ├── README.md ├── README_IN.md ├── README_JA.md ├── README_ZH-CN.md ├── README_ZH-TW.md ├── _locales ├── de │ └── messages.json ├── en │ └── messages.json ├── es │ └── messages.json ├── fr │ └── messages.json ├── in │ └── messages.json ├── ja │ └── messages.json ├── pt_BR │ └── messages.json ├── pt_PT │ └── messages.json ├── ru │ └── messages.json ├── th │ └── messages.json ├── zh_CN │ └── messages.json └── zh_TW │ └── messages.json ├── app.html ├── global.d.ts ├── manifest.config.ts ├── package.json ├── postcss.config.cjs ├── public └── js │ └── v2 │ └── 35536E1E-65B4-4D96-9D97-6ADB7EFF8147 │ └── api.js ├── screenshots ├── dark.png ├── extension.png └── stream-logo.jpg ├── sidepanel.html ├── src ├── app │ ├── base.scss │ ├── bots │ │ ├── abstract-bot.ts │ │ ├── baichuan │ │ │ ├── api.ts │ │ │ └── index.ts │ │ ├── bard │ │ │ ├── api.ts │ │ │ └── index.ts │ │ ├── bing │ │ │ ├── api.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── chatgpt-api │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── chatgpt-azure │ │ │ └── index.ts │ │ ├── chatgpt-webapp │ │ │ ├── arkose │ │ │ │ ├── generator.js │ │ │ │ ├── index.ts │ │ │ │ └── server.ts │ │ │ ├── client.ts │ │ │ ├── index.ts │ │ │ ├── requesters.ts │ │ │ └── types.ts │ │ ├── chatgpt │ │ │ └── index.ts │ │ ├── claude-api │ │ │ └── index.ts │ │ ├── claude-web │ │ │ ├── api.ts │ │ │ └── index.ts │ │ ├── claude │ │ │ └── index.ts │ │ ├── gemini-api │ │ │ └── index.ts │ │ ├── gradio │ │ │ └── index.ts │ │ ├── grok │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── lmsys │ │ │ └── index.ts │ │ ├── openrouter │ │ │ └── index.ts │ │ ├── perplexity-api │ │ │ ├── api.ts │ │ │ └── index.ts │ │ ├── perplexity-web │ │ │ ├── api.ts │ │ │ └── index.ts │ │ ├── perplexity │ │ │ └── index.ts │ │ ├── pi │ │ │ └── index.ts │ │ ├── poe │ │ │ ├── api.ts │ │ │ ├── graphql │ │ │ │ ├── AddMessageBreakMutation.graphql │ │ │ │ ├── AutoSubscriptionMutation.graphql │ │ │ │ ├── ChatViewQuery.graphql │ │ │ │ ├── MessageAddedSubscription.graphql │ │ │ │ ├── SendMessageMutation.graphql │ │ │ │ ├── SubscriptionsMutation.graphql │ │ │ │ └── ViewerStateUpdatedSubscription.graphql │ │ │ └── index.ts │ │ ├── qianwen │ │ │ ├── api.ts │ │ │ └── index.ts │ │ └── xunfei │ │ │ ├── api.ts │ │ │ ├── geeguard.js │ │ │ └── index.ts │ ├── components │ │ ├── Button.tsx │ │ ├── Chat │ │ │ ├── ChatMessageCard.tsx │ │ │ ├── ChatMessageInput.tsx │ │ │ ├── ChatMessageList.tsx │ │ │ ├── ChatbotName.tsx │ │ │ ├── ConversationPanel.tsx │ │ │ ├── ErrorAction.tsx │ │ │ ├── LayoutSwitch.tsx │ │ │ ├── MessageBubble.tsx │ │ │ ├── TextInput.tsx │ │ │ └── WebAccessCheckbox.tsx │ │ ├── Dialog.tsx │ │ ├── GuideModal.tsx │ │ ├── History │ │ │ ├── ChatMessage.tsx │ │ │ ├── Content.tsx │ │ │ └── Dialog.tsx │ │ ├── Input.tsx │ │ ├── Layout.tsx │ │ ├── Markdown │ │ │ ├── index.tsx │ │ │ └── markdown.css │ │ ├── Modals │ │ │ └── ReleaseNotesModal.tsx │ │ ├── Page.tsx │ │ ├── Premium │ │ │ ├── DiscountBadge.tsx │ │ │ ├── DiscountModal.tsx │ │ │ ├── FeatureList.tsx │ │ │ ├── Modal.tsx │ │ │ ├── PriceSection.tsx │ │ │ └── Testimonials.tsx │ │ ├── PromptCombobox.tsx │ │ ├── PromptLibrary │ │ │ ├── Dialog.tsx │ │ │ └── Library.tsx │ │ ├── RadioGroup.tsx │ │ ├── Select.tsx │ │ ├── Settings │ │ │ ├── Blockquote.tsx │ │ │ ├── ChatGPTAPISettings.tsx │ │ │ ├── ChatGPTAzureSettings.tsx │ │ │ ├── ChatGPTOpenRouterSettings.tsx │ │ │ ├── ChatGPTPoeSettings.tsx │ │ │ ├── ChatGPTWebSettings.tsx │ │ │ ├── ClaudeAPISettings.tsx │ │ │ ├── ClaudeOpenRouterSettings.tsx │ │ │ ├── ClaudePoeSettings.tsx │ │ │ ├── ClaudeWebappSettings.tsx │ │ │ ├── EnabledBotsSettings.tsx │ │ │ ├── ExportDataPanel.tsx │ │ │ ├── KDB.tsx │ │ │ ├── PerplexityAPISettings.tsx │ │ │ └── ShortcutPanel.tsx │ │ ├── Share │ │ │ ├── Dialog.tsx │ │ │ ├── MarkdownView.tsx │ │ │ ├── ShareGPTView.tsx │ │ │ └── sharegpt.ts │ │ ├── Sidebar │ │ │ ├── NavLink.tsx │ │ │ ├── PremiumEntry.tsx │ │ │ └── index.tsx │ │ ├── SwitchBotDropdown.tsx │ │ ├── Tabs.tsx │ │ ├── ThemeSettingModal │ │ │ └── index.tsx │ │ ├── Toggle.tsx │ │ └── Tooltip.tsx │ ├── consts.ts │ ├── context.ts │ ├── hooks │ │ ├── use-chat.ts │ │ ├── use-enabled-bots.ts │ │ ├── use-premium.ts │ │ ├── use-purchase-info.ts │ │ └── use-user-config.ts │ ├── i18n │ │ ├── index.ts │ │ └── locales │ │ │ ├── french.json │ │ │ ├── german.json │ │ │ ├── indonesia.json │ │ │ ├── japanese.json │ │ │ ├── portuguese.json │ │ │ ├── simplified-chinese.json │ │ │ ├── spanish.json │ │ │ ├── thai.json │ │ │ └── traditional-chinese.json │ ├── main.tsx │ ├── pages │ │ ├── MultiBotChatPanel.tsx │ │ ├── PremiumPage.tsx │ │ ├── SettingPage.tsx │ │ ├── SidePanelPage.tsx │ │ └── SingleBotChatPanel.tsx │ ├── plausible.ts │ ├── router.tsx │ ├── sidepanel.css │ ├── sidepanel.tsx │ ├── state │ │ └── index.ts │ ├── theme.ts │ └── utils │ │ ├── color-scheme.ts │ │ ├── env.ts │ │ ├── export.ts │ │ ├── image-compression │ │ ├── index.ts │ │ └── worker.ts │ │ ├── image-size.ts │ │ ├── markdown.ts │ │ ├── navigator.ts │ │ └── permissions.ts ├── assets │ ├── all-in-one.svg │ ├── discount-bg.png │ ├── icon.png │ ├── icon.svg │ ├── icons │ │ ├── check.svg │ │ ├── checkbox-checked.svg │ │ ├── checkbox-unchecked.svg │ │ ├── clear.svg │ │ ├── close.svg │ │ ├── collapse.svg │ │ ├── dropdown.svg │ │ ├── feedback.svg │ │ ├── github.svg │ │ ├── history.svg │ │ ├── layout-four.svg │ │ ├── layout-image-input.svg │ │ ├── layout-six.svg │ │ ├── layout-three.svg │ │ ├── layout-two-vertical.svg │ │ ├── layout-two.svg │ │ ├── premium.svg │ │ ├── setting.svg │ │ ├── share.svg │ │ └── theme.svg │ ├── logo.svg │ ├── logos │ │ ├── alpaca.png │ │ ├── anthropic.png │ │ ├── baichuan.png │ │ ├── bard.svg │ │ ├── bing.svg │ │ ├── chatglm.svg │ │ ├── chatgpt.svg │ │ ├── dolly.png │ │ ├── falcon.jpeg │ │ ├── gemini.png │ │ ├── grok.png │ │ ├── guanaco.png │ │ ├── koala.jpg │ │ ├── llama.png │ │ ├── mistral.png │ │ ├── oasst.svg │ │ ├── pi.png │ │ ├── pplx.jpg │ │ ├── qianwen.png │ │ ├── rwkv.png │ │ ├── stablelm.png │ │ ├── vicuna.jpg │ │ ├── wizardlm.png │ │ ├── xunfei.png │ │ └── yi.svg │ ├── minimal-logo.svg │ ├── santa-logo.png │ └── user-avatar.svg ├── background │ ├── index.ts │ ├── source.ts │ └── twitter-cookie.ts ├── content-script │ └── chatgpt-inpage-proxy.ts ├── rules │ ├── baichuan.json │ ├── bing.json │ ├── ddg.json │ ├── pplx.json │ └── qianwen.json ├── services │ ├── agent │ │ ├── index.ts │ │ ├── prompts.ts │ │ └── web-search │ │ │ ├── base.ts │ │ │ ├── bing-news.ts │ │ │ ├── duckduckgo.ts │ │ │ └── index.ts │ ├── chat-history.ts │ ├── lemonsqueezy.ts │ ├── premium.ts │ ├── prompts.ts │ ├── proxy-fetch.ts │ ├── release-notes.ts │ ├── sentry.ts │ ├── server-api.ts │ ├── storage │ │ ├── language.ts │ │ ├── open-times.ts │ │ └── token-usage.ts │ ├── theme.ts │ └── user-config.ts ├── types │ ├── chat.ts │ ├── index.ts │ └── messaging.ts ├── utils │ ├── encoding.ts │ ├── errors.ts │ ├── format.ts │ ├── index.ts │ ├── sse.ts │ └── stream-async-iterable.ts └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | geeguard.js 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/README.md -------------------------------------------------------------------------------- /README_IN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/README_IN.md -------------------------------------------------------------------------------- /README_JA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/README_JA.md -------------------------------------------------------------------------------- /README_ZH-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/README_ZH-CN.md -------------------------------------------------------------------------------- /README_ZH-TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/README_ZH-TW.md -------------------------------------------------------------------------------- /_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/_locales/de/messages.json -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/_locales/en/messages.json -------------------------------------------------------------------------------- /_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/_locales/es/messages.json -------------------------------------------------------------------------------- /_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/_locales/fr/messages.json -------------------------------------------------------------------------------- /_locales/in/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/_locales/in/messages.json -------------------------------------------------------------------------------- /_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/_locales/ja/messages.json -------------------------------------------------------------------------------- /_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/_locales/pt_BR/messages.json -------------------------------------------------------------------------------- /_locales/pt_PT/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/_locales/pt_PT/messages.json -------------------------------------------------------------------------------- /_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/_locales/ru/messages.json -------------------------------------------------------------------------------- /_locales/th/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/_locales/th/messages.json -------------------------------------------------------------------------------- /_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/_locales/zh_TW/messages.json -------------------------------------------------------------------------------- /app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/app.html -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.gql' 2 | -------------------------------------------------------------------------------- /manifest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/manifest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/js/v2/35536E1E-65B4-4D96-9D97-6ADB7EFF8147/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/public/js/v2/35536E1E-65B4-4D96-9D97-6ADB7EFF8147/api.js -------------------------------------------------------------------------------- /screenshots/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/screenshots/dark.png -------------------------------------------------------------------------------- /screenshots/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/screenshots/extension.png -------------------------------------------------------------------------------- /screenshots/stream-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/screenshots/stream-logo.jpg -------------------------------------------------------------------------------- /sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/sidepanel.html -------------------------------------------------------------------------------- /src/app/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/base.scss -------------------------------------------------------------------------------- /src/app/bots/abstract-bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/abstract-bot.ts -------------------------------------------------------------------------------- /src/app/bots/baichuan/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/baichuan/api.ts -------------------------------------------------------------------------------- /src/app/bots/baichuan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/baichuan/index.ts -------------------------------------------------------------------------------- /src/app/bots/bard/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/bard/api.ts -------------------------------------------------------------------------------- /src/app/bots/bard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/bard/index.ts -------------------------------------------------------------------------------- /src/app/bots/bing/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/bing/api.ts -------------------------------------------------------------------------------- /src/app/bots/bing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/bing/index.ts -------------------------------------------------------------------------------- /src/app/bots/bing/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/bing/types.ts -------------------------------------------------------------------------------- /src/app/bots/bing/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/bing/utils.ts -------------------------------------------------------------------------------- /src/app/bots/chatgpt-api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/chatgpt-api/index.ts -------------------------------------------------------------------------------- /src/app/bots/chatgpt-api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/chatgpt-api/types.ts -------------------------------------------------------------------------------- /src/app/bots/chatgpt-azure/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/chatgpt-azure/index.ts -------------------------------------------------------------------------------- /src/app/bots/chatgpt-webapp/arkose/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/chatgpt-webapp/arkose/generator.js -------------------------------------------------------------------------------- /src/app/bots/chatgpt-webapp/arkose/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/chatgpt-webapp/arkose/index.ts -------------------------------------------------------------------------------- /src/app/bots/chatgpt-webapp/arkose/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/chatgpt-webapp/arkose/server.ts -------------------------------------------------------------------------------- /src/app/bots/chatgpt-webapp/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/chatgpt-webapp/client.ts -------------------------------------------------------------------------------- /src/app/bots/chatgpt-webapp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/chatgpt-webapp/index.ts -------------------------------------------------------------------------------- /src/app/bots/chatgpt-webapp/requesters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/chatgpt-webapp/requesters.ts -------------------------------------------------------------------------------- /src/app/bots/chatgpt-webapp/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/chatgpt-webapp/types.ts -------------------------------------------------------------------------------- /src/app/bots/chatgpt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/chatgpt/index.ts -------------------------------------------------------------------------------- /src/app/bots/claude-api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/claude-api/index.ts -------------------------------------------------------------------------------- /src/app/bots/claude-web/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/claude-web/api.ts -------------------------------------------------------------------------------- /src/app/bots/claude-web/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/claude-web/index.ts -------------------------------------------------------------------------------- /src/app/bots/claude/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/claude/index.ts -------------------------------------------------------------------------------- /src/app/bots/gemini-api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/gemini-api/index.ts -------------------------------------------------------------------------------- /src/app/bots/gradio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/gradio/index.ts -------------------------------------------------------------------------------- /src/app/bots/grok/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/grok/index.ts -------------------------------------------------------------------------------- /src/app/bots/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/index.ts -------------------------------------------------------------------------------- /src/app/bots/lmsys/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/lmsys/index.ts -------------------------------------------------------------------------------- /src/app/bots/openrouter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/openrouter/index.ts -------------------------------------------------------------------------------- /src/app/bots/perplexity-api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/perplexity-api/api.ts -------------------------------------------------------------------------------- /src/app/bots/perplexity-api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/perplexity-api/index.ts -------------------------------------------------------------------------------- /src/app/bots/perplexity-web/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/perplexity-web/api.ts -------------------------------------------------------------------------------- /src/app/bots/perplexity-web/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/perplexity-web/index.ts -------------------------------------------------------------------------------- /src/app/bots/perplexity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/perplexity/index.ts -------------------------------------------------------------------------------- /src/app/bots/pi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/pi/index.ts -------------------------------------------------------------------------------- /src/app/bots/poe/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/poe/api.ts -------------------------------------------------------------------------------- /src/app/bots/poe/graphql/AddMessageBreakMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/poe/graphql/AddMessageBreakMutation.graphql -------------------------------------------------------------------------------- /src/app/bots/poe/graphql/AutoSubscriptionMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/poe/graphql/AutoSubscriptionMutation.graphql -------------------------------------------------------------------------------- /src/app/bots/poe/graphql/ChatViewQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/poe/graphql/ChatViewQuery.graphql -------------------------------------------------------------------------------- /src/app/bots/poe/graphql/MessageAddedSubscription.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/poe/graphql/MessageAddedSubscription.graphql -------------------------------------------------------------------------------- /src/app/bots/poe/graphql/SendMessageMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/poe/graphql/SendMessageMutation.graphql -------------------------------------------------------------------------------- /src/app/bots/poe/graphql/SubscriptionsMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/poe/graphql/SubscriptionsMutation.graphql -------------------------------------------------------------------------------- /src/app/bots/poe/graphql/ViewerStateUpdatedSubscription.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/poe/graphql/ViewerStateUpdatedSubscription.graphql -------------------------------------------------------------------------------- /src/app/bots/poe/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/poe/index.ts -------------------------------------------------------------------------------- /src/app/bots/qianwen/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/qianwen/api.ts -------------------------------------------------------------------------------- /src/app/bots/qianwen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/qianwen/index.ts -------------------------------------------------------------------------------- /src/app/bots/xunfei/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/xunfei/api.ts -------------------------------------------------------------------------------- /src/app/bots/xunfei/geeguard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/xunfei/geeguard.js -------------------------------------------------------------------------------- /src/app/bots/xunfei/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/bots/xunfei/index.ts -------------------------------------------------------------------------------- /src/app/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Button.tsx -------------------------------------------------------------------------------- /src/app/components/Chat/ChatMessageCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Chat/ChatMessageCard.tsx -------------------------------------------------------------------------------- /src/app/components/Chat/ChatMessageInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Chat/ChatMessageInput.tsx -------------------------------------------------------------------------------- /src/app/components/Chat/ChatMessageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Chat/ChatMessageList.tsx -------------------------------------------------------------------------------- /src/app/components/Chat/ChatbotName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Chat/ChatbotName.tsx -------------------------------------------------------------------------------- /src/app/components/Chat/ConversationPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Chat/ConversationPanel.tsx -------------------------------------------------------------------------------- /src/app/components/Chat/ErrorAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Chat/ErrorAction.tsx -------------------------------------------------------------------------------- /src/app/components/Chat/LayoutSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Chat/LayoutSwitch.tsx -------------------------------------------------------------------------------- /src/app/components/Chat/MessageBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Chat/MessageBubble.tsx -------------------------------------------------------------------------------- /src/app/components/Chat/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Chat/TextInput.tsx -------------------------------------------------------------------------------- /src/app/components/Chat/WebAccessCheckbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Chat/WebAccessCheckbox.tsx -------------------------------------------------------------------------------- /src/app/components/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Dialog.tsx -------------------------------------------------------------------------------- /src/app/components/GuideModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/GuideModal.tsx -------------------------------------------------------------------------------- /src/app/components/History/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/History/ChatMessage.tsx -------------------------------------------------------------------------------- /src/app/components/History/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/History/Content.tsx -------------------------------------------------------------------------------- /src/app/components/History/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/History/Dialog.tsx -------------------------------------------------------------------------------- /src/app/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Input.tsx -------------------------------------------------------------------------------- /src/app/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Layout.tsx -------------------------------------------------------------------------------- /src/app/components/Markdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Markdown/index.tsx -------------------------------------------------------------------------------- /src/app/components/Markdown/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Markdown/markdown.css -------------------------------------------------------------------------------- /src/app/components/Modals/ReleaseNotesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Modals/ReleaseNotesModal.tsx -------------------------------------------------------------------------------- /src/app/components/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Page.tsx -------------------------------------------------------------------------------- /src/app/components/Premium/DiscountBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Premium/DiscountBadge.tsx -------------------------------------------------------------------------------- /src/app/components/Premium/DiscountModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Premium/DiscountModal.tsx -------------------------------------------------------------------------------- /src/app/components/Premium/FeatureList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Premium/FeatureList.tsx -------------------------------------------------------------------------------- /src/app/components/Premium/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Premium/Modal.tsx -------------------------------------------------------------------------------- /src/app/components/Premium/PriceSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Premium/PriceSection.tsx -------------------------------------------------------------------------------- /src/app/components/Premium/Testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Premium/Testimonials.tsx -------------------------------------------------------------------------------- /src/app/components/PromptCombobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/PromptCombobox.tsx -------------------------------------------------------------------------------- /src/app/components/PromptLibrary/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/PromptLibrary/Dialog.tsx -------------------------------------------------------------------------------- /src/app/components/PromptLibrary/Library.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/PromptLibrary/Library.tsx -------------------------------------------------------------------------------- /src/app/components/RadioGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/RadioGroup.tsx -------------------------------------------------------------------------------- /src/app/components/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Select.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/Blockquote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/Blockquote.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/ChatGPTAPISettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/ChatGPTAPISettings.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/ChatGPTAzureSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/ChatGPTAzureSettings.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/ChatGPTOpenRouterSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/ChatGPTOpenRouterSettings.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/ChatGPTPoeSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/ChatGPTPoeSettings.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/ChatGPTWebSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/ChatGPTWebSettings.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/ClaudeAPISettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/ClaudeAPISettings.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/ClaudeOpenRouterSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/ClaudeOpenRouterSettings.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/ClaudePoeSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/ClaudePoeSettings.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/ClaudeWebappSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/ClaudeWebappSettings.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/EnabledBotsSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/EnabledBotsSettings.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/ExportDataPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/ExportDataPanel.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/KDB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/KDB.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/PerplexityAPISettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/PerplexityAPISettings.tsx -------------------------------------------------------------------------------- /src/app/components/Settings/ShortcutPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Settings/ShortcutPanel.tsx -------------------------------------------------------------------------------- /src/app/components/Share/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Share/Dialog.tsx -------------------------------------------------------------------------------- /src/app/components/Share/MarkdownView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Share/MarkdownView.tsx -------------------------------------------------------------------------------- /src/app/components/Share/ShareGPTView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Share/ShareGPTView.tsx -------------------------------------------------------------------------------- /src/app/components/Share/sharegpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Share/sharegpt.ts -------------------------------------------------------------------------------- /src/app/components/Sidebar/NavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Sidebar/NavLink.tsx -------------------------------------------------------------------------------- /src/app/components/Sidebar/PremiumEntry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Sidebar/PremiumEntry.tsx -------------------------------------------------------------------------------- /src/app/components/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Sidebar/index.tsx -------------------------------------------------------------------------------- /src/app/components/SwitchBotDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/SwitchBotDropdown.tsx -------------------------------------------------------------------------------- /src/app/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Tabs.tsx -------------------------------------------------------------------------------- /src/app/components/ThemeSettingModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/ThemeSettingModal/index.tsx -------------------------------------------------------------------------------- /src/app/components/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Toggle.tsx -------------------------------------------------------------------------------- /src/app/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/components/Tooltip.tsx -------------------------------------------------------------------------------- /src/app/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/consts.ts -------------------------------------------------------------------------------- /src/app/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/context.ts -------------------------------------------------------------------------------- /src/app/hooks/use-chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/hooks/use-chat.ts -------------------------------------------------------------------------------- /src/app/hooks/use-enabled-bots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/hooks/use-enabled-bots.ts -------------------------------------------------------------------------------- /src/app/hooks/use-premium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/hooks/use-premium.ts -------------------------------------------------------------------------------- /src/app/hooks/use-purchase-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/hooks/use-purchase-info.ts -------------------------------------------------------------------------------- /src/app/hooks/use-user-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/hooks/use-user-config.ts -------------------------------------------------------------------------------- /src/app/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/i18n/index.ts -------------------------------------------------------------------------------- /src/app/i18n/locales/french.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/i18n/locales/french.json -------------------------------------------------------------------------------- /src/app/i18n/locales/german.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/i18n/locales/german.json -------------------------------------------------------------------------------- /src/app/i18n/locales/indonesia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/i18n/locales/indonesia.json -------------------------------------------------------------------------------- /src/app/i18n/locales/japanese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/i18n/locales/japanese.json -------------------------------------------------------------------------------- /src/app/i18n/locales/portuguese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/i18n/locales/portuguese.json -------------------------------------------------------------------------------- /src/app/i18n/locales/simplified-chinese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/i18n/locales/simplified-chinese.json -------------------------------------------------------------------------------- /src/app/i18n/locales/spanish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/i18n/locales/spanish.json -------------------------------------------------------------------------------- /src/app/i18n/locales/thai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/i18n/locales/thai.json -------------------------------------------------------------------------------- /src/app/i18n/locales/traditional-chinese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/i18n/locales/traditional-chinese.json -------------------------------------------------------------------------------- /src/app/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/main.tsx -------------------------------------------------------------------------------- /src/app/pages/MultiBotChatPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/pages/MultiBotChatPanel.tsx -------------------------------------------------------------------------------- /src/app/pages/PremiumPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/pages/PremiumPage.tsx -------------------------------------------------------------------------------- /src/app/pages/SettingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/pages/SettingPage.tsx -------------------------------------------------------------------------------- /src/app/pages/SidePanelPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/pages/SidePanelPage.tsx -------------------------------------------------------------------------------- /src/app/pages/SingleBotChatPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/pages/SingleBotChatPanel.tsx -------------------------------------------------------------------------------- /src/app/plausible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/plausible.ts -------------------------------------------------------------------------------- /src/app/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/router.tsx -------------------------------------------------------------------------------- /src/app/sidepanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/sidepanel.css -------------------------------------------------------------------------------- /src/app/sidepanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/sidepanel.tsx -------------------------------------------------------------------------------- /src/app/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/state/index.ts -------------------------------------------------------------------------------- /src/app/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/theme.ts -------------------------------------------------------------------------------- /src/app/utils/color-scheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/utils/color-scheme.ts -------------------------------------------------------------------------------- /src/app/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/utils/env.ts -------------------------------------------------------------------------------- /src/app/utils/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/utils/export.ts -------------------------------------------------------------------------------- /src/app/utils/image-compression/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/utils/image-compression/index.ts -------------------------------------------------------------------------------- /src/app/utils/image-compression/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/utils/image-compression/worker.ts -------------------------------------------------------------------------------- /src/app/utils/image-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/utils/image-size.ts -------------------------------------------------------------------------------- /src/app/utils/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/utils/markdown.ts -------------------------------------------------------------------------------- /src/app/utils/navigator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/utils/navigator.ts -------------------------------------------------------------------------------- /src/app/utils/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/app/utils/permissions.ts -------------------------------------------------------------------------------- /src/assets/all-in-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/all-in-one.svg -------------------------------------------------------------------------------- /src/assets/discount-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/discount-bg.png -------------------------------------------------------------------------------- /src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icon.png -------------------------------------------------------------------------------- /src/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icon.svg -------------------------------------------------------------------------------- /src/assets/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/check.svg -------------------------------------------------------------------------------- /src/assets/icons/checkbox-checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/checkbox-checked.svg -------------------------------------------------------------------------------- /src/assets/icons/checkbox-unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/checkbox-unchecked.svg -------------------------------------------------------------------------------- /src/assets/icons/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/clear.svg -------------------------------------------------------------------------------- /src/assets/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/close.svg -------------------------------------------------------------------------------- /src/assets/icons/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/collapse.svg -------------------------------------------------------------------------------- /src/assets/icons/dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/dropdown.svg -------------------------------------------------------------------------------- /src/assets/icons/feedback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/feedback.svg -------------------------------------------------------------------------------- /src/assets/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/github.svg -------------------------------------------------------------------------------- /src/assets/icons/history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/history.svg -------------------------------------------------------------------------------- /src/assets/icons/layout-four.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/layout-four.svg -------------------------------------------------------------------------------- /src/assets/icons/layout-image-input.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/layout-image-input.svg -------------------------------------------------------------------------------- /src/assets/icons/layout-six.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/layout-six.svg -------------------------------------------------------------------------------- /src/assets/icons/layout-three.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/layout-three.svg -------------------------------------------------------------------------------- /src/assets/icons/layout-two-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/layout-two-vertical.svg -------------------------------------------------------------------------------- /src/assets/icons/layout-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/layout-two.svg -------------------------------------------------------------------------------- /src/assets/icons/premium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/premium.svg -------------------------------------------------------------------------------- /src/assets/icons/setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/setting.svg -------------------------------------------------------------------------------- /src/assets/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/share.svg -------------------------------------------------------------------------------- /src/assets/icons/theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/icons/theme.svg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/logos/alpaca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/alpaca.png -------------------------------------------------------------------------------- /src/assets/logos/anthropic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/anthropic.png -------------------------------------------------------------------------------- /src/assets/logos/baichuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/baichuan.png -------------------------------------------------------------------------------- /src/assets/logos/bard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/bard.svg -------------------------------------------------------------------------------- /src/assets/logos/bing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/bing.svg -------------------------------------------------------------------------------- /src/assets/logos/chatglm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/chatglm.svg -------------------------------------------------------------------------------- /src/assets/logos/chatgpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/chatgpt.svg -------------------------------------------------------------------------------- /src/assets/logos/dolly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/dolly.png -------------------------------------------------------------------------------- /src/assets/logos/falcon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/falcon.jpeg -------------------------------------------------------------------------------- /src/assets/logos/gemini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/gemini.png -------------------------------------------------------------------------------- /src/assets/logos/grok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/grok.png -------------------------------------------------------------------------------- /src/assets/logos/guanaco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/guanaco.png -------------------------------------------------------------------------------- /src/assets/logos/koala.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/koala.jpg -------------------------------------------------------------------------------- /src/assets/logos/llama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/llama.png -------------------------------------------------------------------------------- /src/assets/logos/mistral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/mistral.png -------------------------------------------------------------------------------- /src/assets/logos/oasst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/oasst.svg -------------------------------------------------------------------------------- /src/assets/logos/pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/pi.png -------------------------------------------------------------------------------- /src/assets/logos/pplx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/pplx.jpg -------------------------------------------------------------------------------- /src/assets/logos/qianwen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/qianwen.png -------------------------------------------------------------------------------- /src/assets/logos/rwkv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/rwkv.png -------------------------------------------------------------------------------- /src/assets/logos/stablelm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/stablelm.png -------------------------------------------------------------------------------- /src/assets/logos/vicuna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/vicuna.jpg -------------------------------------------------------------------------------- /src/assets/logos/wizardlm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/wizardlm.png -------------------------------------------------------------------------------- /src/assets/logos/xunfei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/xunfei.png -------------------------------------------------------------------------------- /src/assets/logos/yi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/logos/yi.svg -------------------------------------------------------------------------------- /src/assets/minimal-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/minimal-logo.svg -------------------------------------------------------------------------------- /src/assets/santa-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/santa-logo.png -------------------------------------------------------------------------------- /src/assets/user-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/assets/user-avatar.svg -------------------------------------------------------------------------------- /src/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/background/index.ts -------------------------------------------------------------------------------- /src/background/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/background/source.ts -------------------------------------------------------------------------------- /src/background/twitter-cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/background/twitter-cookie.ts -------------------------------------------------------------------------------- /src/content-script/chatgpt-inpage-proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/content-script/chatgpt-inpage-proxy.ts -------------------------------------------------------------------------------- /src/rules/baichuan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/rules/baichuan.json -------------------------------------------------------------------------------- /src/rules/bing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/rules/bing.json -------------------------------------------------------------------------------- /src/rules/ddg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/rules/ddg.json -------------------------------------------------------------------------------- /src/rules/pplx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/rules/pplx.json -------------------------------------------------------------------------------- /src/rules/qianwen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/rules/qianwen.json -------------------------------------------------------------------------------- /src/services/agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/agent/index.ts -------------------------------------------------------------------------------- /src/services/agent/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/agent/prompts.ts -------------------------------------------------------------------------------- /src/services/agent/web-search/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/agent/web-search/base.ts -------------------------------------------------------------------------------- /src/services/agent/web-search/bing-news.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/agent/web-search/bing-news.ts -------------------------------------------------------------------------------- /src/services/agent/web-search/duckduckgo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/agent/web-search/duckduckgo.ts -------------------------------------------------------------------------------- /src/services/agent/web-search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/agent/web-search/index.ts -------------------------------------------------------------------------------- /src/services/chat-history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/chat-history.ts -------------------------------------------------------------------------------- /src/services/lemonsqueezy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/lemonsqueezy.ts -------------------------------------------------------------------------------- /src/services/premium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/premium.ts -------------------------------------------------------------------------------- /src/services/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/prompts.ts -------------------------------------------------------------------------------- /src/services/proxy-fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/proxy-fetch.ts -------------------------------------------------------------------------------- /src/services/release-notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/release-notes.ts -------------------------------------------------------------------------------- /src/services/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/sentry.ts -------------------------------------------------------------------------------- /src/services/server-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/server-api.ts -------------------------------------------------------------------------------- /src/services/storage/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/storage/language.ts -------------------------------------------------------------------------------- /src/services/storage/open-times.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/storage/open-times.ts -------------------------------------------------------------------------------- /src/services/storage/token-usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/storage/token-usage.ts -------------------------------------------------------------------------------- /src/services/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/theme.ts -------------------------------------------------------------------------------- /src/services/user-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/services/user-config.ts -------------------------------------------------------------------------------- /src/types/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/types/chat.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- 1 | export * from './chat' 2 | -------------------------------------------------------------------------------- /src/types/messaging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/types/messaging.ts -------------------------------------------------------------------------------- /src/utils/encoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/utils/encoding.ts -------------------------------------------------------------------------------- /src/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/utils/errors.ts -------------------------------------------------------------------------------- /src/utils/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/utils/format.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/sse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/utils/sse.ts -------------------------------------------------------------------------------- /src/utils/stream-async-iterable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/src/utils/stream-async-iterable.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/chathub-all-in-one/HEAD/yarn.lock --------------------------------------------------------------------------------