@lobehub/chat 1.2.0 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.bunfig.toml +3 -0
- package/.dockerignore +11 -0
- package/.env.example +183 -0
- package/.eslintignore +1 -2
- package/.eslintrc.js +32 -1
- package/.github/FUNDING.yml +13 -0
- package/.github/ISSUE_TEMPLATE/1_bug_report.yml +46 -22
- package/.github/ISSUE_TEMPLATE/1_bug_report_cn.yml +69 -0
- package/.github/ISSUE_TEMPLATE/2_feature_request.yml +6 -6
- package/.github/ISSUE_TEMPLATE/2_feature_request_cn.yml +21 -0
- package/.github/ISSUE_TEMPLATE/config.yml +4 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +2 -0
- package/.github/workflows/docker.yml +45 -0
- package/.github/workflows/issue-auto-comments.yml +73 -0
- package/.github/workflows/issue-close-require.yml +26 -6
- package/.github/workflows/issues-translate.yml +14 -0
- package/.github/workflows/lighthouse.yml +72 -0
- package/.github/workflows/release.yml +46 -15
- package/.github/workflows/sync.yml +54 -0
- package/.github/workflows/test.yml +44 -16
- package/.github/workflows/wiki-sync.yml +19 -0
- package/.husky/pre-commit +0 -3
- package/.i18nrc.js +41 -7
- package/.nvmrc +1 -0
- package/.seorc.cjs +9 -0
- package/CHANGELOG.md +17495 -56
- package/CODE_OF_CONDUCT.md +128 -0
- package/CONTRIBUTING.md +88 -0
- package/Dockerfile +138 -0
- package/LICENSE +38 -0
- package/README.md +739 -80
- package/README.zh-CN.md +828 -0
- package/__mocks__/zustand/traditional.ts +25 -0
- package/codecov.yml +11 -0
- package/contributing/Basic/Add-New-Authentication-Providers.md +193 -0
- package/contributing/Basic/Add-New-Authentication-Providers.zh-CN.md +192 -0
- package/contributing/Basic/Architecture.md +47 -0
- package/contributing/Basic/Architecture.zh-CN.md +47 -0
- package/contributing/Basic/Chat-API.md +136 -0
- package/contributing/Basic/Chat-API.zh-CN.md +174 -0
- package/contributing/Basic/Contributing-Guidelines.md +83 -0
- package/contributing/Basic/Contributing-Guidelines.zh-CN.md +85 -0
- package/contributing/Basic/Feature-Development-Frontend.md +126 -0
- package/contributing/Basic/Feature-Development-Frontend.zh-CN.md +126 -0
- package/contributing/Basic/Feature-Development.md +713 -0
- package/contributing/Basic/Feature-Development.zh-CN.md +707 -0
- package/contributing/Basic/Folder-Structure.md +40 -0
- package/contributing/Basic/Folder-Structure.zh-CN.md +40 -0
- package/contributing/Basic/Intro.md +111 -0
- package/contributing/Basic/Intro.zh-CN.md +111 -0
- package/contributing/Basic/Resources.md +19 -0
- package/contributing/Basic/Resources.zh-CN.md +19 -0
- package/contributing/Basic/Setup-Development.md +69 -0
- package/contributing/Basic/Setup-Development.zh-CN.md +69 -0
- package/contributing/Basic/Test.md +87 -0
- package/contributing/Basic/Test.zh-CN.md +87 -0
- package/contributing/Home.md +87 -0
- package/contributing/Internationalization/Add-New-Locale.md +62 -0
- package/contributing/Internationalization/Add-New-Locale.zh-CN.md +62 -0
- package/contributing/Internationalization/Internationalization-Implementation.md +125 -0
- package/contributing/Internationalization/Internationalization-Implementation.zh-CN.md +125 -0
- package/contributing/Others/Lighthouse.md +65 -0
- package/contributing/Others/Lighthouse.zh-CN.md +65 -0
- package/contributing/State-Management/State-Management-Intro.md +224 -0
- package/contributing/State-Management/State-Management-Intro.zh-CN.md +216 -0
- package/contributing/State-Management/State-Management-Selectors.md +68 -0
- package/contributing/State-Management/State-Management-Selectors.zh-CN.md +49 -0
- package/contributing/Upstream-Sync.md +58 -0
- package/contributing/Upstream-Sync.zh-CN.md +58 -0
- package/contributing/_Footer.md +1 -0
- package/contributing/_Sidebar.md +48 -0
- package/docs/self-hosting/advanced/analytics.mdx +31 -0
- package/docs/self-hosting/advanced/analytics.zh-CN.mdx +28 -0
- package/docs/self-hosting/advanced/authentication.mdx +67 -0
- package/docs/self-hosting/advanced/authentication.zh-CN.mdx +65 -0
- package/docs/self-hosting/advanced/feature-flags.mdx +47 -0
- package/docs/self-hosting/advanced/feature-flags.zh-CN.mdx +43 -0
- package/docs/self-hosting/advanced/model-list.mdx +48 -0
- package/docs/self-hosting/advanced/model-list.zh-CN.mdx +47 -0
- package/docs/self-hosting/advanced/server-database.mdx +425 -0
- package/docs/self-hosting/advanced/server-database.zh-CN.mdx +413 -0
- package/docs/self-hosting/advanced/settings-url-share.mdx +147 -0
- package/docs/self-hosting/advanced/settings-url-share.zh-CN.mdx +145 -0
- package/docs/self-hosting/advanced/sso-providers/auth0.mdx +133 -0
- package/docs/self-hosting/advanced/sso-providers/auth0.zh-CN.mdx +125 -0
- package/docs/self-hosting/advanced/sso-providers/authentik.mdx +74 -0
- package/docs/self-hosting/advanced/sso-providers/authentik.zh-CN.mdx +68 -0
- package/docs/self-hosting/advanced/sso-providers/github.mdx +102 -0
- package/docs/self-hosting/advanced/sso-providers/github.zh-CN.mdx +94 -0
- package/docs/self-hosting/advanced/sso-providers/microsoft-entra-id.mdx +105 -0
- package/docs/self-hosting/advanced/sso-providers/microsoft-entra-id.zh-CN.mdx +99 -0
- package/docs/self-hosting/advanced/sso-providers/zitadel.mdx +119 -0
- package/docs/self-hosting/advanced/sso-providers/zitadel.zh-CN.mdx +112 -0
- package/docs/self-hosting/advanced/upstream-sync.mdx +161 -0
- package/docs/self-hosting/advanced/upstream-sync.zh-CN.mdx +153 -0
- package/docs/self-hosting/environment-variables/analytics.mdx +84 -0
- package/docs/self-hosting/environment-variables/analytics.zh-CN.mdx +82 -0
- package/docs/self-hosting/environment-variables/auth.mdx +171 -0
- package/docs/self-hosting/environment-variables/auth.zh-CN.mdx +168 -0
- package/docs/self-hosting/environment-variables/basic.mdx +118 -0
- package/docs/self-hosting/environment-variables/basic.zh-CN.mdx +114 -0
- package/docs/self-hosting/environment-variables/model-provider.mdx +299 -0
- package/docs/self-hosting/environment-variables/model-provider.zh-CN.mdx +297 -0
- package/docs/self-hosting/environment-variables.mdx +22 -0
- package/docs/self-hosting/environment-variables.zh-CN.mdx +20 -0
- package/docs/self-hosting/examples/azure-openai.mdx +46 -0
- package/docs/self-hosting/examples/azure-openai.zh-CN.mdx +48 -0
- package/docs/self-hosting/examples/ollama.mdx +104 -0
- package/docs/self-hosting/examples/ollama.zh-CN.mdx +102 -0
- package/docs/self-hosting/faq/no-v1-suffix.mdx +30 -0
- package/docs/self-hosting/faq/no-v1-suffix.zh-CN.mdx +27 -0
- package/docs/self-hosting/faq/proxy-with-unable-to-verify-leaf-signature.mdx +84 -0
- package/docs/self-hosting/faq/proxy-with-unable-to-verify-leaf-signature.zh-CN.mdx +81 -0
- package/docs/self-hosting/platform/docker-compose.mdx +143 -0
- package/docs/self-hosting/platform/docker-compose.zh-CN.mdx +133 -0
- package/docs/self-hosting/platform/docker.mdx +169 -0
- package/docs/self-hosting/platform/docker.zh-CN.mdx +167 -0
- package/docs/self-hosting/platform/netlify.mdx +154 -0
- package/docs/self-hosting/platform/netlify.zh-CN.mdx +148 -0
- package/docs/self-hosting/platform/railway.mdx +35 -0
- package/docs/self-hosting/platform/railway.zh-CN.mdx +34 -0
- package/docs/self-hosting/platform/repocloud.mdx +38 -0
- package/docs/self-hosting/platform/repocloud.zh-CN.mdx +36 -0
- package/docs/self-hosting/platform/sealos.mdx +37 -0
- package/docs/self-hosting/platform/sealos.zh-CN.mdx +36 -0
- package/docs/self-hosting/platform/vercel.mdx +46 -0
- package/docs/self-hosting/platform/vercel.zh-CN.mdx +48 -0
- package/docs/self-hosting/platform/zeabur.mdx +84 -0
- package/docs/self-hosting/platform/zeabur.zh-CN.mdx +83 -0
- package/docs/self-hosting/start.mdx +31 -0
- package/docs/self-hosting/start.zh-CN.mdx +32 -0
- package/docs/usage/agents/concepts.mdx +41 -0
- package/docs/usage/agents/concepts.zh-CN.mdx +38 -0
- package/docs/usage/agents/custom-agent.mdx +58 -0
- package/docs/usage/agents/custom-agent.zh-CN.mdx +53 -0
- package/docs/usage/agents/model.mdx +80 -0
- package/docs/usage/agents/model.zh-CN.mdx +75 -0
- package/docs/usage/agents/prompt.mdx +110 -0
- package/docs/usage/agents/prompt.zh-CN.mdx +106 -0
- package/docs/usage/agents/topics.mdx +27 -0
- package/docs/usage/agents/topics.zh-CN.mdx +25 -0
- package/docs/usage/features/agent-market.mdx +40 -0
- package/docs/usage/features/agent-market.zh-CN.mdx +36 -0
- package/docs/usage/features/auth.mdx +65 -0
- package/docs/usage/features/auth.zh-CN.mdx +60 -0
- package/docs/usage/features/database.mdx +60 -0
- package/docs/usage/features/database.zh-CN.mdx +54 -0
- package/docs/usage/features/local-llm.mdx +56 -0
- package/docs/usage/features/local-llm.zh-CN.mdx +48 -0
- package/docs/usage/features/mobile.mdx +24 -0
- package/docs/usage/features/mobile.zh-CN.mdx +23 -0
- package/docs/usage/features/more.mdx +33 -0
- package/docs/usage/features/more.zh-CN.mdx +28 -0
- package/docs/usage/features/multi-ai-providers.mdx +66 -0
- package/docs/usage/features/multi-ai-providers.zh-CN.mdx +66 -0
- package/docs/usage/features/plugin-system.mdx +89 -0
- package/docs/usage/features/plugin-system.zh-CN.mdx +78 -0
- package/docs/usage/features/pwa.mdx +74 -0
- package/docs/usage/features/pwa.zh-CN.mdx +74 -0
- package/docs/usage/features/text-to-image.mdx +26 -0
- package/docs/usage/features/text-to-image.zh-CN.mdx +26 -0
- package/docs/usage/features/theme.mdx +34 -0
- package/docs/usage/features/theme.zh-CN.mdx +30 -0
- package/docs/usage/features/tts.mdx +52 -0
- package/docs/usage/features/tts.zh-CN.mdx +46 -0
- package/docs/usage/features/vision.mdx +28 -0
- package/docs/usage/features/vision.zh-CN.mdx +25 -0
- package/docs/usage/plugins/basic-usage.mdx +69 -0
- package/docs/usage/plugins/basic-usage.zh-CN.mdx +67 -0
- package/docs/usage/plugins/custom-plugin.mdx +37 -0
- package/docs/usage/plugins/custom-plugin.zh-CN.mdx +35 -0
- package/docs/usage/plugins/development.mdx +329 -0
- package/docs/usage/plugins/development.zh-CN.mdx +323 -0
- package/docs/usage/plugins/store.mdx +30 -0
- package/docs/usage/plugins/store.zh-CN.mdx +27 -0
- package/docs/usage/providers/01ai.mdx +85 -0
- package/docs/usage/providers/01ai.zh-CN.mdx +85 -0
- package/docs/usage/providers/anthropic.mdx +78 -0
- package/docs/usage/providers/anthropic.zh-CN.mdx +75 -0
- package/docs/usage/providers/azure.mdx +88 -0
- package/docs/usage/providers/azure.zh-CN.mdx +79 -0
- package/docs/usage/providers/bedrock.mdx +139 -0
- package/docs/usage/providers/bedrock.zh-CN.mdx +134 -0
- package/docs/usage/providers/deepseek.mdx +90 -0
- package/docs/usage/providers/deepseek.zh-CN.mdx +85 -0
- package/docs/usage/providers/gemini.mdx +82 -0
- package/docs/usage/providers/gemini.zh-CN.mdx +78 -0
- package/docs/usage/providers/groq.mdx +72 -0
- package/docs/usage/providers/groq.zh-CN.mdx +67 -0
- package/docs/usage/providers/minimax.mdx +87 -0
- package/docs/usage/providers/minimax.zh-CN.mdx +84 -0
- package/docs/usage/providers/mistral.mdx +69 -0
- package/docs/usage/providers/mistral.zh-CN.mdx +64 -0
- package/docs/usage/providers/moonshot.mdx +68 -0
- package/docs/usage/providers/moonshot.zh-CN.mdx +63 -0
- package/docs/usage/providers/ollama/gemma.mdx +68 -0
- package/docs/usage/providers/ollama/gemma.zh-CN.mdx +67 -0
- package/docs/usage/providers/ollama/qwen.mdx +69 -0
- package/docs/usage/providers/ollama/qwen.zh-CN.mdx +66 -0
- package/docs/usage/providers/ollama.mdx +205 -0
- package/docs/usage/providers/ollama.zh-CN.mdx +203 -0
- package/docs/usage/providers/openai.mdx +94 -0
- package/docs/usage/providers/openai.zh-CN.mdx +87 -0
- package/docs/usage/providers/openrouter.mdx +110 -0
- package/docs/usage/providers/openrouter.zh-CN.mdx +104 -0
- package/docs/usage/providers/perplexity.mdx +62 -0
- package/docs/usage/providers/perplexity.zh-CN.mdx +59 -0
- package/docs/usage/providers/qwen.mdx +92 -0
- package/docs/usage/providers/qwen.zh-CN.mdx +87 -0
- package/docs/usage/providers/stepfun.mdx +66 -0
- package/docs/usage/providers/stepfun.zh-CN.mdx +62 -0
- package/docs/usage/providers/togetherai.mdx +72 -0
- package/docs/usage/providers/togetherai.zh-CN.mdx +70 -0
- package/docs/usage/providers/zhipu.mdx +67 -0
- package/docs/usage/providers/zhipu.zh-CN.mdx +61 -0
- package/docs/usage/providers.mdx +36 -0
- package/docs/usage/providers.zh-CN.mdx +34 -0
- package/docs/usage/start.mdx +48 -0
- package/docs/usage/start.zh-CN.mdx +40 -0
- package/docs/usage/tools-calling/anthropic.mdx +1 -0
- package/docs/usage/tools-calling/anthropic.zh-CN.mdx +956 -0
- package/docs/usage/tools-calling/google.mdx +1 -0
- package/docs/usage/tools-calling/google.zh-CN.mdx +13 -0
- package/docs/usage/tools-calling/groq.mdx +1 -0
- package/docs/usage/tools-calling/groq.zh-CN.mdx +15 -0
- package/docs/usage/tools-calling/openai.mdx +1 -0
- package/docs/usage/tools-calling/openai.zh-CN.mdx +833 -0
- package/docs/usage/tools-calling.mdx +3 -0
- package/docs/usage/tools-calling.zh-CN.mdx +255 -0
- package/drizzle.config.ts +29 -0
- package/locales/ar/auth.json +8 -0
- package/locales/ar/chat.json +137 -0
- package/locales/ar/clerk.json +769 -0
- package/locales/ar/common.json +224 -0
- package/locales/ar/components.json +16 -0
- package/locales/ar/error.json +117 -0
- package/locales/ar/market.json +32 -0
- package/locales/ar/metadata.json +18 -0
- package/locales/ar/migration.json +45 -0
- package/locales/ar/modelProvider.json +108 -0
- package/locales/ar/plugin.json +166 -0
- package/locales/ar/portal.json +4 -0
- package/locales/ar/setting.json +411 -0
- package/locales/ar/tool.json +10 -0
- package/locales/ar/welcome.json +49 -0
- package/locales/bg-BG/auth.json +8 -0
- package/locales/bg-BG/chat.json +137 -0
- package/locales/bg-BG/clerk.json +769 -0
- package/locales/bg-BG/common.json +224 -0
- package/locales/bg-BG/components.json +16 -0
- package/locales/bg-BG/error.json +117 -0
- package/locales/bg-BG/market.json +32 -0
- package/locales/bg-BG/metadata.json +18 -0
- package/locales/bg-BG/migration.json +45 -0
- package/locales/bg-BG/modelProvider.json +108 -0
- package/locales/bg-BG/plugin.json +166 -0
- package/locales/bg-BG/portal.json +4 -0
- package/locales/bg-BG/setting.json +411 -0
- package/locales/bg-BG/tool.json +10 -0
- package/locales/bg-BG/welcome.json +49 -0
- package/locales/de-DE/auth.json +8 -0
- package/locales/de-DE/chat.json +137 -0
- package/locales/de-DE/clerk.json +769 -0
- package/locales/de-DE/common.json +224 -0
- package/locales/de-DE/components.json +16 -0
- package/locales/de-DE/error.json +117 -0
- package/locales/de-DE/market.json +32 -0
- package/locales/de-DE/metadata.json +18 -0
- package/locales/de-DE/migration.json +45 -0
- package/locales/de-DE/modelProvider.json +108 -0
- package/locales/de-DE/plugin.json +166 -0
- package/locales/de-DE/portal.json +4 -0
- package/locales/de-DE/setting.json +411 -0
- package/locales/de-DE/tool.json +10 -0
- package/locales/de-DE/welcome.json +49 -0
- package/locales/en-US/auth.json +8 -0
- package/locales/en-US/chat.json +137 -0
- package/locales/en-US/clerk.json +769 -0
- package/locales/en-US/common.json +224 -0
- package/locales/en-US/components.json +16 -0
- package/locales/en-US/error.json +117 -0
- package/locales/en-US/market.json +32 -0
- package/locales/en-US/metadata.json +18 -0
- package/locales/en-US/migration.json +45 -0
- package/locales/en-US/modelProvider.json +108 -0
- package/locales/en-US/plugin.json +166 -0
- package/locales/en-US/portal.json +4 -0
- package/locales/en-US/setting.json +411 -0
- package/locales/en-US/tool.json +10 -0
- package/locales/en-US/welcome.json +49 -0
- package/locales/es-ES/auth.json +8 -0
- package/locales/es-ES/chat.json +137 -0
- package/locales/es-ES/clerk.json +769 -0
- package/locales/es-ES/common.json +224 -0
- package/locales/es-ES/components.json +16 -0
- package/locales/es-ES/error.json +117 -0
- package/locales/es-ES/market.json +32 -0
- package/locales/es-ES/metadata.json +18 -0
- package/locales/es-ES/migration.json +45 -0
- package/locales/es-ES/modelProvider.json +108 -0
- package/locales/es-ES/plugin.json +166 -0
- package/locales/es-ES/portal.json +4 -0
- package/locales/es-ES/setting.json +411 -0
- package/locales/es-ES/tool.json +10 -0
- package/locales/es-ES/welcome.json +49 -0
- package/locales/fr-FR/auth.json +8 -0
- package/locales/fr-FR/chat.json +137 -0
- package/locales/fr-FR/clerk.json +769 -0
- package/locales/fr-FR/common.json +224 -0
- package/locales/fr-FR/components.json +16 -0
- package/locales/fr-FR/error.json +117 -0
- package/locales/fr-FR/market.json +32 -0
- package/locales/fr-FR/metadata.json +18 -0
- package/locales/fr-FR/migration.json +45 -0
- package/locales/fr-FR/modelProvider.json +108 -0
- package/locales/fr-FR/plugin.json +166 -0
- package/locales/fr-FR/portal.json +4 -0
- package/locales/fr-FR/setting.json +411 -0
- package/locales/fr-FR/tool.json +10 -0
- package/locales/fr-FR/welcome.json +49 -0
- package/locales/it-IT/auth.json +8 -0
- package/locales/it-IT/chat.json +137 -0
- package/locales/it-IT/clerk.json +769 -0
- package/locales/it-IT/common.json +224 -0
- package/locales/it-IT/components.json +16 -0
- package/locales/it-IT/error.json +117 -0
- package/locales/it-IT/market.json +32 -0
- package/locales/it-IT/metadata.json +18 -0
- package/locales/it-IT/migration.json +45 -0
- package/locales/it-IT/modelProvider.json +108 -0
- package/locales/it-IT/plugin.json +166 -0
- package/locales/it-IT/portal.json +4 -0
- package/locales/it-IT/setting.json +411 -0
- package/locales/it-IT/tool.json +10 -0
- package/locales/it-IT/welcome.json +49 -0
- package/locales/ja-JP/auth.json +8 -0
- package/locales/ja-JP/chat.json +137 -0
- package/locales/ja-JP/clerk.json +769 -0
- package/locales/ja-JP/common.json +224 -0
- package/locales/ja-JP/components.json +16 -0
- package/locales/ja-JP/error.json +117 -0
- package/locales/ja-JP/market.json +32 -0
- package/locales/ja-JP/metadata.json +18 -0
- package/locales/ja-JP/migration.json +45 -0
- package/locales/ja-JP/modelProvider.json +108 -0
- package/locales/ja-JP/plugin.json +166 -0
- package/locales/ja-JP/portal.json +4 -0
- package/locales/ja-JP/setting.json +411 -0
- package/locales/ja-JP/tool.json +10 -0
- package/locales/ja-JP/welcome.json +49 -0
- package/locales/ko-KR/auth.json +8 -0
- package/locales/ko-KR/chat.json +137 -0
- package/locales/ko-KR/clerk.json +769 -0
- package/locales/ko-KR/common.json +224 -0
- package/locales/ko-KR/components.json +16 -0
- package/locales/ko-KR/error.json +117 -0
- package/locales/ko-KR/market.json +32 -0
- package/locales/ko-KR/metadata.json +18 -0
- package/locales/ko-KR/migration.json +45 -0
- package/locales/ko-KR/modelProvider.json +108 -0
- package/locales/ko-KR/plugin.json +166 -0
- package/locales/ko-KR/portal.json +4 -0
- package/locales/ko-KR/setting.json +411 -0
- package/locales/ko-KR/tool.json +10 -0
- package/locales/ko-KR/welcome.json +49 -0
- package/locales/nl-NL/auth.json +8 -0
- package/locales/nl-NL/chat.json +137 -0
- package/locales/nl-NL/clerk.json +769 -0
- package/locales/nl-NL/common.json +224 -0
- package/locales/nl-NL/components.json +16 -0
- package/locales/nl-NL/error.json +117 -0
- package/locales/nl-NL/market.json +32 -0
- package/locales/nl-NL/metadata.json +18 -0
- package/locales/nl-NL/migration.json +45 -0
- package/locales/nl-NL/modelProvider.json +108 -0
- package/locales/nl-NL/plugin.json +166 -0
- package/locales/nl-NL/portal.json +4 -0
- package/locales/nl-NL/setting.json +411 -0
- package/locales/nl-NL/tool.json +10 -0
- package/locales/nl-NL/welcome.json +49 -0
- package/locales/pl-PL/auth.json +8 -0
- package/locales/pl-PL/chat.json +137 -0
- package/locales/pl-PL/clerk.json +769 -0
- package/locales/pl-PL/common.json +224 -0
- package/locales/pl-PL/components.json +16 -0
- package/locales/pl-PL/error.json +117 -0
- package/locales/pl-PL/market.json +32 -0
- package/locales/pl-PL/metadata.json +18 -0
- package/locales/pl-PL/migration.json +45 -0
- package/locales/pl-PL/modelProvider.json +108 -0
- package/locales/pl-PL/plugin.json +166 -0
- package/locales/pl-PL/portal.json +4 -0
- package/locales/pl-PL/setting.json +411 -0
- package/locales/pl-PL/tool.json +10 -0
- package/locales/pl-PL/welcome.json +49 -0
- package/locales/pt-BR/auth.json +8 -0
- package/locales/pt-BR/chat.json +137 -0
- package/locales/pt-BR/clerk.json +769 -0
- package/locales/pt-BR/common.json +224 -0
- package/locales/pt-BR/components.json +16 -0
- package/locales/pt-BR/error.json +117 -0
- package/locales/pt-BR/market.json +32 -0
- package/locales/pt-BR/metadata.json +18 -0
- package/locales/pt-BR/migration.json +45 -0
- package/locales/pt-BR/modelProvider.json +108 -0
- package/locales/pt-BR/plugin.json +166 -0
- package/locales/pt-BR/portal.json +4 -0
- package/locales/pt-BR/setting.json +411 -0
- package/locales/pt-BR/tool.json +10 -0
- package/locales/pt-BR/welcome.json +49 -0
- package/locales/ru-RU/auth.json +8 -0
- package/locales/ru-RU/chat.json +137 -0
- package/locales/ru-RU/clerk.json +769 -0
- package/locales/ru-RU/common.json +224 -0
- package/locales/ru-RU/components.json +16 -0
- package/locales/ru-RU/error.json +117 -0
- package/locales/ru-RU/market.json +32 -0
- package/locales/ru-RU/metadata.json +18 -0
- package/locales/ru-RU/migration.json +45 -0
- package/locales/ru-RU/modelProvider.json +108 -0
- package/locales/ru-RU/plugin.json +166 -0
- package/locales/ru-RU/portal.json +4 -0
- package/locales/ru-RU/setting.json +411 -0
- package/locales/ru-RU/tool.json +10 -0
- package/locales/ru-RU/welcome.json +49 -0
- package/locales/tr-TR/auth.json +8 -0
- package/locales/tr-TR/chat.json +137 -0
- package/locales/tr-TR/clerk.json +769 -0
- package/locales/tr-TR/common.json +224 -0
- package/locales/tr-TR/components.json +16 -0
- package/locales/tr-TR/error.json +117 -0
- package/locales/tr-TR/market.json +32 -0
- package/locales/tr-TR/metadata.json +18 -0
- package/locales/tr-TR/migration.json +45 -0
- package/locales/tr-TR/modelProvider.json +108 -0
- package/locales/tr-TR/plugin.json +166 -0
- package/locales/tr-TR/portal.json +4 -0
- package/locales/tr-TR/setting.json +411 -0
- package/locales/tr-TR/tool.json +10 -0
- package/locales/tr-TR/welcome.json +49 -0
- package/locales/vi-VN/auth.json +8 -0
- package/locales/vi-VN/chat.json +137 -0
- package/locales/vi-VN/clerk.json +769 -0
- package/locales/vi-VN/common.json +224 -0
- package/locales/vi-VN/components.json +16 -0
- package/locales/vi-VN/error.json +117 -0
- package/locales/vi-VN/market.json +32 -0
- package/locales/vi-VN/metadata.json +18 -0
- package/locales/vi-VN/migration.json +45 -0
- package/locales/vi-VN/modelProvider.json +108 -0
- package/locales/vi-VN/plugin.json +166 -0
- package/locales/vi-VN/portal.json +4 -0
- package/locales/vi-VN/setting.json +411 -0
- package/locales/vi-VN/tool.json +10 -0
- package/locales/vi-VN/welcome.json +49 -0
- package/locales/zh-CN/auth.json +8 -0
- package/locales/zh-CN/chat.json +137 -0
- package/locales/zh-CN/clerk.json +769 -0
- package/locales/zh-CN/common.json +224 -0
- package/locales/zh-CN/components.json +16 -0
- package/locales/zh-CN/error.json +117 -0
- package/locales/zh-CN/market.json +32 -0
- package/locales/zh-CN/metadata.json +18 -0
- package/locales/zh-CN/migration.json +45 -0
- package/locales/zh-CN/modelProvider.json +108 -0
- package/locales/zh-CN/plugin.json +166 -0
- package/locales/zh-CN/portal.json +4 -0
- package/locales/zh-CN/setting.json +411 -0
- package/locales/zh-CN/tool.json +10 -0
- package/locales/zh-CN/welcome.json +49 -0
- package/locales/zh-TW/auth.json +8 -0
- package/locales/zh-TW/chat.json +137 -0
- package/locales/zh-TW/clerk.json +769 -0
- package/locales/zh-TW/common.json +224 -0
- package/locales/zh-TW/components.json +16 -0
- package/locales/zh-TW/error.json +117 -0
- package/locales/zh-TW/market.json +32 -0
- package/locales/zh-TW/metadata.json +18 -0
- package/locales/zh-TW/migration.json +45 -0
- package/locales/zh-TW/modelProvider.json +108 -0
- package/locales/zh-TW/plugin.json +166 -0
- package/locales/zh-TW/portal.json +4 -0
- package/locales/zh-TW/setting.json +411 -0
- package/locales/zh-TW/tool.json +10 -0
- package/locales/zh-TW/welcome.json +49 -0
- package/netlify.toml +10 -0
- package/next-sitemap.config.mjs +53 -0
- package/next.config.mjs +183 -9
- package/package.json +215 -85
- package/public/apple-touch-icon.png +0 -0
- package/public/favicon-32x32.ico +0 -0
- package/public/favicon.ico +0 -0
- package/public/icons/icon-192x192.maskable.png +0 -0
- package/public/icons/icon-192x192.png +0 -0
- package/public/icons/icon-512x512.maskable.png +0 -0
- package/public/icons/icon-512x512.png +0 -0
- package/public/images/banner_market_modal.webp +0 -0
- package/public/images/chatmode_chat_dark.webp +0 -0
- package/public/images/chatmode_chat_light.webp +0 -0
- package/public/images/chatmode_docs_dark.webp +0 -0
- package/public/images/chatmode_docs_light.webp +0 -0
- package/public/images/empty_topic_dark.webp +0 -0
- package/public/images/empty_topic_light.webp +0 -0
- package/public/images/logo.png +0 -0
- package/public/images/screenshot_background.webp +0 -0
- package/public/images/theme_auto.webp +0 -0
- package/public/images/theme_dark.webp +0 -0
- package/public/images/theme_light.webp +0 -0
- package/public/manifest.json +166 -0
- package/public/og/cover.png +0 -0
- package/public/screenshots/shot-1.desktop.png +0 -0
- package/public/screenshots/shot-1.mobile.png +0 -0
- package/public/screenshots/shot-2.desktop.png +0 -0
- package/public/screenshots/shot-2.mobile.png +0 -0
- package/public/screenshots/shot-3.desktop.png +0 -0
- package/public/screenshots/shot-3.mobile.png +0 -0
- package/public/screenshots/shot-4.desktop.png +0 -0
- package/public/screenshots/shot-4.mobile.png +0 -0
- package/public/screenshots/shot-5.desktop.png +0 -0
- package/public/screenshots/shot-5.mobile.png +0 -0
- package/public/videos/feedback.mp4 +0 -0
- package/public/videos/star.mp4 +0 -0
- package/renovate.json +13 -0
- package/scripts/docsWorkflow/const.ts +14 -0
- package/scripts/docsWorkflow/index.ts +82 -0
- package/scripts/docsWorkflow/toc.ts +60 -0
- package/scripts/docsWorkflow/utils.ts +38 -0
- package/scripts/i18nWorkflow/const.ts +18 -0
- package/scripts/i18nWorkflow/genDefaultLocale.ts +19 -0
- package/scripts/i18nWorkflow/genDiff.ts +50 -0
- package/scripts/i18nWorkflow/index.ts +11 -0
- package/scripts/i18nWorkflow/utils.ts +54 -0
- package/scripts/mdxWorkflow/index.ts +48 -0
- package/scripts/migrateServerDB/index.ts +32 -0
- package/scripts/readmeWorkflow/const.ts +19 -0
- package/scripts/readmeWorkflow/index.ts +12 -0
- package/scripts/readmeWorkflow/syncAgentIndex.ts +47 -0
- package/scripts/readmeWorkflow/syncPluginIndex.ts +42 -0
- package/scripts/readmeWorkflow/utlis.ts +52 -0
- package/sentry.client.config.ts +30 -0
- package/sentry.edge.config.ts +17 -0
- package/sentry.server.config.ts +19 -0
- package/src/app/(auth)/layout.tsx +19 -0
- package/src/app/(auth)/login/[[...login]]/page.tsx +21 -0
- package/src/app/(auth)/signup/[[...signup]]/page.tsx +21 -0
- package/src/app/(loading)/Client.tsx +13 -0
- package/src/app/(loading)/Redirect.tsx +51 -0
- package/src/app/(main)/(mobile)/me/(home)/__tests__/UserBanner.test.tsx +80 -0
- package/src/app/(main)/(mobile)/me/(home)/__tests__/useCategory.test.tsx +116 -0
- package/src/app/(main)/(mobile)/me/(home)/features/Category.tsx +15 -0
- package/src/app/(main)/(mobile)/me/(home)/features/Header.tsx +30 -0
- package/src/app/(main)/(mobile)/me/(home)/features/UserBanner.tsx +37 -0
- package/src/app/(main)/(mobile)/me/(home)/features/useCategory.tsx +118 -0
- package/src/app/(main)/(mobile)/me/(home)/layout.tsx +17 -0
- package/src/app/(main)/(mobile)/me/(home)/loading.tsx +38 -0
- package/src/app/(main)/(mobile)/me/(home)/page.tsx +38 -0
- package/src/app/(main)/(mobile)/me/data/features/Category.tsx +48 -0
- package/src/app/(main)/(mobile)/me/data/features/Header.tsx +33 -0
- package/src/app/(main)/(mobile)/me/data/layout.tsx +13 -0
- package/src/app/(main)/(mobile)/me/data/loading.tsx +5 -0
- package/src/app/(main)/(mobile)/me/data/page.tsx +27 -0
- package/src/app/(main)/(mobile)/me/profile/features/Category.tsx +45 -0
- package/src/app/(main)/(mobile)/me/profile/features/Header.tsx +33 -0
- package/src/app/(main)/(mobile)/me/profile/layout.tsx +16 -0
- package/src/app/(main)/(mobile)/me/profile/loading.tsx +5 -0
- package/src/app/(main)/(mobile)/me/profile/page.tsx +28 -0
- package/src/app/(main)/(mobile)/me/settings/features/Category.tsx +15 -0
- package/src/app/(main)/(mobile)/me/settings/features/Header.tsx +33 -0
- package/src/app/(main)/(mobile)/me/settings/features/useCategory.tsx +62 -0
- package/src/app/(main)/(mobile)/me/settings/layout.tsx +13 -0
- package/src/app/(main)/(mobile)/me/settings/loading.tsx +5 -0
- package/src/app/(main)/(mobile)/me/settings/page.tsx +28 -0
- package/src/app/(main)/@nav/_layout/Desktop/Avatar.test.tsx +55 -0
- package/src/app/(main)/@nav/_layout/Desktop/Avatar.tsx +53 -0
- package/src/app/(main)/@nav/_layout/Desktop/BottomActions.tsx +24 -0
- package/src/app/(main)/@nav/_layout/Desktop/TopActions.tsx +50 -0
- package/src/app/(main)/@nav/_layout/Desktop/index.tsx +26 -0
- package/src/app/(main)/@nav/_layout/Mobile.tsx +71 -0
- package/src/app/(main)/@nav/default.tsx +10 -0
- package/src/app/(main)/_layout/Desktop.tsx +33 -0
- package/src/app/(main)/_layout/Mobile.tsx +29 -0
- package/src/app/(main)/_layout/type.ts +6 -0
- package/src/app/(main)/chat/(workspace)/@conversation/default.tsx +23 -0
- package/src/app/(main)/chat/(workspace)/@conversation/features/ChatHydration/index.tsx +33 -0
- package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/DragUpload.tsx +245 -0
- package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/LocalFiles.tsx +10 -0
- package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/SendMore.tsx +120 -0
- package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/index.tsx +182 -0
- package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Header/index.tsx +25 -0
- package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/TextArea.test.tsx +316 -0
- package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/TextArea.tsx +129 -0
- package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/__tests__/useAutoFocus.test.ts +45 -0
- package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/index.tsx +60 -0
- package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/useAutoFocus.ts +13 -0
- package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files.tsx +19 -0
- package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/index.tsx +52 -0
- package/src/app/(main)/chat/(workspace)/@portal/_layout/Desktop.tsx +17 -0
- package/src/app/(main)/chat/(workspace)/@portal/_layout/Mobile.tsx +18 -0
- package/src/app/(main)/chat/(workspace)/@portal/default.tsx +27 -0
- package/src/app/(main)/chat/(workspace)/@portal/features/Header.tsx +52 -0
- package/src/app/(main)/chat/(workspace)/@portal/features/Tools/ToolList/Item/index.tsx +74 -0
- package/src/app/(main)/chat/(workspace)/@portal/features/Tools/ToolList/Item/style.ts +46 -0
- package/src/app/(main)/chat/(workspace)/@portal/features/Tools/ToolList/index.tsx +39 -0
- package/src/app/(main)/chat/(workspace)/@portal/features/Tools/ToolUI/Footer.tsx +33 -0
- package/src/app/(main)/chat/(workspace)/@portal/features/Tools/ToolUI/ToolRender.tsx +50 -0
- package/src/app/(main)/chat/(workspace)/@portal/features/Tools/ToolUI/index.tsx +37 -0
- package/src/app/(main)/chat/(workspace)/@portal/index.tsx +18 -0
- package/src/app/(main)/chat/(workspace)/@topic/_layout/Desktop.tsx +17 -0
- package/src/app/(main)/chat/(workspace)/@topic/_layout/Mobile.tsx +21 -0
- package/src/app/(main)/chat/(workspace)/@topic/default.tsx +32 -0
- package/src/app/(main)/chat/(workspace)/@topic/features/Header.tsx +88 -0
- package/src/app/(main)/chat/(workspace)/@topic/features/SkeletonList.tsx +57 -0
- package/src/app/(main)/chat/(workspace)/@topic/features/SystemRole/SystemRoleContent.tsx +128 -0
- package/src/app/(main)/chat/(workspace)/@topic/features/SystemRole/index.tsx +18 -0
- package/src/app/(main)/chat/(workspace)/@topic/features/SystemRole/style.ts +32 -0
- package/src/app/(main)/chat/(workspace)/@topic/features/TopicListContent/DefaultContent.tsx +29 -0
- package/src/app/(main)/chat/(workspace)/@topic/features/TopicListContent/TopicContent.tsx +211 -0
- package/src/app/(main)/chat/(workspace)/@topic/features/TopicListContent/TopicItem.tsx +81 -0
- package/src/app/(main)/chat/(workspace)/@topic/features/TopicListContent/index.tsx +107 -0
- package/src/app/(main)/chat/(workspace)/@topic/features/TopicSearchBar/index.tsx +42 -0
- package/src/app/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/HeaderAction.tsx +40 -0
- package/src/app/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/Main.tsx +91 -0
- package/src/app/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/Tags.tsx +31 -0
- package/src/app/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/index.tsx +8 -0
- package/src/app/(main)/chat/(workspace)/_layout/Desktop/HotKeys.tsx +49 -0
- package/src/app/(main)/chat/(workspace)/_layout/Desktop/Portal.tsx +79 -0
- package/src/app/(main)/chat/(workspace)/_layout/Desktop/TopicPanel.tsx +82 -0
- package/src/app/(main)/chat/(workspace)/_layout/Desktop/index.tsx +37 -0
- package/src/app/(main)/chat/(workspace)/_layout/Mobile/ChatHeader/ChatHeaderTitle.tsx +55 -0
- package/src/app/(main)/chat/(workspace)/_layout/Mobile/ChatHeader/index.tsx +37 -0
- package/src/app/(main)/chat/(workspace)/_layout/Mobile/TopicModal.tsx +35 -0
- package/src/app/(main)/chat/(workspace)/_layout/Mobile/index.tsx +21 -0
- package/src/app/(main)/chat/(workspace)/_layout/type.ts +8 -0
- package/src/app/(main)/chat/(workspace)/_layout/useInitAgentConfig.ts +10 -0
- package/src/app/(main)/chat/(workspace)/features/PluginTag/PluginStatus.tsx +108 -0
- package/src/app/(main)/chat/(workspace)/features/PluginTag/index.tsx +60 -0
- package/src/app/(main)/chat/(workspace)/features/SettingButton.tsx +25 -0
- package/src/app/(main)/chat/(workspace)/features/ShareButton/Preview.tsx +79 -0
- package/src/app/(main)/chat/(workspace)/features/ShareButton/ShareModal.tsx +164 -0
- package/src/app/(main)/chat/(workspace)/features/ShareButton/index.tsx +40 -0
- package/src/app/(main)/chat/(workspace)/features/ShareButton/style.ts +71 -0
- package/src/app/(main)/chat/(workspace)/features/ShareButton/type.ts +14 -0
- package/src/app/(main)/chat/(workspace)/features/ShareButton/useScreenshot.ts +60 -0
- package/src/app/(main)/chat/(workspace)/features/TelemetryNotification.tsx +93 -0
- package/src/app/(main)/chat/(workspace)/features/useWorkspaceModal.tsx +27 -0
- package/src/app/(main)/chat/(workspace)/layout.ts +11 -0
- package/src/app/(main)/chat/(workspace)/page.tsx +39 -0
- package/src/app/(main)/chat/@session/_layout/Desktop/PanelBody.tsx +22 -0
- package/src/app/(main)/chat/@session/_layout/Desktop/SessionHeader.tsx +60 -0
- package/src/app/(main)/chat/@session/_layout/Desktop/index.tsx +18 -0
- package/src/app/(main)/chat/@session/_layout/Mobile/SessionHeader.tsx +45 -0
- package/src/app/(main)/chat/@session/_layout/Mobile/index.tsx +22 -0
- package/src/app/(main)/chat/@session/default.tsx +29 -0
- package/src/app/(main)/chat/@session/features/SessionHydration.tsx +45 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/CollapseGroup/Actions.tsx +141 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/CollapseGroup/index.tsx +63 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/DefaultMode.tsx +106 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/Inbox/index.tsx +38 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/List/AddButton.tsx +28 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/List/Item/Actions.tsx +196 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/List/Item/index.tsx +95 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/List/index.tsx +67 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/ListItem/index.tsx +67 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/Modals/ConfigGroupModal/GroupItem.tsx +89 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/Modals/ConfigGroupModal/index.tsx +85 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/Modals/CreateGroupModal.tsx +70 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/Modals/RenameGroupModal.tsx +59 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/SearchMode.tsx +21 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/index.tsx +18 -0
- package/src/app/(main)/chat/@session/features/SessionListContent/useSwitchSession.ts +26 -0
- package/src/app/(main)/chat/@session/features/SessionSearchBar.tsx +37 -0
- package/src/app/(main)/chat/@session/features/SkeletonList.tsx +51 -0
- package/src/app/(main)/chat/_layout/Desktop/SessionPanel.tsx +75 -0
- package/src/app/(main)/chat/_layout/Desktop/index.tsx +31 -0
- package/src/app/(main)/chat/_layout/Mobile.tsx +49 -0
- package/src/app/(main)/chat/_layout/type.ts +6 -0
- package/src/app/(main)/chat/error.tsx +5 -0
- package/src/app/(main)/chat/features/Migration/ExportConfigButton.tsx +33 -0
- package/src/app/(main)/chat/features/Migration/Failed.tsx +118 -0
- package/src/app/(main)/chat/features/Migration/Modal.tsx +80 -0
- package/src/app/(main)/chat/features/Migration/Start.tsx +106 -0
- package/src/app/(main)/chat/features/Migration/UpgradeButton.tsx +74 -0
- package/src/app/(main)/chat/features/Migration/const.ts +15 -0
- package/src/app/(main)/chat/features/Migration/index.tsx +39 -0
- package/src/app/(main)/chat/features/PageTitle/index.tsx +17 -0
- package/src/app/(main)/chat/layout.ts +11 -0
- package/src/app/(main)/chat/loading.tsx +3 -0
- package/src/app/(main)/chat/not-found.tsx +3 -0
- package/src/app/(main)/chat/settings/_layout/Desktop/Header.tsx +26 -0
- package/src/app/(main)/chat/settings/_layout/Desktop/index.tsx +21 -0
- package/src/app/(main)/chat/settings/_layout/Mobile/Header.tsx +27 -0
- package/src/app/(main)/chat/settings/_layout/Mobile/index.tsx +19 -0
- package/src/app/(main)/chat/settings/error.tsx +5 -0
- package/src/app/(main)/chat/settings/features/EditPage.tsx +40 -0
- package/src/app/(main)/chat/settings/features/HeaderContent.tsx +70 -0
- package/src/app/(main)/chat/settings/features/SubmitAgentButton/SubmitAgentModal.tsx +98 -0
- package/src/app/(main)/chat/settings/features/SubmitAgentButton/index.tsx +36 -0
- package/src/app/(main)/chat/settings/features/SubmitAgentButton/style.ts +46 -0
- package/src/app/(main)/chat/settings/layout.tsx +21 -0
- package/src/app/(main)/chat/settings/loading.tsx +3 -0
- package/src/app/(main)/chat/settings/modal/page.tsx +23 -0
- package/src/app/(main)/chat/settings/not-found.tsx +3 -0
- package/src/app/(main)/chat/settings/page.tsx +7 -0
- package/src/app/(main)/error.tsx +5 -0
- package/src/app/(main)/layout.tsx +11 -0
- package/src/app/(main)/market/@detail/default.tsx +12 -0
- package/src/app/(main)/market/@detail/features/AgentDetailContent.tsx +73 -0
- package/src/app/(main)/market/@detail/features/Banner.tsx +46 -0
- package/src/app/(main)/market/@detail/features/Comment.tsx +16 -0
- package/src/app/(main)/market/@detail/features/Header.tsx +81 -0
- package/src/app/(main)/market/@detail/features/Loading.tsx +63 -0
- package/src/app/(main)/market/@detail/features/TokenTag.tsx +26 -0
- package/src/app/(main)/market/@detail/features/style.ts +31 -0
- package/src/app/(main)/market/_layout/Desktop/DetailSidebar.tsx +84 -0
- package/src/app/(main)/market/_layout/Desktop/Header.tsx +28 -0
- package/src/app/(main)/market/_layout/Desktop/Hero.tsx +39 -0
- package/src/app/(main)/market/_layout/Desktop/index.tsx +46 -0
- package/src/app/(main)/market/_layout/Mobile/DetailModal.tsx +32 -0
- package/src/app/(main)/market/_layout/Mobile/Header.tsx +20 -0
- package/src/app/(main)/market/_layout/Mobile/index.tsx +25 -0
- package/src/app/(main)/market/_layout/type.ts +6 -0
- package/src/app/(main)/market/features/AgentCard/AgentCardBanner.tsx +59 -0
- package/src/app/(main)/market/features/AgentCard/index.tsx +139 -0
- package/src/app/(main)/market/features/AgentList.tsx +103 -0
- package/src/app/(main)/market/features/AgentSearchBar.tsx +42 -0
- package/src/app/(main)/market/features/ShareAgentButton/Inner.tsx +54 -0
- package/src/app/(main)/market/features/ShareAgentButton/index.tsx +50 -0
- package/src/app/(main)/market/features/TagList.tsx +69 -0
- package/src/app/(main)/market/layout.tsx +11 -0
- package/src/app/(main)/market/loading.tsx +15 -0
- package/src/app/(main)/market/page.tsx +44 -0
- package/src/app/(main)/not-found.tsx +3 -0
- package/src/app/(main)/profile/[[...slugs]]/Client.tsx +74 -0
- package/src/app/(main)/profile/[[...slugs]]/page.tsx +21 -0
- package/src/app/(main)/profile/_layout/Mobile/Header.tsx +26 -0
- package/src/app/(main)/profile/_layout/Mobile/index.tsx +16 -0
- package/src/app/(main)/profile/layout.tsx +20 -0
- package/src/app/(main)/profile/loading.tsx +23 -0
- package/src/app/(main)/settings/@category/default.tsx +15 -0
- package/src/app/(main)/settings/@category/features/CategoryContent.tsx +37 -0
- package/src/app/(main)/settings/@category/features/UpgradeAlert.tsx +38 -0
- package/src/app/(main)/settings/_layout/Desktop/Header.tsx +85 -0
- package/src/app/(main)/settings/_layout/Desktop/SideBar.tsx +59 -0
- package/src/app/(main)/settings/_layout/Desktop/index.tsx +54 -0
- package/src/app/(main)/settings/_layout/Mobile/Header.tsx +43 -0
- package/src/app/(main)/settings/_layout/Mobile/index.tsx +18 -0
- package/src/app/(main)/settings/_layout/type.ts +6 -0
- package/src/app/(main)/settings/about/features/AboutList.tsx +27 -0
- package/src/app/(main)/settings/about/features/Analytics.tsx +42 -0
- package/src/app/(main)/settings/about/features/ItemCard.tsx +45 -0
- package/src/app/(main)/settings/about/features/ItemLink.tsx +32 -0
- package/src/app/(main)/settings/about/features/Version.tsx +79 -0
- package/src/app/(main)/settings/about/index.tsx +139 -0
- package/src/app/(main)/settings/about/page.tsx +20 -0
- package/src/app/(main)/settings/agent/index.tsx +33 -0
- package/src/app/(main)/settings/agent/page.tsx +12 -0
- package/src/app/(main)/settings/common/features/Common.tsx +171 -0
- package/src/app/(main)/settings/common/features/Theme/ThemeSwatches/ThemeSwatchesNeutral.tsx +33 -0
- package/src/app/(main)/settings/common/features/Theme/ThemeSwatches/ThemeSwatchesPrimary.tsx +33 -0
- package/src/app/(main)/settings/common/features/Theme/index.tsx +148 -0
- package/src/app/(main)/settings/common/index.tsx +15 -0
- package/src/app/(main)/settings/common/page.tsx +13 -0
- package/src/app/(main)/settings/error.tsx +5 -0
- package/src/app/(main)/settings/features/UpgradeAlert.tsx +42 -0
- package/src/app/(main)/settings/hooks/useCategory.tsx +94 -0
- package/src/app/(main)/settings/hooks/useSyncSettings.ts +23 -0
- package/src/app/(main)/settings/layout.ts +11 -0
- package/src/app/(main)/settings/llm/ProviderList/Azure/index.tsx +107 -0
- package/src/app/(main)/settings/llm/ProviderList/Bedrock/index.tsx +68 -0
- package/src/app/(main)/settings/llm/ProviderList/Ollama/Checker.tsx +73 -0
- package/src/app/(main)/settings/llm/ProviderList/Ollama/index.tsx +29 -0
- package/src/app/(main)/settings/llm/ProviderList/OpenAI/index.tsx +20 -0
- package/src/app/(main)/settings/llm/ProviderList/providers.tsx +183 -0
- package/src/app/(main)/settings/llm/components/Checker.tsx +113 -0
- package/src/app/(main)/settings/llm/components/ProviderConfig/index.tsx +295 -0
- package/src/app/(main)/settings/llm/components/ProviderModelList/CustomModelOption.tsx +93 -0
- package/src/app/(main)/settings/llm/components/ProviderModelList/ModelConfigModal/Form.tsx +98 -0
- package/src/app/(main)/settings/llm/components/ProviderModelList/ModelConfigModal/MaxTokenSlider.tsx +103 -0
- package/src/app/(main)/settings/llm/components/ProviderModelList/ModelConfigModal/index.tsx +78 -0
- package/src/app/(main)/settings/llm/components/ProviderModelList/ModelFetcher.tsx +86 -0
- package/src/app/(main)/settings/llm/components/ProviderModelList/Option.tsx +66 -0
- package/src/app/(main)/settings/llm/components/ProviderModelList/index.tsx +147 -0
- package/src/app/(main)/settings/llm/const.ts +20 -0
- package/src/app/(main)/settings/llm/features/Footer.tsx +35 -0
- package/src/app/(main)/settings/llm/index.tsx +24 -0
- package/src/app/(main)/settings/llm/page.tsx +23 -0
- package/src/app/(main)/settings/llm/type.ts +5 -0
- package/src/app/(main)/settings/loading.tsx +9 -0
- package/src/app/(main)/settings/modal/page.tsx +27 -0
- package/src/app/(main)/settings/not-found.tsx +3 -0
- package/src/app/(main)/settings/sync/features/Alert.tsx +39 -0
- package/src/app/(main)/settings/sync/features/DeviceInfo/Card.tsx +42 -0
- package/src/app/(main)/settings/sync/features/DeviceInfo/DeviceName.tsx +63 -0
- package/src/app/(main)/settings/sync/features/DeviceInfo/SystemIcon.tsx +29 -0
- package/src/app/(main)/settings/sync/features/DeviceInfo/index.tsx +103 -0
- package/src/app/(main)/settings/sync/features/WebRTC/ChannelNameInput.tsx +46 -0
- package/src/app/(main)/settings/sync/features/WebRTC/SyncSwitch/index.css +237 -0
- package/src/app/(main)/settings/sync/features/WebRTC/SyncSwitch/index.tsx +79 -0
- package/src/app/(main)/settings/sync/features/WebRTC/generateRandomRoomName.ts +4 -0
- package/src/app/(main)/settings/sync/features/WebRTC/index.tsx +98 -0
- package/src/app/(main)/settings/sync/index.tsx +17 -0
- package/src/app/(main)/settings/sync/page.tsx +26 -0
- package/src/app/(main)/settings/system-agent/features/createForm.tsx +59 -0
- package/src/app/(main)/settings/system-agent/features/useSync.ts +23 -0
- package/src/app/(main)/settings/system-agent/index.tsx +15 -0
- package/src/app/(main)/settings/system-agent/page.tsx +14 -0
- package/src/app/(main)/settings/tts/features/OpenAI.tsx +54 -0
- package/src/app/(main)/settings/tts/features/STT.tsx +58 -0
- package/src/app/(main)/settings/tts/features/const.ts +30 -0
- package/src/app/(main)/settings/tts/index.tsx +15 -0
- package/src/app/(main)/settings/tts/page.tsx +12 -0
- package/src/app/(main)/welcome/_layout/Desktop.tsx +41 -0
- package/src/app/(main)/welcome/_layout/Mobile.tsx +12 -0
- package/src/app/(main)/welcome/features/Actions.tsx +39 -0
- package/src/app/(main)/welcome/features/Hero.tsx +63 -0
- package/src/app/(main)/welcome/features/Logo.tsx +30 -0
- package/src/app/(main)/welcome/layout.tsx +10 -0
- package/src/app/(main)/welcome/page.tsx +41 -0
- package/src/app/@modal/(.)settings/modal/index.tsx +45 -0
- package/src/app/@modal/(.)settings/modal/layout.tsx +44 -0
- package/src/app/@modal/(.)settings/modal/loading.tsx +5 -0
- package/src/app/@modal/(.)settings/modal/page.tsx +19 -0
- package/src/app/@modal/_layout/SettingModalLayout.tsx +71 -0
- package/src/app/@modal/chat/(.)settings/modal/features/CategoryContent.tsx +37 -0
- package/src/app/@modal/chat/(.)settings/modal/features/useCategory.tsx +54 -0
- package/src/app/@modal/chat/(.)settings/modal/layout.tsx +58 -0
- package/src/app/@modal/chat/(.)settings/modal/loading.tsx +5 -0
- package/src/app/@modal/chat/(.)settings/modal/page.tsx +55 -0
- package/src/app/@modal/default.tsx +3 -0
- package/src/app/@modal/error.tsx +5 -0
- package/src/app/@modal/layout.tsx +34 -0
- package/src/app/@modal/loading.tsx +5 -0
- package/src/app/api/auth/[...nextauth]/route.ts +3 -0
- package/src/app/api/chat/[provider]/route.test.ts +222 -0
- package/src/app/api/chat/[provider]/route.ts +56 -0
- package/src/app/api/chat/agentRuntime.test.ts +350 -0
- package/src/app/api/chat/agentRuntime.ts +254 -0
- package/src/app/api/chat/anthropic/route.test.ts +28 -0
- package/src/app/api/chat/anthropic/route.ts +33 -0
- package/src/app/api/chat/apiKeyManager.test.ts +131 -0
- package/src/app/api/chat/apiKeyManager.ts +46 -0
- package/src/app/api/chat/google/route.test.ts +28 -0
- package/src/app/api/chat/google/route.ts +20 -0
- package/src/app/api/chat/minimax/route.test.ts +24 -0
- package/src/app/api/chat/minimax/route.ts +5 -0
- package/src/app/api/chat/models/[provider]/route.ts +45 -0
- package/src/app/api/config.test.ts +43 -0
- package/src/app/api/config.ts +14 -0
- package/src/app/api/errorResponse.test.ts +100 -0
- package/src/app/api/errorResponse.ts +54 -0
- package/src/app/api/market/AgentMarket.test.ts +55 -0
- package/src/app/api/market/AgentMarket.ts +25 -0
- package/src/app/api/market/[id]/route.ts +22 -0
- package/src/app/api/market/route.ts +23 -0
- package/src/app/api/middleware/auth/index.test.ts +77 -0
- package/src/app/api/middleware/auth/index.ts +62 -0
- package/src/app/api/middleware/auth/utils.test.ts +150 -0
- package/src/app/api/middleware/auth/utils.ts +83 -0
- package/src/app/api/openai/createBizOpenAI/auth.test.ts +53 -0
- package/src/app/api/openai/createBizOpenAI/auth.ts +31 -0
- package/src/app/api/openai/createBizOpenAI/createAzureOpenai.ts +33 -0
- package/src/app/api/openai/createBizOpenAI/createOpenai.ts +17 -0
- package/src/app/api/openai/createBizOpenAI/index.ts +37 -0
- package/src/app/api/openai/stt/route.ts +31 -0
- package/src/app/api/openai/tts/route.ts +19 -0
- package/src/app/api/plugin/gateway/route.ts +82 -0
- package/src/app/api/plugin/gateway/settings.test.ts +105 -0
- package/src/app/api/plugin/gateway/settings.ts +29 -0
- package/src/app/api/plugin/store/Store.test.ts +26 -0
- package/src/app/api/plugin/store/Store.ts +19 -0
- package/src/app/api/plugin/store/route.ts +23 -0
- package/src/app/api/proxy/route.ts +34 -0
- package/src/app/api/text-to-image/[provider]/route.ts +61 -0
- package/src/app/api/trace/route.ts +40 -0
- package/src/app/api/tts/edge-speech/route.ts +9 -0
- package/src/app/api/tts/microsoft-speech/route.ts +9 -0
- package/src/app/api/webhooks/clerk/__tests__/fixtures/createUser.json +73 -0
- package/src/app/api/webhooks/clerk/route.ts +79 -0
- package/src/app/api/webhooks/clerk/validateRequest.ts +22 -0
- package/src/app/error.tsx +5 -0
- package/src/app/global-error.tsx +20 -0
- package/src/app/layout.tsx +65 -0
- package/src/app/metadata.ts +59 -0
- package/src/app/not-found.tsx +3 -0
- package/src/app/page.tsx +23 -0
- package/src/app/trpc/edge/[trpc]/route.ts +28 -0
- package/src/app/trpc/lambda/[trpc]/route.ts +26 -0
- package/src/app/trpc/tools/[trpc]/route.ts +26 -0
- package/src/chains/__tests__/langDetect.test.ts +51 -0
- package/src/chains/__tests__/pickEmoji.test.ts +47 -0
- package/src/chains/__tests__/summaryAgentName.test.ts +57 -0
- package/src/chains/__tests__/summaryDescription.test.ts +83 -0
- package/src/chains/__tests__/summaryTags.test.ts +54 -0
- package/src/chains/__tests__/summaryTitle.test.ts +54 -0
- package/src/chains/__tests__/translate.test.ts +28 -0
- package/src/chains/langDetect.ts +31 -0
- package/src/chains/pickEmoji.ts +31 -0
- package/src/chains/summaryAgentName.ts +35 -0
- package/src/chains/summaryDescription.ts +49 -0
- package/src/chains/summaryTags.ts +28 -0
- package/src/chains/summaryTitle.ts +21 -0
- package/src/chains/translate.ts +17 -0
- package/src/components/404/index.tsx +43 -0
- package/src/components/Analytics/Clarity.tsx +28 -0
- package/src/components/Analytics/Google.tsx +7 -0
- package/src/components/Analytics/Plausible.tsx +16 -0
- package/src/components/Analytics/Posthog.tsx +22 -0
- package/src/components/Analytics/Umami.tsx +16 -0
- package/src/components/Analytics/Vercel.tsx +8 -0
- package/src/components/Analytics/index.tsx +44 -0
- package/src/components/AntdStaticMethods/index.test.tsx +43 -0
- package/src/components/AntdStaticMethods/index.tsx +20 -0
- package/src/components/BrandWatermark/index.tsx +39 -0
- package/src/components/BrowserIcon/components/Brave.tsx +56 -0
- package/src/components/BrowserIcon/components/Chrome.tsx +14 -0
- package/src/components/BrowserIcon/components/Chromium.tsx +14 -0
- package/src/components/BrowserIcon/components/Edge.tsx +36 -0
- package/src/components/BrowserIcon/components/Firefox.tsx +38 -0
- package/src/components/BrowserIcon/components/Opera.tsx +19 -0
- package/src/components/BrowserIcon/components/Safari.tsx +23 -0
- package/src/components/BrowserIcon/components/Samsung.tsx +21 -0
- package/src/components/BrowserIcon/index.tsx +50 -0
- package/src/components/BrowserIcon/types.ts +8 -0
- package/src/components/Cell/Divider.tsx +22 -0
- package/src/components/Cell/index.tsx +53 -0
- package/src/components/CircleLoading/index.tsx +21 -0
- package/src/components/DataStyleModal/index.tsx +64 -0
- package/src/components/Error/index.tsx +58 -0
- package/src/components/Error/sentryCaptureException.ts +9 -0
- package/src/components/FetchErrorNotification/Description.tsx +48 -0
- package/src/components/FetchErrorNotification/index.tsx +15 -0
- package/src/components/FileList/EditableFileList.tsx +47 -0
- package/src/components/FileList/FileListViewer.tsx +19 -0
- package/src/components/FileList/index.ts +2 -0
- package/src/components/FileList/type.tsx +7 -0
- package/src/components/FullscreenLoading/index.tsx +21 -0
- package/src/components/GalleyGrid/Grid.tsx +36 -0
- package/src/components/GalleyGrid/index.tsx +58 -0
- package/src/components/GalleyGrid/style.ts +24 -0
- package/src/components/GuideModal/index.tsx +77 -0
- package/src/components/GuideVideo/index.tsx +30 -0
- package/src/components/HotKeys/index.tsx +77 -0
- package/src/components/ImageItem/index.tsx +75 -0
- package/src/components/ImageItem/style.ts +1 -0
- package/src/components/ManifestPreviewer/index.tsx +30 -0
- package/src/components/Menu/index.tsx +97 -0
- package/src/components/ModelIcon/index.tsx +99 -0
- package/src/components/ModelProviderIcon/index.tsx +128 -0
- package/src/components/ModelSelect/index.tsx +163 -0
- package/src/components/ModelTag/ModelIcon.tsx +93 -0
- package/src/components/ModelTag/index.tsx +13 -0
- package/src/components/Notification/index.tsx +95 -0
- package/src/components/PageTitle/index.tsx +11 -0
- package/src/components/SafeSpacing/index.tsx +27 -0
- package/src/components/SidebarHeader/index.tsx +38 -0
- package/src/components/SkeletonLoading/index.tsx +21 -0
- package/src/components/StopLoading.tsx +38 -0
- package/src/components/StructuredData/index.tsx +12 -0
- package/src/components/client/ClientResponsiveContent/index.tsx +32 -0
- package/src/components/client/ClientResponsiveLayout.tsx +32 -0
- package/src/components/server/MobileNavLayout.tsx +62 -0
- package/src/components/server/ServerLayout.tsx +19 -0
- package/src/config/__tests__/analytics.test.ts +47 -0
- package/src/config/__tests__/app.test.ts +48 -0
- package/src/config/__tests__/client.test.ts +40 -0
- package/src/config/analytics.ts +62 -0
- package/src/config/app.ts +60 -0
- package/src/config/auth.ts +129 -0
- package/src/config/db.ts +28 -0
- package/src/config/debug.ts +22 -0
- package/src/config/featureFlags/index.ts +31 -0
- package/src/config/featureFlags/schema.test.ts +59 -0
- package/src/config/featureFlags/schema.ts +57 -0
- package/src/config/featureFlags/utils/parser.test.ts +88 -0
- package/src/config/featureFlags/utils/parser.ts +32 -0
- package/src/config/file.ts +34 -0
- package/src/config/langfuse.ts +23 -0
- package/src/config/llm.ts +168 -0
- package/src/config/modelProviders/anthropic.ts +80 -0
- package/src/config/modelProviders/azure.ts +45 -0
- package/src/config/modelProviders/baichuan.ts +55 -0
- package/src/config/modelProviders/bedrock.ts +105 -0
- package/src/config/modelProviders/deepseek.ts +26 -0
- package/src/config/modelProviders/google.ts +91 -0
- package/src/config/modelProviders/groq.ts +48 -0
- package/src/config/modelProviders/index.ts +88 -0
- package/src/config/modelProviders/minimax.ts +50 -0
- package/src/config/modelProviders/mistral.ts +49 -0
- package/src/config/modelProviders/moonshot.ts +33 -0
- package/src/config/modelProviders/ollama.ts +190 -0
- package/src/config/modelProviders/openai.ts +142 -0
- package/src/config/modelProviders/openrouter.ts +125 -0
- package/src/config/modelProviders/perplexity.ts +52 -0
- package/src/config/modelProviders/qwen.ts +58 -0
- package/src/config/modelProviders/stepfun.ts +41 -0
- package/src/config/modelProviders/togetherai.ts +79 -0
- package/src/config/modelProviders/zeroone.ts +74 -0
- package/src/config/modelProviders/zhipu.ts +64 -0
- package/src/const/auth.ts +45 -0
- package/src/const/fetch.ts +27 -1
- package/src/const/guide.ts +86 -0
- package/src/const/hotkeys.ts +5 -0
- package/src/const/layoutTokens.test.ts +11 -0
- package/src/const/layoutTokens.ts +25 -0
- package/src/const/locale.ts +12 -0
- package/src/const/market.ts +15 -0
- package/src/const/message.ts +1 -0
- package/src/const/meta.ts +8 -0
- package/src/const/plugin.ts +2 -0
- package/src/const/session.ts +25 -0
- package/src/const/settings/agent.ts +40 -0
- package/src/const/settings/common.ts +7 -0
- package/src/const/settings/index.ts +28 -0
- package/src/const/settings/llm.ts +106 -0
- package/src/const/settings/sync.ts +5 -0
- package/src/const/settings/systemAgent.ts +14 -0
- package/src/const/settings/tool.ts +5 -0
- package/src/const/settings/tts.ts +10 -0
- package/src/const/theme.ts +5 -0
- package/src/const/trace.ts +60 -0
- package/src/const/url.ts +63 -0
- package/src/const/user.ts +10 -0
- package/src/const/version.ts +6 -0
- package/src/database/client/core/__tests__/db-upgrade.test.ts +42 -0
- package/src/database/client/core/__tests__/db.test.ts +79 -0
- package/src/database/client/core/__tests__/model.test.ts +55 -0
- package/src/database/client/core/db.ts +246 -0
- package/src/database/client/core/index.ts +3 -0
- package/src/database/client/core/migrations/migrateSettingsToUser/fixtures/input.json +55 -0
- package/src/database/client/core/migrations/migrateSettingsToUser/fixtures/output.json +60 -0
- package/src/database/client/core/migrations/migrateSettingsToUser/index.test.ts +14 -0
- package/src/database/client/core/migrations/migrateSettingsToUser/index.ts +22 -0
- package/src/database/client/core/migrations/migrateSettingsToUser/type.ts +108 -0
- package/src/database/client/core/model.ts +252 -0
- package/src/database/client/core/schemas.ts +88 -0
- package/src/database/client/core/sync.ts +328 -0
- package/src/database/client/core/types/db.ts +15 -0
- package/src/database/client/models/__DEBUG.ts +124 -0
- package/src/database/client/models/__tests__/file.test.ts +83 -0
- package/src/database/client/models/__tests__/message.test.ts +414 -0
- package/src/database/client/models/__tests__/plugin.test.ts +81 -0
- package/src/database/client/models/__tests__/session.test.ts +254 -0
- package/src/database/client/models/__tests__/sessionGroup.test.ts +220 -0
- package/src/database/client/models/__tests__/topic.test.ts +523 -0
- package/src/database/client/models/__tests__/user.test.ts +82 -0
- package/src/database/client/models/file.ts +31 -0
- package/src/database/client/models/message.ts +268 -0
- package/src/database/client/models/plugin.ts +62 -0
- package/src/database/client/models/session.ts +271 -0
- package/src/database/client/models/sessionGroup.ts +90 -0
- package/src/database/client/models/topic.ts +244 -0
- package/src/database/client/models/user.ts +69 -0
- package/src/database/client/schemas/files.ts +39 -0
- package/src/database/client/schemas/message.ts +50 -0
- package/src/database/client/schemas/plugin.ts +12 -0
- package/src/database/client/schemas/session.ts +51 -0
- package/src/database/client/schemas/sessionGroup.ts +8 -0
- package/src/database/client/schemas/topic.ts +12 -0
- package/src/database/client/schemas/user.ts +40 -0
- package/src/database/server/core/db.ts +44 -0
- package/src/database/server/core/dbForTest.ts +45 -0
- package/src/database/server/index.ts +1 -0
- package/src/database/server/migrations/0000_init.sql +439 -0
- package/src/database/server/migrations/0001_add_client_id.sql +9 -0
- package/src/database/server/migrations/0002_amusing_puma.sql +9 -0
- package/src/database/server/migrations/0003_naive_echo.sql +46 -0
- package/src/database/server/migrations/meta/0000_snapshot.json +1583 -0
- package/src/database/server/migrations/meta/0001_snapshot.json +1636 -0
- package/src/database/server/migrations/meta/0002_snapshot.json +1630 -0
- package/src/database/server/migrations/meta/0003_snapshot.json +1823 -0
- package/src/database/server/migrations/meta/_journal.json +34 -0
- package/src/database/server/models/__tests__/file.test.ts +140 -0
- package/src/database/server/models/__tests__/message.test.ts +917 -0
- package/src/database/server/models/__tests__/plugin.test.ts +172 -0
- package/src/database/server/models/__tests__/session.test.ts +595 -0
- package/src/database/server/models/__tests__/topic.test.ts +623 -0
- package/src/database/server/models/__tests__/user.test.ts +173 -0
- package/src/database/server/models/_template.ts +44 -0
- package/src/database/server/models/file.ts +51 -0
- package/src/database/server/models/message.ts +388 -0
- package/src/database/server/models/plugin.ts +63 -0
- package/src/database/server/models/session.ts +291 -0
- package/src/database/server/models/sessionGroup.ts +69 -0
- package/src/database/server/models/topic.ts +265 -0
- package/src/database/server/models/user.ts +144 -0
- package/src/database/server/schemas/_id.ts +15 -0
- package/src/database/server/schemas/lobechat.ts +655 -0
- package/src/database/server/utils/idGenerator.test.ts +39 -0
- package/src/database/server/utils/idGenerator.ts +26 -0
- package/src/features/AgentInfo/index.tsx +70 -0
- package/src/features/AgentSetting/AgentChat/index.tsx +142 -0
- package/src/features/AgentSetting/AgentMeta/AutoGenerateAvatar.tsx +59 -0
- package/src/features/AgentSetting/AgentMeta/AutoGenerateInput.tsx +45 -0
- package/src/features/AgentSetting/AgentMeta/AutoGenerateSelect.tsx +50 -0
- package/src/features/AgentSetting/AgentMeta/BackgroundSwatches.tsx +27 -0
- package/src/features/AgentSetting/AgentMeta/index.tsx +132 -0
- package/src/features/AgentSetting/AgentModal/ModelSelect.tsx +20 -0
- package/src/features/AgentSetting/AgentModal/index.tsx +95 -0
- package/src/features/AgentSetting/AgentPlugin/AddPluginButton.tsx +49 -0
- package/src/features/AgentSetting/AgentPlugin/LoadingList.tsx +48 -0
- package/src/features/AgentSetting/AgentPlugin/LocalPluginItem.tsx +42 -0
- package/src/features/AgentSetting/AgentPlugin/PluginAction/index.tsx +36 -0
- package/src/features/AgentSetting/AgentPlugin/index.tsx +163 -0
- package/src/features/AgentSetting/AgentPrompt/TokenTag.tsx +39 -0
- package/src/features/AgentSetting/AgentPrompt/index.tsx +128 -0
- package/src/features/AgentSetting/AgentSettings.tsx +24 -0
- package/src/features/AgentSetting/AgentSettingsStore.tsx +14 -0
- package/src/features/AgentSetting/AgentTTS/SelectWithTTSPreview.tsx +120 -0
- package/src/features/AgentSetting/AgentTTS/index.tsx +122 -0
- package/src/features/AgentSetting/AgentTTS/options.ts +16 -0
- package/src/features/AgentSetting/StoreUpdater.tsx +32 -0
- package/src/features/AgentSetting/hooks/useAgentSettings.ts +31 -0
- package/src/features/AgentSetting/index.tsx +3 -0
- package/src/features/AgentSetting/store/action.ts +305 -0
- package/src/features/AgentSetting/store/index.ts +16 -0
- package/src/features/AgentSetting/store/initialState.ts +28 -0
- package/src/features/AgentSetting/store/reducers/config.ts +54 -0
- package/src/features/AgentSetting/store/reducers/meta.ts +21 -0
- package/src/features/AgentSetting/store/selectors.ts +11 -0
- package/src/features/AgentSetting/useSyncAgemtSettings.ts +14 -0
- package/src/features/AvatarWithUpload/index.tsx +30 -17
- package/src/features/ChatInput/ActionBar/Clear.tsx +49 -0
- package/src/features/ChatInput/ActionBar/FileUpload.tsx +69 -0
- package/src/features/ChatInput/ActionBar/History.tsx +70 -0
- package/src/features/ChatInput/ActionBar/ModelSwitch.tsx +20 -0
- package/src/features/ChatInput/ActionBar/Temperature.tsx +49 -0
- package/src/features/ChatInput/ActionBar/Token/TokenProgress.tsx +80 -0
- package/src/features/ChatInput/ActionBar/Token/TokenTag.tsx +149 -0
- package/src/features/ChatInput/ActionBar/Token/index.tsx +18 -0
- package/src/features/ChatInput/ActionBar/Tools/Dropdown.tsx +145 -0
- package/src/features/ChatInput/ActionBar/Tools/ToolItem.tsx +45 -0
- package/src/features/ChatInput/ActionBar/Tools/index.tsx +33 -0
- package/src/features/ChatInput/ActionBar/config.ts +33 -0
- package/src/features/ChatInput/ActionBar/index.tsx +58 -0
- package/src/features/ChatInput/STT/browser.tsx +118 -0
- package/src/features/ChatInput/STT/common.tsx +120 -0
- package/src/features/ChatInput/STT/index.tsx +20 -0
- package/src/features/ChatInput/STT/openai.tsx +129 -0
- package/src/features/ChatInput/Topic/index.tsx +41 -0
- package/src/features/ChatInput/useChatInput.ts +45 -0
- package/src/features/ChatInput/useSend.ts +44 -0
- package/src/features/Conversation/Actions/Assistant.tsx +36 -0
- package/src/features/Conversation/Actions/Error.tsx +11 -0
- package/src/features/Conversation/Actions/Fallback.tsx +13 -0
- package/src/features/Conversation/Actions/Tool.tsx +28 -0
- package/src/features/Conversation/Actions/User.tsx +20 -0
- package/src/features/Conversation/Actions/customAction.ts +37 -0
- package/src/features/Conversation/Actions/index.ts +79 -0
- package/src/features/Conversation/Error/APIKeyForm/Bedrock.tsx +80 -0
- package/src/features/Conversation/Error/APIKeyForm/ProviderApiKeyForm.tsx +79 -0
- package/src/features/Conversation/Error/APIKeyForm/ProviderAvatar.tsx +89 -0
- package/src/features/Conversation/Error/APIKeyForm/index.tsx +96 -0
- package/src/features/Conversation/Error/AccessCodeForm.tsx +63 -0
- package/src/features/Conversation/Error/ClerkLogin/index.tsx +47 -0
- package/src/features/Conversation/Error/ErrorJsonViewer.tsx +26 -0
- package/src/features/Conversation/Error/InvalidAPIKey.tsx +16 -0
- package/src/features/Conversation/Error/InvalidAccessCode.tsx +79 -0
- package/src/features/Conversation/Error/OAuthForm.tsx +97 -0
- package/src/features/Conversation/Error/OllamaBizError/InvalidOllamaModel/index.tsx +154 -0
- package/src/features/Conversation/Error/OllamaBizError/InvalidOllamaModel/useDownloadMonitor.ts +29 -0
- package/src/features/Conversation/Error/OllamaBizError/SetupGuide.tsx +221 -0
- package/src/features/Conversation/Error/OllamaBizError/index.tsx +47 -0
- package/src/features/Conversation/Error/OpenAiBizError.tsx +29 -0
- package/src/features/Conversation/Error/PluginSettings.tsx +66 -0
- package/src/features/Conversation/Error/index.tsx +117 -0
- package/src/features/Conversation/Error/style.tsx +76 -0
- package/src/features/Conversation/Extras/Assistant.test.tsx +86 -0
- package/src/features/Conversation/Extras/Assistant.tsx +51 -0
- package/src/features/Conversation/Extras/ExtraContainer.tsx +13 -0
- package/src/features/Conversation/Extras/TTS/FilePlayer.tsx +25 -0
- package/src/features/Conversation/Extras/TTS/InitPlayer.tsx +93 -0
- package/src/features/Conversation/Extras/TTS/Player.tsx +61 -0
- package/src/features/Conversation/Extras/TTS/index.tsx +32 -0
- package/src/features/Conversation/Extras/Translate.tsx +72 -0
- package/src/features/Conversation/Extras/User.tsx +36 -0
- package/src/features/Conversation/Extras/index.ts +8 -0
- package/src/features/Conversation/Extras/type.ts +5 -0
- package/src/features/Conversation/Messages/Assistant/ToolCalls/index.tsx +60 -0
- package/src/features/Conversation/Messages/Assistant/ToolCalls/style.ts +25 -0
- package/src/features/Conversation/Messages/Assistant/index.tsx +51 -0
- package/src/features/Conversation/Messages/Default.tsx +19 -0
- package/src/features/Conversation/Messages/Tool/Inspector/PluginResultJSON.tsx +24 -0
- package/src/features/Conversation/Messages/Tool/Inspector/Settings.tsx +39 -0
- package/src/features/Conversation/Messages/Tool/Inspector/index.tsx +158 -0
- package/src/features/Conversation/Messages/Tool/Inspector/style.ts +26 -0
- package/src/features/Conversation/Messages/Tool/index.tsx +70 -0
- package/src/features/Conversation/Messages/User.tsx +23 -0
- package/src/features/Conversation/Messages/components/Arguments.tsx +22 -0
- package/src/features/Conversation/Messages/index.ts +38 -0
- package/src/features/Conversation/components/AutoScroll.tsx +26 -0
- package/src/features/Conversation/components/BackBottom/index.tsx +31 -0
- package/src/features/Conversation/components/BackBottom/style.ts +36 -0
- package/src/features/Conversation/components/BubblesLoading.tsx +61 -0
- package/src/features/Conversation/components/ChatItem/ActionsBar.tsx +58 -0
- package/src/features/Conversation/components/ChatItem/HistoryDivider.tsx +26 -0
- package/src/features/Conversation/components/ChatItem/index.tsx +156 -0
- package/src/features/Conversation/components/ChatList/index.tsx +21 -0
- package/src/features/Conversation/components/InboxWelcome/AgentsSuggest.tsx +113 -0
- package/src/features/Conversation/components/InboxWelcome/QuestionSuggest.tsx +104 -0
- package/src/features/Conversation/components/InboxWelcome/index.tsx +70 -0
- package/src/features/Conversation/components/OTPInput.tsx +136 -0
- package/src/features/Conversation/components/SkeletonList.tsx +51 -0
- package/src/features/Conversation/components/VirtualizedList/index.tsx +138 -0
- package/src/features/Conversation/hooks/useChatListActionsBar.tsx +55 -0
- package/src/features/Conversation/index.tsx +30 -0
- package/src/features/Conversation/types/index.tsx +32 -0
- package/src/features/DataImporter/Error.tsx +65 -0
- package/src/features/DataImporter/FileUploading.tsx +50 -0
- package/src/features/DataImporter/Loading.tsx +125 -0
- package/src/features/DataImporter/SuccessResult.tsx +61 -0
- package/src/features/DataImporter/index.tsx +185 -0
- package/src/features/DataImporter/style.ts +17 -0
- package/src/features/DebugUI/index.tsx +36 -0
- package/src/features/FileList/EditableFileList.tsx +31 -0
- package/src/features/FileList/FileListPreviewer.tsx +17 -0
- package/src/features/FileList/index.tsx +2 -0
- package/src/features/Follow/index.tsx +64 -0
- package/src/features/MobileSwitchLoading/index.tsx +13 -0
- package/src/features/MobileTabBar/index.tsx +61 -0
- package/src/features/ModelSelect/index.tsx +69 -0
- package/src/features/ModelSwitchPanel/index.tsx +113 -0
- package/src/features/PWAInstall/index.tsx +72 -0
- package/src/features/PluginAvatar/index.tsx +28 -0
- package/src/features/PluginDetailModal/APIs.tsx +43 -0
- package/src/features/PluginDetailModal/Meta.tsx +57 -0
- package/src/features/PluginDetailModal/index.tsx +75 -0
- package/src/features/PluginDevModal/LocalForm.tsx +124 -0
- package/src/features/PluginDevModal/PluginPreview.tsx +36 -0
- package/src/features/PluginDevModal/UrlManifestForm.tsx +134 -0
- package/src/features/PluginDevModal/index.tsx +172 -0
- package/src/features/PluginSettings/PluginSettingRender.tsx +86 -0
- package/src/features/PluginSettings/index.tsx +87 -0
- package/src/features/PluginStore/AddPluginButton.tsx +47 -0
- package/src/features/PluginStore/InstalledPluginList.tsx +61 -0
- package/src/features/PluginStore/Loading.tsx +13 -0
- package/src/features/PluginStore/OnlineList.tsx +89 -0
- package/src/features/PluginStore/PluginItem/Action.tsx +116 -0
- package/src/features/PluginStore/PluginItem/EditCustomPlugin.tsx +55 -0
- package/src/features/PluginStore/PluginItem/PluginTag.tsx +58 -0
- package/src/features/PluginStore/PluginItem/index.tsx +82 -0
- package/src/features/PluginStore/index.tsx +57 -0
- package/src/features/PluginsUI/Render/BuiltinType/index.test.tsx +53 -0
- package/src/features/PluginsUI/Render/BuiltinType/index.tsx +44 -0
- package/src/features/PluginsUI/Render/DefaultType/IFrameRender/index.tsx +61 -0
- package/src/features/PluginsUI/Render/DefaultType/SystemJsRender/index.tsx +40 -0
- package/src/features/PluginsUI/Render/DefaultType/SystemJsRender/utils.ts +26 -0
- package/src/features/PluginsUI/Render/DefaultType/index.tsx +53 -0
- package/src/features/PluginsUI/Render/Loading.tsx +60 -0
- package/src/features/PluginsUI/Render/MarkdownType/index.tsx +25 -0
- package/src/features/PluginsUI/Render/StandaloneType/Iframe.tsx +163 -0
- package/src/features/PluginsUI/Render/StandaloneType/index.tsx +36 -0
- package/src/features/PluginsUI/Render/index.tsx +71 -0
- package/src/features/PluginsUI/Render/useParseContent.ts +15 -0
- package/src/features/PluginsUI/Render/utils/iframeOnReady.test.ts +75 -0
- package/src/features/PluginsUI/Render/utils/iframeOnReady.ts +25 -0
- package/src/features/PluginsUI/Render/utils/listenToPlugin.test.ts +164 -0
- package/src/features/PluginsUI/Render/utils/listenToPlugin.ts +98 -0
- package/src/features/PluginsUI/Render/utils/pluginSettings.test.ts +53 -0
- package/src/features/PluginsUI/Render/utils/pluginSettings.ts +17 -0
- package/src/features/PluginsUI/Render/utils/pluginState.test.ts +43 -0
- package/src/features/PluginsUI/Render/utils/pluginState.ts +20 -0
- package/src/features/PluginsUI/Render/utils/postMessage.test.ts +64 -0
- package/src/features/PluginsUI/Render/utils/postMessage.ts +28 -0
- package/src/features/Setting/Footer.tsx +96 -0
- package/src/features/Setting/SettingContainer.tsx +35 -0
- package/src/features/SyncStatusInspector/DisableSync.tsx +79 -0
- package/src/features/SyncStatusInspector/EnableSync.tsx +136 -0
- package/src/features/SyncStatusInspector/EnableTag.tsx +66 -0
- package/src/features/SyncStatusInspector/index.tsx +27 -0
- package/src/features/User/DataStatistics.tsx +155 -0
- package/src/features/User/PlanTag.tsx +45 -0
- package/src/features/User/UserAvatar.tsx +75 -0
- package/src/features/User/UserInfo.tsx +59 -0
- package/src/features/User/UserLoginOrSignup/Community.tsx +23 -0
- package/src/features/User/UserLoginOrSignup/index.tsx +1 -0
- package/src/features/User/UserPanel/LangButton.tsx +57 -0
- package/src/features/User/UserPanel/PanelContent.tsx +85 -0
- package/src/features/User/UserPanel/ThemeButton.tsx +70 -0
- package/src/features/User/UserPanel/UpgradeBadge.tsx +19 -0
- package/src/features/User/UserPanel/index.tsx +43 -0
- package/src/features/User/UserPanel/useMenu.tsx +239 -0
- package/src/features/User/UserPanel/useNewVersion.tsx +14 -0
- package/src/features/User/__tests__/PanelContent.test.tsx +155 -0
- package/src/features/User/__tests__/UserAvatar.test.tsx +83 -0
- package/src/features/User/__tests__/useMenu.test.tsx +146 -0
- package/src/hooks/_header.ts +23 -0
- package/src/hooks/useActiveSettingsKey.ts +20 -0
- package/src/hooks/useActiveTabKey.ts +12 -0
- package/src/hooks/useGreeting/greetingTime.ts +14 -0
- package/src/hooks/useGreeting/index.ts +16 -0
- package/src/hooks/useInterceptingRoutes.test.ts +70 -0
- package/src/hooks/useInterceptingRoutes.ts +46 -0
- package/src/hooks/useIsMobile.ts +8 -0
- package/src/hooks/useIsSubSlug.ts +12 -0
- package/src/hooks/usePWAInstall.test.ts +78 -0
- package/src/hooks/usePWAInstall.ts +39 -0
- package/src/hooks/usePlatform.test.ts +82 -0
- package/src/hooks/usePlatform.ts +32 -0
- package/src/hooks/useProviderName.ts +8 -0
- package/src/hooks/useQuery.test.ts +19 -0
- package/src/hooks/useQuery.ts +8 -0
- package/src/hooks/useQueryRoute.test.ts +86 -0
- package/src/hooks/useQueryRoute.ts +46 -0
- package/src/hooks/useSyncData.ts +50 -0
- package/src/hooks/useTTS.ts +84 -0
- package/src/hooks/useTokenCount.test.ts +41 -0
- package/src/hooks/useTokenCount.ts +20 -0
- package/src/hooks/useYamlArguments.ts +16 -0
- package/src/layout/AuthProvider/Clerk/UserUpdater.tsx +40 -0
- package/src/layout/AuthProvider/Clerk/index.tsx +26 -0
- package/src/layout/AuthProvider/Clerk/useAppearance.ts +123 -0
- package/src/layout/AuthProvider/NextAuth/UserUpdater.tsx +35 -0
- package/src/layout/AuthProvider/NextAuth/index.tsx +17 -0
- package/src/layout/AuthProvider/NoAuth/index.tsx +16 -0
- package/src/layout/AuthProvider/index.tsx +17 -0
- package/src/layout/GlobalProvider/AppTheme.tsx +127 -0
- package/src/layout/GlobalProvider/Locale.tsx +62 -0
- package/src/layout/GlobalProvider/StoreInitialization.tsx +75 -0
- package/src/layout/GlobalProvider/StyleRegistry.tsx +24 -0
- package/src/layout/GlobalProvider/index.tsx +100 -0
- package/src/libs/agent-runtime/AgentRuntime.test.ts +428 -0
- package/src/libs/agent-runtime/AgentRuntime.ts +235 -0
- package/src/libs/agent-runtime/BaseAI.ts +24 -0
- package/src/libs/agent-runtime/anthropic/index.test.ts +477 -0
- package/src/libs/agent-runtime/anthropic/index.ts +106 -0
- package/src/libs/agent-runtime/azureOpenai/index.test.ts +356 -0
- package/src/libs/agent-runtime/azureOpenai/index.ts +117 -0
- package/src/libs/agent-runtime/baichuan/index.test.ts +255 -0
- package/src/libs/agent-runtime/baichuan/index.ts +32 -0
- package/src/libs/agent-runtime/bedrock/index.test.ts +394 -0
- package/src/libs/agent-runtime/bedrock/index.ts +154 -0
- package/src/libs/agent-runtime/deepseek/index.test.ts +255 -0
- package/src/libs/agent-runtime/deepseek/index.ts +10 -0
- package/src/libs/agent-runtime/error.ts +26 -0
- package/src/libs/agent-runtime/google/index.test.ts +602 -0
- package/src/libs/agent-runtime/google/index.ts +336 -0
- package/src/libs/agent-runtime/groq/index.test.ts +320 -0
- package/src/libs/agent-runtime/groq/index.ts +25 -0
- package/src/libs/agent-runtime/index.ts +22 -0
- package/src/libs/agent-runtime/minimax/index.test.ts +275 -0
- package/src/libs/agent-runtime/minimax/index.ts +176 -0
- package/src/libs/agent-runtime/mistral/index.test.ts +331 -0
- package/src/libs/agent-runtime/mistral/index.ts +21 -0
- package/src/libs/agent-runtime/moonshot/index.test.ts +251 -0
- package/src/libs/agent-runtime/moonshot/index.ts +10 -0
- package/src/libs/agent-runtime/ollama/index.test.ts +197 -0
- package/src/libs/agent-runtime/ollama/index.ts +111 -0
- package/src/libs/agent-runtime/ollama/type.ts +8 -0
- package/src/libs/agent-runtime/openai/__snapshots__/index.test.ts.snap +101 -0
- package/src/libs/agent-runtime/openai/fixtures/openai-models.json +170 -0
- package/src/libs/agent-runtime/openai/index.test.ts +245 -0
- package/src/libs/agent-runtime/openai/index.ts +10 -0
- package/src/libs/agent-runtime/openrouter/__snapshots__/index.test.ts.snap +82 -0
- package/src/libs/agent-runtime/openrouter/fixtures/models.json +62 -0
- package/src/libs/agent-runtime/openrouter/index.test.ts +312 -0
- package/src/libs/agent-runtime/openrouter/index.ts +41 -0
- package/src/libs/agent-runtime/openrouter/type.ts +28 -0
- package/src/libs/agent-runtime/perplexity/index.test.ts +249 -0
- package/src/libs/agent-runtime/perplexity/index.ts +31 -0
- package/src/libs/agent-runtime/qwen/index.test.ts +251 -0
- package/src/libs/agent-runtime/qwen/index.ts +28 -0
- package/src/libs/agent-runtime/stepfun/index.test.ts +251 -0
- package/src/libs/agent-runtime/stepfun/index.ts +10 -0
- package/src/libs/agent-runtime/togetherai/__snapshots__/index.test.ts.snap +886 -0
- package/src/libs/agent-runtime/togetherai/fixtures/models.json +8111 -0
- package/src/libs/agent-runtime/togetherai/index.test.ts +313 -0
- package/src/libs/agent-runtime/togetherai/index.ts +47 -0
- package/src/libs/agent-runtime/togetherai/type.ts +75 -0
- package/src/libs/agent-runtime/types/chat.ts +150 -0
- package/src/libs/agent-runtime/types/index.ts +3 -0
- package/src/libs/agent-runtime/types/textToImage.ts +34 -0
- package/src/libs/agent-runtime/types/type.ts +46 -0
- package/src/libs/agent-runtime/utils/anthropicHelpers.test.ts +337 -0
- package/src/libs/agent-runtime/utils/anthropicHelpers.ts +141 -0
- package/src/libs/agent-runtime/utils/createError.ts +11 -0
- package/src/libs/agent-runtime/utils/debugStream.test.ts +70 -0
- package/src/libs/agent-runtime/utils/debugStream.ts +48 -0
- package/src/libs/agent-runtime/utils/desensitizeUrl.test.ts +47 -0
- package/src/libs/agent-runtime/utils/desensitizeUrl.ts +34 -0
- package/src/libs/agent-runtime/utils/handleOpenAIError.ts +39 -0
- package/src/libs/agent-runtime/utils/openaiCompatibleFactory/index.test.ts +717 -0
- package/src/libs/agent-runtime/utils/openaiCompatibleFactory/index.ts +294 -0
- package/src/libs/agent-runtime/utils/response.ts +12 -0
- package/src/libs/agent-runtime/utils/streams/anthropic.test.ts +427 -0
- package/src/libs/agent-runtime/utils/streams/anthropic.ts +117 -0
- package/src/libs/agent-runtime/utils/streams/azureOpenai.test.ts +537 -0
- package/src/libs/agent-runtime/utils/streams/azureOpenai.ts +89 -0
- package/src/libs/agent-runtime/utils/streams/bedrock/claude.ts +21 -0
- package/src/libs/agent-runtime/utils/streams/bedrock/common.ts +32 -0
- package/src/libs/agent-runtime/utils/streams/bedrock/index.ts +3 -0
- package/src/libs/agent-runtime/utils/streams/bedrock/llama.test.ts +196 -0
- package/src/libs/agent-runtime/utils/streams/bedrock/llama.ts +51 -0
- package/src/libs/agent-runtime/utils/streams/google-ai.test.ts +97 -0
- package/src/libs/agent-runtime/utils/streams/google-ai.ts +68 -0
- package/src/libs/agent-runtime/utils/streams/index.ts +8 -0
- package/src/libs/agent-runtime/utils/streams/minimax.ts +39 -0
- package/src/libs/agent-runtime/utils/streams/ollama.test.ts +77 -0
- package/src/libs/agent-runtime/utils/streams/ollama.ts +38 -0
- package/src/libs/agent-runtime/utils/streams/openai.test.ts +263 -0
- package/src/libs/agent-runtime/utils/streams/openai.ts +83 -0
- package/src/libs/agent-runtime/utils/streams/protocol.ts +106 -0
- package/src/libs/agent-runtime/utils/uriParser.test.ts +29 -0
- package/src/libs/agent-runtime/utils/uriParser.ts +24 -0
- package/src/libs/agent-runtime/zeroone/index.test.ts +299 -0
- package/src/libs/agent-runtime/zeroone/index.ts +11 -0
- package/src/libs/agent-runtime/zhipu/authToken.test.ts +18 -0
- package/src/libs/agent-runtime/zhipu/authToken.ts +22 -0
- package/src/libs/agent-runtime/zhipu/index.test.ts +322 -0
- package/src/libs/agent-runtime/zhipu/index.ts +130 -0
- package/src/libs/logger/index.ts +5 -0
- package/src/libs/next-auth/index.ts +46 -0
- package/src/libs/next-auth/sso-providers/auth0.ts +17 -0
- package/src/libs/next-auth/sso-providers/authentik.ts +17 -0
- package/src/libs/next-auth/sso-providers/azure-ad.ts +17 -0
- package/src/libs/next-auth/sso-providers/github.ts +15 -0
- package/src/libs/next-auth/sso-providers/index.ts +7 -0
- package/src/libs/next-auth/sso-providers/zitadel.ts +16 -0
- package/src/libs/swr/index.ts +74 -0
- package/src/libs/traces/event.test.ts +158 -0
- package/src/libs/traces/event.ts +133 -0
- package/src/libs/traces/index.test.ts +61 -0
- package/src/libs/traces/index.ts +52 -0
- package/src/libs/trpc/client.ts +65 -0
- package/src/libs/trpc/index.ts +42 -0
- package/src/libs/trpc/init.ts +26 -0
- package/src/libs/trpc/middleware/password.test.ts +88 -0
- package/src/libs/trpc/middleware/password.ts +26 -0
- package/src/libs/trpc/middleware/userAuth.test.ts +44 -0
- package/src/libs/trpc/middleware/userAuth.ts +18 -0
- package/src/locales/create.ts +51 -39
- package/src/locales/default/auth.ts +8 -0
- package/src/locales/default/chat.ts +138 -0
- package/src/locales/default/clerk.ts +782 -0
- package/src/locales/default/common.ts +214 -39
- package/src/locales/default/components.ts +16 -0
- package/src/locales/default/error.ts +134 -0
- package/src/locales/default/index.ts +35 -0
- package/src/locales/default/market.ts +32 -0
- package/src/locales/default/metadata.ts +20 -0
- package/src/locales/default/migration.ts +47 -0
- package/src/locales/default/modelProvider.ts +111 -0
- package/src/locales/default/plugin.ts +167 -0
- package/src/locales/default/portal.ts +4 -0
- package/src/locales/default/setting.ts +336 -30
- package/src/locales/default/tool.ts +10 -0
- package/src/locales/default/welcome.ts +50 -0
- package/src/locales/resources.test.ts +49 -0
- package/src/locales/resources.ts +114 -0
- package/src/middleware.ts +65 -0
- package/src/migrations/FromV0ToV1.ts +2 -4
- package/src/migrations/FromV1ToV2/fixtures/input-v1-session.json +191 -0
- package/src/migrations/FromV1ToV2/fixtures/output-v2.json +202 -0
- package/src/migrations/FromV1ToV2/index.ts +82 -0
- package/src/migrations/FromV1ToV2/migrations.test.ts +224 -0
- package/src/migrations/FromV1ToV2/types/v1.ts +78 -0
- package/src/migrations/FromV1ToV2/types/v2.ts +52 -0
- package/src/migrations/FromV2ToV3/fixtures/input-v2-session.json +72 -0
- package/src/migrations/FromV2ToV3/fixtures/output-v3-from-v1.json +203 -0
- package/src/migrations/FromV2ToV3/fixtures/output-v3.json +74 -0
- package/src/migrations/FromV2ToV3/index.ts +30 -0
- package/src/migrations/FromV2ToV3/migrations.test.ts +42 -0
- package/src/migrations/FromV2ToV3/types/v3.ts +27 -0
- package/src/migrations/FromV3ToV4/fixtures/azure-input-v3.json +79 -0
- package/src/migrations/FromV3ToV4/fixtures/azure-output-v4.json +75 -0
- package/src/migrations/FromV3ToV4/fixtures/ollama-input-v3.json +85 -0
- package/src/migrations/FromV3ToV4/fixtures/ollama-output-v4.json +85 -0
- package/src/migrations/FromV3ToV4/fixtures/openai-input-v3.json +77 -0
- package/src/migrations/FromV3ToV4/fixtures/openai-output-v4.json +77 -0
- package/src/migrations/FromV3ToV4/fixtures/openrouter-input-v3.json +82 -0
- package/src/migrations/FromV3ToV4/fixtures/openrouter-output-v4.json +85 -0
- package/src/migrations/FromV3ToV4/fixtures/output-v4-from-v1.json +203 -0
- package/src/migrations/FromV3ToV4/index.ts +102 -0
- package/src/migrations/FromV3ToV4/migrations.test.ts +195 -0
- package/src/migrations/FromV3ToV4/types/v3.ts +52 -0
- package/src/migrations/FromV3ToV4/types/v4.ts +37 -0
- package/src/migrations/FromV4ToV5/fixtures/from-v1-to-v5-output.json +245 -0
- package/src/migrations/FromV4ToV5/fixtures/function-input-v4.json +96 -0
- package/src/migrations/FromV4ToV5/fixtures/function-output-v5.json +120 -0
- package/src/migrations/FromV4ToV5/index.ts +58 -0
- package/src/migrations/FromV4ToV5/migrations.test.ts +49 -0
- package/src/migrations/FromV4ToV5/types/v4.ts +21 -0
- package/src/migrations/FromV4ToV5/types/v5.ts +27 -0
- package/src/migrations/FromV5ToV6/fixtures/from-v1-to-v6-output.json +247 -0
- package/src/migrations/FromV5ToV6/fixtures/session-input-v5.json +81 -0
- package/src/migrations/FromV5ToV6/fixtures/session-output-v6.json +85 -0
- package/src/migrations/FromV5ToV6/index.ts +61 -0
- package/src/migrations/FromV5ToV6/migrations.test.ts +50 -0
- package/src/migrations/FromV5ToV6/types/v5.ts +48 -0
- package/src/migrations/FromV5ToV6/types/v6.ts +60 -0
- package/src/migrations/FromV6ToV7/fixtures/output-v7-from-v1.json +203 -0
- package/src/migrations/FromV6ToV7/fixtures/provider-input-v6.json +103 -0
- package/src/migrations/FromV6ToV7/fixtures/provider-output-v7.json +118 -0
- package/src/migrations/FromV6ToV7/index.ts +101 -0
- package/src/migrations/FromV6ToV7/migrations.test.ts +64 -0
- package/src/migrations/FromV6ToV7/types/v6.ts +61 -0
- package/src/migrations/FromV6ToV7/types/v7.ts +71 -0
- package/src/migrations/VersionController.test.ts +88 -0
- package/src/migrations/VersionController.ts +67 -0
- package/src/migrations/index.ts +55 -7
- package/src/server/context.ts +51 -0
- package/src/server/files/s3.ts +78 -0
- package/src/server/globalConfig/index.ts +136 -0
- package/src/server/globalConfig/parseDefaultAgent.test.ts +195 -0
- package/src/server/globalConfig/parseDefaultAgent.ts +47 -0
- package/src/server/globalConfig/parseSystemAgent.test.ts +95 -0
- package/src/server/globalConfig/parseSystemAgent.ts +39 -0
- package/src/server/keyVaultsEncrypt/index.test.ts +62 -0
- package/src/server/keyVaultsEncrypt/index.ts +93 -0
- package/src/server/ld.ts +218 -0
- package/src/server/metadata.ts +96 -0
- package/src/server/mock.ts +8 -0
- package/src/server/modules/DataImporter/__tests__/fixtures/messages.json +1101 -0
- package/src/server/modules/DataImporter/__tests__/index.test.ts +954 -0
- package/src/server/modules/DataImporter/index.ts +333 -0
- package/src/server/routers/edge/config/__snapshots__/index.test.ts.snap +112 -0
- package/src/server/routers/edge/config/index.test.ts +181 -0
- package/src/server/routers/edge/config/index.ts +12 -0
- package/src/server/routers/edge/index.ts +15 -0
- package/src/server/routers/edge/upload.ts +16 -0
- package/src/server/routers/lambda/file.ts +49 -0
- package/src/server/routers/lambda/importer.ts +52 -0
- package/src/server/routers/lambda/index.ts +28 -0
- package/src/server/routers/lambda/message.ts +177 -0
- package/src/server/routers/lambda/plugin.ts +100 -0
- package/src/server/routers/lambda/session.ts +194 -0
- package/src/server/routers/lambda/sessionGroup.ts +77 -0
- package/src/server/routers/lambda/topic.ts +134 -0
- package/src/server/routers/lambda/user.ts +98 -0
- package/src/server/routers/tools/index.ts +7 -0
- package/src/server/services/user/index.ts +96 -0
- package/src/server/translation.ts +44 -0
- package/src/services/__tests__/__snapshots__/chat.test.ts.snap +116 -0
- package/src/services/__tests__/__snapshots__/tool.test.ts.snap +204 -0
- package/src/services/__tests__/chat.test.ts +966 -0
- package/src/services/__tests__/global.test.ts +100 -0
- package/src/services/__tests__/ollama.test.ts +28 -0
- package/src/services/__tests__/openai/OpenAPI_V3.json +245 -0
- package/src/services/__tests__/openai/plugin.json +22 -0
- package/src/services/__tests__/share.test.ts +131 -0
- package/src/services/__tests__/sync.test.ts +56 -0
- package/src/services/__tests__/tool.test.ts +268 -0
- package/src/services/__tests__/upload.test.ts +72 -0
- package/src/services/_auth.test.ts +192 -0
- package/src/services/_auth.ts +75 -0
- package/src/services/_header.ts +20 -0
- package/src/services/_url.ts +46 -0
- package/src/services/chat.ts +528 -0
- package/src/services/config.ts +159 -0
- package/src/services/debug.ts +40 -0
- package/src/services/file/client.test.ts +160 -0
- package/src/services/file/client.ts +65 -0
- package/src/services/file/index.ts +6 -0
- package/src/services/file/server.ts +45 -0
- package/src/services/file/type.ts +9 -0
- package/src/services/github.ts +42 -0
- package/src/services/global.ts +29 -0
- package/src/services/import/client.ts +74 -0
- package/src/services/import/index.ts +6 -0
- package/src/services/import/server.ts +115 -0
- package/src/services/market.ts +22 -0
- package/src/services/message/client.test.ts +384 -0
- package/src/services/message/client.ts +89 -0
- package/src/services/message/index.test.ts +48 -0
- package/src/services/message/index.ts +8 -0
- package/src/services/message/server.ts +106 -0
- package/src/services/message/type.ts +46 -0
- package/src/services/models.ts +37 -0
- package/src/services/ollama.ts +83 -0
- package/src/services/plugin/client.test.ts +162 -0
- package/src/services/plugin/client.ts +42 -0
- package/src/services/plugin/index.ts +6 -0
- package/src/services/plugin/server.ts +46 -0
- package/src/services/plugin/type.ts +21 -0
- package/src/services/session/client.test.ts +439 -0
- package/src/services/session/client.ts +180 -0
- package/src/services/session/index.ts +6 -0
- package/src/services/session/server.ts +148 -0
- package/src/services/session/type.ts +65 -0
- package/src/services/share.ts +61 -0
- package/src/services/sync.ts +19 -0
- package/src/services/textToImage.ts +36 -0
- package/src/services/tool.ts +144 -0
- package/src/services/topic/client.test.ts +245 -0
- package/src/services/topic/client.ts +70 -0
- package/src/services/topic/index.ts +6 -0
- package/src/services/topic/server.ts +68 -0
- package/src/services/topic/type.ts +34 -0
- package/src/services/trace.ts +28 -0
- package/src/services/upload.ts +99 -0
- package/src/services/user/client.test.ts +102 -0
- package/src/services/user/client.ts +52 -0
- package/src/services/user/index.ts +6 -0
- package/src/services/user/server.ts +28 -0
- package/src/services/user/type.ts +11 -0
- package/src/store/agent/index.ts +2 -0
- package/src/store/agent/initialState.ts +7 -0
- package/src/store/agent/selectors.ts +1 -0
- package/src/store/agent/slices/chat/__snapshots__/selectors.test.ts.snap +30 -0
- package/src/store/agent/slices/chat/action.test.ts +305 -0
- package/src/store/agent/slices/chat/action.ts +176 -0
- package/src/store/agent/slices/chat/index.ts +2 -0
- package/src/store/agent/slices/chat/initialState.ts +22 -0
- package/src/store/agent/slices/chat/selectors.test.ts +227 -0
- package/src/store/agent/slices/chat/selectors.ts +98 -0
- package/src/store/agent/store.ts +22 -0
- package/src/store/chat/helpers.test.ts +109 -0
- package/src/store/chat/helpers.ts +30 -0
- package/src/store/chat/index.ts +3 -0
- package/src/store/chat/initialState.ts +22 -0
- package/src/store/chat/selectors.ts +4 -0
- package/src/store/chat/slices/builtinTool/action.test.ts +104 -0
- package/src/store/chat/slices/builtinTool/action.ts +101 -0
- package/src/store/chat/slices/builtinTool/initialState.ts +7 -0
- package/src/store/chat/slices/builtinTool/selectors.ts +11 -0
- package/src/store/chat/slices/enchance/action.test.ts +126 -0
- package/src/store/chat/slices/enchance/action.ts +124 -0
- package/src/store/chat/slices/message/action.test.ts +1243 -0
- package/src/store/chat/slices/message/action.ts +765 -0
- package/src/store/chat/slices/message/initialState.ts +47 -0
- package/src/store/chat/slices/message/reducer.test.ts +306 -0
- package/src/store/chat/slices/message/reducer.ts +154 -0
- package/src/store/chat/slices/message/selectors.test.ts +424 -0
- package/src/store/chat/slices/message/selectors.ts +171 -0
- package/src/store/chat/slices/message/utils.ts +7 -0
- package/src/store/chat/slices/plugin/action.test.ts +967 -0
- package/src/store/chat/slices/plugin/action.ts +371 -0
- package/src/store/chat/slices/portal/action.test.ts +109 -0
- package/src/store/chat/slices/portal/action.ts +31 -0
- package/src/store/chat/slices/portal/initialState.ts +8 -0
- package/src/store/chat/slices/portal/selectors.test.ts +73 -0
- package/src/store/chat/slices/portal/selectors.ts +15 -0
- package/src/store/chat/slices/share/action.test.ts +213 -0
- package/src/store/chat/slices/share/action.ts +122 -0
- package/src/store/chat/slices/share/initialState.ts +7 -0
- package/src/store/chat/slices/topic/action.test.ts +540 -0
- package/src/store/chat/slices/topic/action.ts +330 -0
- package/src/store/chat/slices/topic/initialState.ts +28 -0
- package/src/store/chat/slices/topic/reducer.test.ts +139 -0
- package/src/store/chat/slices/topic/reducer.ts +67 -0
- package/src/store/chat/slices/topic/selectors.test.ts +95 -0
- package/src/store/chat/slices/topic/selectors.ts +35 -0
- package/src/store/chat/store.ts +50 -0
- package/src/store/chat/utils/index.ts +19 -0
- package/src/store/file/index.ts +2 -0
- package/src/store/file/initialState.ts +7 -0
- package/src/store/file/selectors.ts +7 -0
- package/src/store/file/slices/images/action.test.ts +184 -0
- package/src/store/file/slices/images/action.ts +153 -0
- package/src/store/file/slices/images/initialState.ts +13 -0
- package/src/store/file/slices/images/selectors.test.ts +78 -0
- package/src/store/file/slices/images/selectors.ts +40 -0
- package/src/store/file/slices/tts/action.test.ts +141 -0
- package/src/store/file/slices/tts/action.ts +63 -0
- package/src/store/file/slices/tts/index.ts +2 -0
- package/src/store/file/slices/tts/selectors.ts +3 -0
- package/src/store/file/store.ts +23 -0
- package/src/store/global/action.test.ts +183 -0
- package/src/store/global/action.ts +107 -0
- package/src/store/global/index.ts +1 -0
- package/src/store/global/initialState.ts +72 -0
- package/src/store/global/selectors.ts +26 -0
- package/src/store/global/store.ts +26 -0
- package/src/store/market/action.ts +82 -0
- package/src/store/market/index.ts +3 -0
- package/src/store/market/initialState.ts +19 -0
- package/src/store/market/selectors.ts +38 -0
- package/src/store/market/store.ts +48 -0
- package/src/store/middleware/createDevtools.ts +23 -0
- package/src/store/middleware/createHyperStorage/index.test.ts +341 -0
- package/src/store/middleware/createHyperStorage/index.ts +126 -0
- package/src/store/middleware/createHyperStorage/indexedDB.test.ts +64 -0
- package/src/store/middleware/createHyperStorage/indexedDB.ts +26 -0
- package/src/store/middleware/createHyperStorage/keyMapper.ts +57 -0
- package/src/store/middleware/createHyperStorage/localStorage.ts +18 -0
- package/src/store/middleware/createHyperStorage/type.ts +25 -0
- package/src/store/middleware/createHyperStorage/urlStorage.test.ts +84 -0
- package/src/store/middleware/createHyperStorage/urlStorage.ts +81 -0
- package/src/store/serverConfig/Provider.tsx +23 -0
- package/src/store/serverConfig/index.ts +3 -0
- package/src/store/serverConfig/selectors.test.ts +74 -0
- package/src/store/serverConfig/selectors.ts +14 -0
- package/src/store/serverConfig/store.test.ts +53 -0
- package/src/store/serverConfig/store.ts +66 -0
- package/src/store/session/helpers.ts +1 -0
- package/src/store/session/index.ts +1 -32
- package/src/store/session/initialState.ts +4 -6
- package/src/store/session/selectors.ts +2 -3
- package/src/store/session/slices/session/action.test.ts +232 -0
- package/src/store/session/slices/session/action.ts +226 -70
- package/src/store/session/slices/session/helpers.ts +17 -0
- package/src/store/session/slices/session/initialState.ts +18 -19
- package/src/store/session/slices/session/reducers.test.ts +79 -0
- package/src/store/session/slices/session/reducers.ts +61 -0
- package/src/store/session/slices/session/selectors/index.ts +2 -20
- package/src/store/session/slices/session/selectors/list.test.ts +126 -0
- package/src/store/session/slices/session/selectors/list.ts +45 -51
- package/src/store/session/slices/session/selectors/meta.test.ts +108 -0
- package/src/store/session/slices/session/selectors/meta.ts +45 -0
- package/src/store/session/slices/sessionGroup/action.test.ts +133 -0
- package/src/store/session/slices/sessionGroup/action.ts +73 -0
- package/src/store/session/slices/sessionGroup/initialState.ts +12 -0
- package/src/store/session/slices/sessionGroup/reducer.test.ts +86 -0
- package/src/store/session/slices/sessionGroup/reducer.ts +56 -0
- package/src/store/session/slices/sessionGroup/selectors.ts +11 -0
- package/src/store/session/store.ts +25 -9
- package/src/store/tool/helpers.ts +28 -0
- package/src/store/tool/index.ts +2 -0
- package/src/store/tool/initialState.ts +13 -0
- package/src/store/tool/selectors/index.ts +5 -0
- package/src/store/tool/selectors/tool.test.ts +247 -0
- package/src/store/tool/selectors/tool.ts +123 -0
- package/src/store/tool/slices/builtin/action.test.ts +87 -0
- package/src/store/tool/slices/builtin/action.ts +54 -0
- package/src/store/tool/slices/builtin/index.ts +2 -0
- package/src/store/tool/slices/builtin/initialState.ts +12 -0
- package/src/store/tool/slices/builtin/selectors.test.ts +53 -0
- package/src/store/tool/slices/builtin/selectors.ts +20 -0
- package/src/store/tool/slices/customPlugin/action.test.ts +141 -0
- package/src/store/tool/slices/customPlugin/action.ts +88 -0
- package/src/store/tool/slices/customPlugin/index.ts +3 -0
- package/src/store/tool/slices/customPlugin/initialState.ts +17 -0
- package/src/store/tool/slices/customPlugin/reducers/customPluginList.ts +56 -0
- package/src/store/tool/slices/customPlugin/selectors.test.ts +70 -0
- package/src/store/tool/slices/customPlugin/selectors.ts +9 -0
- package/src/store/tool/slices/plugin/__snapshots__/action.test.ts.snap +15 -0
- package/src/store/tool/slices/plugin/action.test.ts +196 -0
- package/src/store/tool/slices/plugin/action.ts +76 -0
- package/src/store/tool/slices/plugin/index.ts +3 -0
- package/src/store/tool/slices/plugin/initialState.ts +16 -0
- package/src/store/tool/slices/plugin/reducers/manifest.ts +36 -0
- package/src/store/tool/slices/plugin/selectors.test.ts +197 -0
- package/src/store/tool/slices/plugin/selectors.ts +80 -0
- package/src/store/tool/slices/store/action.test.ts +392 -0
- package/src/store/tool/slices/store/action.ts +112 -0
- package/src/store/tool/slices/store/index.ts +3 -0
- package/src/store/tool/slices/store/initialState.ts +17 -0
- package/src/store/tool/slices/store/selectors.test.ts +50 -0
- package/src/store/tool/slices/store/selectors.ts +32 -0
- package/src/store/tool/store.ts +32 -0
- package/src/store/user/helpers.ts +9 -0
- package/src/store/user/index.ts +1 -0
- package/src/store/user/initialState.ts +22 -0
- package/src/store/user/selectors.ts +13 -0
- package/src/store/user/slices/auth/action.test.ts +202 -0
- package/src/store/user/slices/auth/action.ts +63 -0
- package/src/store/user/slices/auth/initialState.ts +28 -0
- package/src/store/user/slices/auth/selectors.test.ts +143 -0
- package/src/store/user/slices/auth/selectors.ts +48 -0
- package/src/store/user/slices/common/action.test.ts +271 -0
- package/src/store/user/slices/common/action.ts +129 -0
- package/src/store/user/slices/common/initialState.ts +15 -0
- package/src/store/user/slices/modelList/action.test.ts +363 -0
- package/src/store/user/slices/modelList/action.ts +209 -0
- package/src/store/user/slices/modelList/initialState.ts +15 -0
- package/src/store/user/slices/modelList/reducers/customModelCard.test.ts +204 -0
- package/src/store/user/slices/modelList/reducers/customModelCard.ts +64 -0
- package/src/store/user/slices/modelList/selectors/index.ts +3 -0
- package/src/store/user/slices/modelList/selectors/keyVaults.test.ts +201 -0
- package/src/store/user/slices/modelList/selectors/keyVaults.ts +45 -0
- package/src/store/user/slices/modelList/selectors/modelConfig.test.ts +200 -0
- package/src/store/user/slices/modelList/selectors/modelConfig.ts +85 -0
- package/src/store/user/slices/modelList/selectors/modelProvider.test.ts +145 -0
- package/src/store/user/slices/modelList/selectors/modelProvider.ts +147 -0
- package/src/store/user/slices/preference/action.test.ts +43 -0
- package/src/store/user/slices/preference/action.ts +35 -0
- package/src/store/user/slices/preference/initialState.ts +13 -0
- package/src/store/user/slices/preference/selectors.test.ts +82 -0
- package/src/store/user/slices/preference/selectors.ts +19 -0
- package/src/store/user/slices/settings/action.test.ts +153 -0
- package/src/store/user/slices/settings/action.ts +115 -0
- package/src/store/user/slices/settings/initialState.ts +15 -0
- package/src/store/user/slices/settings/selectors/__snapshots__/settings.test.ts.snap +109 -0
- package/src/store/user/slices/settings/selectors/general.test.ts +45 -0
- package/src/store/user/slices/settings/selectors/general.ts +40 -0
- package/src/store/user/slices/settings/selectors/index.ts +3 -0
- package/src/store/user/slices/settings/selectors/settings.test.ts +156 -0
- package/src/store/user/slices/settings/selectors/settings.ts +52 -0
- package/src/store/user/slices/settings/selectors/systemAgent.ts +18 -0
- package/src/store/user/slices/sync/action.test.ts +164 -0
- package/src/store/user/slices/sync/action.ts +97 -0
- package/src/store/user/slices/sync/initialState.ts +13 -0
- package/src/store/user/slices/sync/selectors.ts +20 -0
- package/src/store/user/store.ts +42 -0
- package/src/styles/antdOverride.ts +8 -23
- package/src/styles/global.ts +39 -14
- package/src/styles/index.ts +6 -1
- package/src/styles/mobileHeader.ts +15 -0
- package/src/tools/dalle/Render/Item/EditMode.tsx +66 -0
- package/src/tools/dalle/Render/Item/Error.tsx +50 -0
- package/src/tools/dalle/Render/Item/Image.tsx +44 -0
- package/src/tools/dalle/Render/Item/ImageFileItem.tsx +77 -0
- package/src/tools/dalle/Render/Item/index.tsx +88 -0
- package/src/tools/dalle/Render/ToolBar.tsx +55 -0
- package/src/tools/dalle/Render/index.tsx +51 -0
- package/src/tools/dalle/index.ts +92 -0
- package/src/tools/index.ts +11 -0
- package/src/tools/portals.ts +3 -0
- package/src/tools/renders.ts +14 -0
- package/src/types/agent/index.ts +83 -0
- package/src/types/exportConfig.ts +119 -19
- package/src/types/fetch.ts +36 -0
- package/src/types/files.ts +42 -0
- package/src/types/i18next.d.ts +1 -1
- package/src/types/importer.ts +128 -0
- package/src/types/llm.ts +92 -12
- package/src/types/locale.ts +4 -0
- package/src/types/market.ts +20 -0
- package/src/types/message/index.ts +82 -0
- package/src/types/message/tools.ts +65 -0
- package/src/types/message/translate.ts +4 -0
- package/src/types/meta.ts +24 -12
- package/src/types/next-auth.d.ts +23 -0
- package/src/types/openai/chat.ts +128 -0
- package/src/types/openai/functionCall.ts +10 -0
- package/src/types/openai/image.ts +34 -0
- package/src/types/openai/plugin.ts +57 -0
- package/src/types/serverConfig.ts +32 -0
- package/src/types/service.ts +7 -0
- package/src/types/session/agentSession.ts +35 -0
- package/src/types/session/index.ts +10 -0
- package/src/types/session/sessionGroup.ts +24 -0
- package/src/types/share.ts +7 -0
- package/src/types/sync.ts +41 -0
- package/src/types/tool/builtin.ts +47 -0
- package/src/types/tool/dalle.ts +12 -0
- package/src/types/tool/index.ts +16 -0
- package/src/types/tool/plugin.ts +35 -0
- package/src/types/tool/tool.ts +10 -0
- package/src/types/topic.ts +9 -0
- package/src/types/trace/action.ts +31 -0
- package/src/types/trace/index.ts +1 -0
- package/src/types/user/index.ts +44 -0
- package/src/types/user/settings/general.ts +12 -0
- package/src/types/user/settings/index.ts +32 -0
- package/src/types/user/settings/keyVaults.ts +40 -0
- package/src/types/user/settings/modelProvider.ts +34 -0
- package/src/types/user/settings/sync.ts +10 -0
- package/src/types/user/settings/systemAgent.ts +12 -0
- package/src/types/user/settings/tool.ts +5 -0
- package/src/types/user/settings/tts.ts +10 -0
- package/src/utils/__snapshots__/parseModels.test.ts.snap +63 -0
- package/src/utils/basePath.ts +3 -0
- package/src/utils/client/switchLang.test.ts +34 -0
- package/src/utils/client/switchLang.ts +10 -0
- package/src/utils/compass.ts +1 -5
- package/src/utils/compressImage.test.ts +59 -0
- package/src/utils/compressImage.ts +29 -0
- package/src/utils/config.ts +108 -0
- package/src/utils/cookie.ts +10 -0
- package/src/utils/difference.test.ts +46 -0
- package/src/utils/difference.ts +26 -0
- package/src/utils/env.ts +3 -0
- package/src/utils/fetch.test.ts +534 -0
- package/src/utils/fetch.ts +371 -105
- package/src/utils/filter.ts +1 -1
- package/src/utils/format.test.ts +75 -0
- package/src/utils/format.ts +48 -0
- package/src/utils/genOG.ts +20 -0
- package/src/utils/imageToBase64.ts +37 -0
- package/src/utils/jwt.test.ts +27 -0
- package/src/utils/jwt.ts +37 -0
- package/src/utils/keyboard.ts +13 -0
- package/src/utils/localStorage.ts +38 -0
- package/src/utils/locale.ts +16 -0
- package/src/utils/merge.ts +11 -0
- package/src/utils/parseMarkdown.ts +9 -0
- package/src/utils/parseModels.test.ts +290 -0
- package/src/utils/parseModels.ts +156 -0
- package/src/utils/platform.test.ts +83 -0
- package/src/utils/platform.ts +55 -0
- package/src/utils/responsive.ts +40 -0
- package/src/utils/safeParseJSON.test.ts +71 -0
- package/src/utils/safeParseJSON.ts +12 -0
- package/src/utils/storeDebug.ts +11 -0
- package/src/utils/tokenizer.ts +5 -0
- package/src/utils/toolCall.ts +21 -0
- package/src/utils/trace.ts +21 -0
- package/src/utils/url.test.ts +51 -0
- package/src/utils/url.ts +23 -0
- package/src/utils/uuid.ts +4 -4
- package/src/utils/zustand.ts +8 -0
- package/tests/setup-db.ts +7 -0
- package/tests/setup.ts +35 -0
- package/tests/utils.tsx +11 -0
- package/tsconfig.json +19 -4
- package/vercel.json +3 -0
- package/vitest.config.ts +33 -3
- package/vitest.server.config.ts +23 -0
- package/.github/ISSUE_TEMPLATE/3_question.yml +0 -15
- package/.github/ISSUE_TEMPLATE/4_other.md +0 -7
- package/.github/dependabot.yml +0 -17
- package/.github/workflows/auto-merge.yml +0 -32
- package/.github/workflows/contributor-help.yml +0 -29
- package/.github/workflows/issue-check-inactive.yml +0 -22
- package/.github/workflows/issue-remove-inactive.yml +0 -25
- package/.gitpod.yml +0 -3
- package/.husky/commit-msg +0 -4
- package/locales/en_US/common.json +0 -41
- package/locales/en_US/setting.json +0 -109
- package/locales/zh_CN/common.json +0 -41
- package/locales/zh_CN/setting.json +0 -109
- package/public/next.svg +0 -1
- package/public/vercel.svg +0 -1
- package/scripts/genDefaultLocale.ts +0 -18
- package/scripts/genResources.ts +0 -51
- package/scripts/toc.ts +0 -7
- package/src/const/modelTokens.ts +0 -8
- package/src/features/FolderPanel/index.tsx +0 -55
- package/src/features/SideBar/index.tsx +0 -35
- package/src/helpers/prompt.test.ts +0 -36
- package/src/helpers/prompt.ts +0 -36
- package/src/layout/index.tsx +0 -57
- package/src/layout/style.ts +0 -18
- package/src/locales/index.ts +0 -5
- package/src/locales/options.ts +0 -19
- package/src/locales/resources/en_US.ts +0 -7
- package/src/locales/resources/index.ts +0 -13
- package/src/locales/resources/zh_CN.ts +0 -9
- package/src/pages/_app.page.tsx +0 -13
- package/src/pages/_document.page.tsx +0 -70
- package/src/pages/api/LangChainStream.ts +0 -95
- package/src/pages/api/chain.api.ts +0 -17
- package/src/pages/api/openai.api.ts +0 -31
- package/src/pages/chat/SessionList/Header.tsx +0 -56
- package/src/pages/chat/SessionList/List/SessionItem.tsx +0 -90
- package/src/pages/chat/SessionList/List/index.tsx +0 -31
- package/src/pages/chat/SessionList/List/style.ts +0 -77
- package/src/pages/chat/SessionList/index.tsx +0 -18
- package/src/pages/chat/[id]/Config/ConfigCell.tsx +0 -68
- package/src/pages/chat/[id]/Config/ReadMode.tsx +0 -63
- package/src/pages/chat/[id]/Config/index.tsx +0 -79
- package/src/pages/chat/[id]/Conversation/ChatList.tsx +0 -36
- package/src/pages/chat/[id]/Conversation/Input.tsx +0 -61
- package/src/pages/chat/[id]/Conversation/index.tsx +0 -32
- package/src/pages/chat/[id]/Header.tsx +0 -86
- package/src/pages/chat/[id]/edit/AgentConfig.tsx +0 -95
- package/src/pages/chat/[id]/edit/AgentMeta.tsx +0 -117
- package/src/pages/chat/[id]/edit/FormItem.tsx +0 -26
- package/src/pages/chat/[id]/edit/Prompt.tsx +0 -68
- package/src/pages/chat/[id]/edit/index.page.tsx +0 -62
- package/src/pages/chat/[id]/edit/style.ts +0 -42
- package/src/pages/chat/[id]/index.page.tsx +0 -40
- package/src/pages/chat/index.page.tsx +0 -1
- package/src/pages/chat/layout.tsx +0 -51
- package/src/pages/index.page.tsx +0 -1
- package/src/pages/setting/Header.tsx +0 -27
- package/src/pages/setting/SettingForm.tsx +0 -96
- package/src/pages/setting/ThemeSwatches/ThemeSwatchesNeutral.tsx +0 -33
- package/src/pages/setting/ThemeSwatches/ThemeSwatchesPrimary.tsx +0 -33
- package/src/pages/setting/index.page.tsx +0 -41
- package/src/prompts/agent.ts +0 -65
- package/src/services/chatModel.ts +0 -34
- package/src/services/langChain.ts +0 -18
- package/src/services/url.ts +0 -8
- package/src/store/middleware/createHashStorage.ts +0 -49
- package/src/store/session/slices/agentConfig/action.ts +0 -226
- package/src/store/session/slices/agentConfig/initialState.ts +0 -34
- package/src/store/session/slices/agentConfig/selectors.ts +0 -54
- package/src/store/session/slices/chat/action.ts +0 -210
- package/src/store/session/slices/chat/index.ts +0 -3
- package/src/store/session/slices/chat/initialState.ts +0 -12
- package/src/store/session/slices/chat/messageReducer.test.ts +0 -70
- package/src/store/session/slices/chat/messageReducer.ts +0 -84
- package/src/store/session/slices/chat/selectors.ts +0 -83
- package/src/store/session/slices/session/index.ts +0 -3
- package/src/store/session/slices/session/reducers/session.test.ts +0 -456
- package/src/store/session/slices/session/reducers/session.ts +0 -113
- package/src/store/session/slices/session/selectors/chat.ts +0 -4
- package/src/store/settings/action.ts +0 -36
- package/src/store/settings/index.ts +0 -23
- package/src/store/settings/initialState.ts +0 -27
- package/src/store/settings/selectors.ts +0 -17
- package/src/store/settings/store.ts +0 -13
- package/src/types/chatMessage.ts +0 -46
- package/src/types/langchain.ts +0 -34
- package/src/types/openai.ts +0 -62
- package/src/types/session.ts +0 -59
- package/src/utils/VersionController.test.ts +0 -90
- package/src/utils/VersionController.ts +0 -64
- /package/src/{pages/setting → app/(main)/settings/common/features/Theme}/ThemeSwatches/index.ts +0 -0
- /package/src/store/{session/slices/agentConfig → file/slices/images}/index.ts +0 -0
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
# Best Practices for State Management
|
|
2
|
+
|
|
3
|
+
LobeChat differs from traditional CRUD web applications in that it involves a large amount of rich interactive capabilities. Therefore, it is crucial to design a data flow architecture that is easy to develop and maintain. This document will introduce the best practices for data flow management in LobeChat.
|
|
4
|
+
|
|
5
|
+
## TOC
|
|
6
|
+
|
|
7
|
+
- [Key Concepts](#key-concepts)
|
|
8
|
+
- [Hierarchical Structure](#hierarchical-structure)
|
|
9
|
+
- [Best Practices for LobeChat SessionStore Directory Structure](#best-practices-for-lobechat-sessionstore-directory-structure)
|
|
10
|
+
- [Implementation of SessionStore](#implementation-of-sessionstore)
|
|
11
|
+
|
|
12
|
+
## Key Concepts
|
|
13
|
+
|
|
14
|
+
| Concept | Explanation |
|
|
15
|
+
| -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
16
|
+
| store | The store contains the application's state and actions. It allows access to and modification of the state during application rendering. |
|
|
17
|
+
| state | State refers to the data of the application, storing the current state of the application. Any change in the state will **trigger a re-rendering** to reflect the new state. |
|
|
18
|
+
| action | An action is an operation function that describes the interactive events occurring in the application. Actions are typically triggered by user interactions, network requests, or timers. Actions can be **synchronous** or **asynchronous**. |
|
|
19
|
+
| reducer | A reducer is a pure function that takes the current state and action as parameters and returns a new state. It is used to update the application's state based on the action type. A reducer is a pure function with no side effects, therefore it is always a **synchronous** function. |
|
|
20
|
+
| selector | A selector is a function used to retrieve specific data from the application's state. It takes the application's state as a parameter and returns computed or transformed data. Selectors can combine parts of the state or multiple states to generate derived data. Selectors are commonly used to map the application's state to a component's props for the component's use. |
|
|
21
|
+
| slice | A slice is a concept used to express a part of the data model state. It specifies a state slice and its related state, action, reducer, and selector. Using slices, a large store can be divided into smaller, maintainable subtypes. |
|
|
22
|
+
|
|
23
|
+
## Hierarchical Structure
|
|
24
|
+
|
|
25
|
+
The structure of the Store can vary greatly depending on the complexity:
|
|
26
|
+
|
|
27
|
+
- **Low Complexity**: Generally includes 2 to 5 states and 3 to 4 actions. In this case, the structure usually consists of a `store.ts` and an `initialState.ts`.
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
DataFill/store
|
|
31
|
+
├── index.ts
|
|
32
|
+
└── initialState.ts
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
- **Moderate Complexity**: Typically involves 5 to 15 states and 5 to 10 actions, with the possibility of selectors for derived states and reducers to simplify data changes. The structure usually includes a `store.ts`, an `initialState.ts`, and a `selectors.ts`/`reducer.ts`.
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
IconPicker/store
|
|
39
|
+
├── index.ts
|
|
40
|
+
├── initialState.ts
|
|
41
|
+
├── selectors.ts
|
|
42
|
+
└── store.ts
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
SortableList/store
|
|
47
|
+
├── index.ts
|
|
48
|
+
├── initialState.ts
|
|
49
|
+
├── listDataReducer.ts
|
|
50
|
+
└── store.ts
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
- **Medium Complexity**: Involves 15 to 30 states and 10 to 20 actions, often requiring the use of multiple slices to manage different actions. The following code represents the internal data flow of the `SortableTree` component:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
SortableTree/store
|
|
57
|
+
├── index.ts
|
|
58
|
+
├── initialState.ts
|
|
59
|
+
├── selectors.ts
|
|
60
|
+
├── slices
|
|
61
|
+
│ ├── crudSlice.ts
|
|
62
|
+
│ ├── dndSlice.ts
|
|
63
|
+
│ └── selectionSlice.ts
|
|
64
|
+
├── store.ts
|
|
65
|
+
└── treeDataReducer.ts
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
- **High Complexity**: Involves over 30 states and 20 actions, requiring modular cohesion using slices. Each slice declares its own initState, actions, reducers, and selectors.
|
|
69
|
+
|
|
70
|
+
The directory structure of the previous version of SessionStore for LobeChat, with high complexity, implements a large amount of business logic. However, with the modularization of slices and the fractal architecture, it is easy to find the corresponding modules, making it easy to maintain and iterate on new features.
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
LobeChat SessionStore
|
|
74
|
+
├── index.ts
|
|
75
|
+
├── initialState.ts
|
|
76
|
+
├── selectors.ts
|
|
77
|
+
├── slices
|
|
78
|
+
│ ├── agentConfig
|
|
79
|
+
│ │ ├── action.ts
|
|
80
|
+
│ │ ├── index.ts
|
|
81
|
+
│ │ ├── initialState.ts
|
|
82
|
+
│ │ └── selectors.ts
|
|
83
|
+
│ ├── chat
|
|
84
|
+
│ │ ├── actions
|
|
85
|
+
│ │ │ ├── index.ts
|
|
86
|
+
│ │ │ ├── message.ts
|
|
87
|
+
│ │ │ └── topic.ts
|
|
88
|
+
│ │ ├── index.ts
|
|
89
|
+
│ │ ├── initialState.ts
|
|
90
|
+
│ │ ├── reducers
|
|
91
|
+
│ │ │ ├── message.ts
|
|
92
|
+
│ │ │ └── topic.ts
|
|
93
|
+
│ │ ├── selectors
|
|
94
|
+
│ │ │ ├── chat.ts
|
|
95
|
+
│ │ │ ├── index.ts
|
|
96
|
+
│ │ │ ├── token.ts
|
|
97
|
+
│ │ │ ├── topic.ts
|
|
98
|
+
│ │ │ └── utils.ts
|
|
99
|
+
│ │ └── utils.ts
|
|
100
|
+
│ └── session
|
|
101
|
+
│ ├── action.ts
|
|
102
|
+
│ ├── index.ts
|
|
103
|
+
│ ├── initialState.ts
|
|
104
|
+
│ ├── reducers
|
|
105
|
+
│ │ └── session.ts
|
|
106
|
+
│ └── selectors
|
|
107
|
+
│ ├── export.ts
|
|
108
|
+
│ ├── index.ts
|
|
109
|
+
│ └── list.ts
|
|
110
|
+
└── store.ts
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Based on the provided directory structure of LobeChat SessionStore, we can update the previous document and convert the examples to the implementation of LobeChat's SessionStore. The following is a portion of the updated document:
|
|
114
|
+
|
|
115
|
+
### Best Practices for LobeChat SessionStore Directory Structure
|
|
116
|
+
|
|
117
|
+
In the LobeChat application, session management is a complex functional module, so we use the Slice pattern to organize the data flow. Below is the directory structure of LobeChat SessionStore, where each directory and file has its specific purpose:
|
|
118
|
+
|
|
119
|
+
```bash
|
|
120
|
+
src/store/session
|
|
121
|
+
├── helpers.ts # Helper functions
|
|
122
|
+
├── hooks # Custom React hooks
|
|
123
|
+
│ ├── index.ts # Export file for hooks
|
|
124
|
+
│ ├── useEffectAfterHydrated.ts # Hook for effects after session hydration
|
|
125
|
+
│ ├── useOnFinishHydrationSession.ts # Hook for session hydration completion
|
|
126
|
+
│ ├── useSessionChatInit.ts # Hook for session chat initialization
|
|
127
|
+
│ └── useSessionHydrated.ts # Hook for session hydration status
|
|
128
|
+
├── index.ts # Aggregated export file for SessionStore
|
|
129
|
+
├── initialState.ts # Aggregated initialState for all slices
|
|
130
|
+
├── selectors.ts # Selectors exported from various slices
|
|
131
|
+
├── slices # Separated functional modules
|
|
132
|
+
│ ├── agent # State and operations related to agents
|
|
133
|
+
│ │ ├── action.ts # Action definitions related to agents
|
|
134
|
+
│ │ ├── index.ts # Entry file for agent slice
|
|
135
|
+
│ │ ├── selectors.test.ts # Tests for agent-related selectors
|
|
136
|
+
│ │ └── selectors.ts # Selector definitions related to agents
|
|
137
|
+
│ └── session # State and operations related to sessions
|
|
138
|
+
│ ├── action.test.ts # Tests for session-related actions
|
|
139
|
+
│ ├── action.ts # Action definitions related to sessions
|
|
140
|
+
│ ├── helpers.ts # Helper functions related to sessions
|
|
141
|
+
│ ├── initialState.ts # Initial state for session slice
|
|
142
|
+
│ └── selectors # Session-related selectors and their tests
|
|
143
|
+
│ ├── export.ts # Aggregated export for session selectors
|
|
144
|
+
│ ├── index.ts # Entry file for session selectors
|
|
145
|
+
│ ├── list.test.ts # Tests for list selectors
|
|
146
|
+
│ └── list.ts # Definitions for list-related selectors
|
|
147
|
+
└── store.ts # Creation and usage of SessionStore
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
## Implementation of SessionStore
|
|
151
|
+
|
|
152
|
+
In LobeChat, the SessionStore is designed as the core module for managing session state and logic. It consists of multiple Slices, with each Slice managing a relevant portion of state and logic. Below is a simplified example of the SessionStore implementation:
|
|
153
|
+
|
|
154
|
+
#### store.ts
|
|
155
|
+
|
|
156
|
+
```ts
|
|
157
|
+
import { PersistOptions, devtools, persist, subscribeWithSelector } from 'zustand/middleware';
|
|
158
|
+
import { shallow } from 'zustand/shallow';
|
|
159
|
+
import { devtools } from 'zustand/middleware';
|
|
160
|
+
import { createWithEqualityFn } from 'zustand/traditional';
|
|
161
|
+
|
|
162
|
+
import { SessionStoreState, initialState } from './initialState';
|
|
163
|
+
import { AgentAction, createAgentSlice } from './slices/agent/action';
|
|
164
|
+
import { SessionAction, createSessionSlice } from './slices/session/action';
|
|
165
|
+
|
|
166
|
+
// =============== Aggregate createStoreFn ============ //
|
|
167
|
+
|
|
168
|
+
export type SessionStore = SessionAction & AgentAction & SessionStoreState;
|
|
169
|
+
const createStore: StateCreator<SessionStore, [['zustand/devtools', never]]> = (...parameters) => ({
|
|
170
|
+
...initialState,
|
|
171
|
+
...createAgentSlice(...parameters),
|
|
172
|
+
...createSessionSlice(...parameters),
|
|
173
|
+
});
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
// =============== Implement useStore ============ //
|
|
178
|
+
|
|
179
|
+
export const useSessionStore = createWithEqualityFn<SessionStore>()(
|
|
180
|
+
persist(
|
|
181
|
+
subscribeWithSelector(
|
|
182
|
+
devtools(createStore, {
|
|
183
|
+
name: 'LobeChat_Session' + (isDev ? '_DEV' : ''),
|
|
184
|
+
}),
|
|
185
|
+
),
|
|
186
|
+
persistOptions,
|
|
187
|
+
),
|
|
188
|
+
shallow,
|
|
189
|
+
);
|
|
190
|
+
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
In this `store.ts` file, we create a `useSessionStore` hook that uses the `zustand` library to create a global state manager. We merge the initialState and the state and actions of each Slice to create a complete SessionStore.
|
|
194
|
+
|
|
195
|
+
#### slices/session/action.ts
|
|
196
|
+
|
|
197
|
+
```ts
|
|
198
|
+
import { StateCreator } from 'zustand';
|
|
199
|
+
|
|
200
|
+
import { SessionStore } from '@/store/session';
|
|
201
|
+
|
|
202
|
+
export interface SessionActions {
|
|
203
|
+
/**
|
|
204
|
+
* A custom hook that uses SWR to fetch sessions data.
|
|
205
|
+
*/
|
|
206
|
+
useFetchSessions: () => SWRResponse<any>;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
export const createSessionSlice: StateCreator<
|
|
210
|
+
SessionStore,
|
|
211
|
+
[['zustand/devtools', never]],
|
|
212
|
+
[],
|
|
213
|
+
SessionAction
|
|
214
|
+
> = (set, get) => ({
|
|
215
|
+
useFetchSessions: () => {
|
|
216
|
+
// ...logic for initializing sessions
|
|
217
|
+
},
|
|
218
|
+
// ...implementation of other actions
|
|
219
|
+
});
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
In the `action.ts` file, we define a `SessionActions` interface to describe session-related actions and implement a `useFetchSessions` function to create these actions. Then, we merge these actions with the initial state to form the session-related Slice.
|
|
223
|
+
|
|
224
|
+
Through this layered and modular approach, we can ensure that LobeChat's SessionStore is clear, maintainable, and easy to extend and test.
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
# 状态管理最佳实践
|
|
2
|
+
|
|
3
|
+
LobeChat 不同于传统 CRUD 的网页,存在大量的富交互能力,如何设计一个易于开发与易于维护的数据流架构非常重要。本篇文档将介绍 LobeChat 中的数据流管理最佳实践。
|
|
4
|
+
|
|
5
|
+
## TOC
|
|
6
|
+
|
|
7
|
+
- [概念要素](#概念要素)
|
|
8
|
+
- [结构分层](#结构分层)
|
|
9
|
+
- [LobeChat SessionStore 目录结构最佳实践](#lobechat-sessionstore-目录结构最佳实践)
|
|
10
|
+
- [SessionStore 的实现](#sessionstore-的实现)
|
|
11
|
+
|
|
12
|
+
## 概念要素
|
|
13
|
+
|
|
14
|
+
| 概念名词 | 解释 |
|
|
15
|
+
| -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
16
|
+
| store | 状态库 (store),包含存储应用的状态、动作。允许在应用渲染中访问和修改状态。 |
|
|
17
|
+
| state | 状态 (state) 是指应用程序的数据,存储了应用程序的当前状态,状态的变化**一定会触发应用的重新渲染**,以反映新的状态。 |
|
|
18
|
+
| action | 动作 (action) 是一个操作函数,它描述了应用程序中发生的交互事件。动作通常是由用户交互、网络请求或定时器等触发。 action 可以是**同步**的,也可以是**异步**的。 |
|
|
19
|
+
| reducer | 归约器 (reducer) 是一个纯函数,它接收当前状态和动作作为参数,并返回一个新的状态。它用于根据动作类型来更新应用程序的状态。Reducer 是一个纯函数,不存在副作用,因此一定是 **同步** 函数。 |
|
|
20
|
+
| selector | 选择器 (selector) 是一个函数,用于从应用程序的状态中获取特定的数据。它接收应用程序的状态作为参数,并返回经过计算或转换后的数据。Selector 可以将状态的一部分或多个状态组合起来,以生成派生的数据。Selector 通常用于将应用程序的状态映射到组件的 props,以供组件使用。 |
|
|
21
|
+
| slice | 切片 (slice) 是一个概念,用于表达数据模型状态的一部分。它指定了一个状态切片(slice),以及与该切片相关的 state、action、reducer 和 selector。使用 Slice 可以将大型的 Store 拆分为更小的、可维护的子类型。 |
|
|
22
|
+
|
|
23
|
+
## 结构分层
|
|
24
|
+
|
|
25
|
+
在不同的复杂度下,我们可以将 Store 的结构组织可以由很大的不同:
|
|
26
|
+
|
|
27
|
+
- **较低复杂度**:一般包含 2\~5 个 state 、3 \~ 4 个 action。此时的结构一般直接一个 `store.ts` + 一个 `initialState.ts` 即可。
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
DataFill/store
|
|
31
|
+
├── index.ts
|
|
32
|
+
└── initialState.ts
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
- **一般复杂度** :一般复杂度存在 5 \~ 15 个 state、 5 \~ 10 个 action,可能会存在 selector 实现派生状态,也有可能存在 reducer 简化部分数据变更的复杂度。此时的结构一般为一个 `store.ts` + 一个 `initialState.ts` + 一个 `selectors.ts`/`reducer.ts`。
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
IconPicker/store
|
|
39
|
+
├── index.ts
|
|
40
|
+
├── initialState.ts
|
|
41
|
+
├── selectors.ts
|
|
42
|
+
└── store.ts
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
SortableList/store
|
|
47
|
+
├── index.ts
|
|
48
|
+
├── initialState.ts
|
|
49
|
+
├── listDataReducer.ts
|
|
50
|
+
└── store.ts
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
- **中等复杂度** : 中等复杂度存在 15 \~ 30 个 state、 10 \~ 20 个 action,大概率会存在 selector 来聚合派生状态,大概率存在 reducer 简化部分数据变更的复杂度。
|
|
54
|
+
|
|
55
|
+
此时结构,用单一的 action store 已经较难维护,往往会拆解出来多个 slice 用于管理不同的 action。 下方的代码代表了 `SortableTree` 组件的内部数据流:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
SortableTree/store
|
|
59
|
+
├── index.ts
|
|
60
|
+
├── initialState.ts
|
|
61
|
+
├── selectors.ts
|
|
62
|
+
├── slices
|
|
63
|
+
├── crudSlice.ts
|
|
64
|
+
├── dndSlice.ts
|
|
65
|
+
└── selectionSlice.ts
|
|
66
|
+
├── store.ts
|
|
67
|
+
└── treeDataReducer.ts
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
- 高等复杂度:高等复杂度存在 30 个以上的 state、 20 个以上的 action。必然需要 slice 做模块化内聚。在每个 slice 中都各自声明了各自的 initState、 action、reducer 与 selector。
|
|
71
|
+
|
|
72
|
+
下述这个数据流的目录结构是之前一版 SessionStore,具有很高的复杂度,实现了大量的业务逻辑。但借助于 slice 的模块化和分形架构的心智,我们可以很容易地找到对应的模块,新增功能与迭代都很易于维护。
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
LobeChat SessionStore
|
|
76
|
+
├── index.ts
|
|
77
|
+
├── initialState.ts
|
|
78
|
+
├── selectors.ts
|
|
79
|
+
├── slices
|
|
80
|
+
│ ├── agentConfig
|
|
81
|
+
│ │ ├── action.ts
|
|
82
|
+
│ │ ├── index.ts
|
|
83
|
+
│ │ ├── initialState.ts
|
|
84
|
+
│ │ └── selectors.ts
|
|
85
|
+
│ ├── chat
|
|
86
|
+
│ │ ├── actions
|
|
87
|
+
│ │ │ ├── index.ts
|
|
88
|
+
│ │ │ ├── message.ts
|
|
89
|
+
│ │ │ └── topic.ts
|
|
90
|
+
│ │ ├── index.ts
|
|
91
|
+
│ │ ├── initialState.ts
|
|
92
|
+
│ │ ├── reducers
|
|
93
|
+
│ │ │ ├── message.ts
|
|
94
|
+
│ │ │ └── topic.ts
|
|
95
|
+
│ │ ├── selectors
|
|
96
|
+
│ │ │ ├── chat.ts
|
|
97
|
+
│ │ │ ├── index.ts
|
|
98
|
+
│ │ │ ├── token.ts
|
|
99
|
+
│ │ │ ├── topic.ts
|
|
100
|
+
│ │ │ └── utils.ts
|
|
101
|
+
│ │ └── utils.ts
|
|
102
|
+
│ └── session
|
|
103
|
+
│ ├── action.ts
|
|
104
|
+
│ ├── index.ts
|
|
105
|
+
│ ├── initialState.ts
|
|
106
|
+
│ ├── reducers
|
|
107
|
+
│ │ └── session.ts
|
|
108
|
+
│ └── selectors
|
|
109
|
+
│ ├── export.ts
|
|
110
|
+
│ ├── index.ts
|
|
111
|
+
│ └── list.ts
|
|
112
|
+
└── store.ts
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
### LobeChat SessionStore 目录结构最佳实践
|
|
116
|
+
|
|
117
|
+
在 LobeChat 应用中,由于会话管理是一个复杂的功能模块,因此我们采用了 [slice 模式](https://github.com/pmndrs/zustand/blob/main/docs/guides/slices-pattern.md) 来组织数据流。下面是 LobeChat SessionStore 的目录结构,其中每个目录和文件都有其特定的用途:
|
|
118
|
+
|
|
119
|
+
```fish
|
|
120
|
+
src/store/session
|
|
121
|
+
├── index.ts # SessionStore 的聚合导出文件
|
|
122
|
+
├── initialState.ts # 聚合了所有 slice 的 initialState
|
|
123
|
+
├── selectors.ts # 从各个 slices 导出的 selector
|
|
124
|
+
├── store.ts # SessionStore 的创建和使用
|
|
125
|
+
├── helpers.ts # 辅助函数
|
|
126
|
+
└── slices # 各个独立的功能切片
|
|
127
|
+
├── agent # 助理 Slice
|
|
128
|
+
│ ├── action.ts
|
|
129
|
+
│ ├── index.ts
|
|
130
|
+
│ └── selectors.ts
|
|
131
|
+
└── session # 会话 Slice
|
|
132
|
+
├── action.ts
|
|
133
|
+
├── helpers.ts
|
|
134
|
+
├── initialState.ts
|
|
135
|
+
└── selectors
|
|
136
|
+
├── export.ts
|
|
137
|
+
├── list.ts
|
|
138
|
+
└── index.ts
|
|
139
|
+
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
## SessionStore 的实现
|
|
143
|
+
|
|
144
|
+
在 LobeChat 中,SessionStore 被设计为管理会话状态和逻辑的核心模块。它由多个 Slices 组成,每个 Slice 管理一部分相关的状态和逻辑。下面是一个简化的 SessionStore 的实现示例:
|
|
145
|
+
|
|
146
|
+
#### store.ts
|
|
147
|
+
|
|
148
|
+
```ts
|
|
149
|
+
import { PersistOptions, devtools, persist, subscribeWithSelector } from 'zustand/middleware';
|
|
150
|
+
import { shallow } from 'zustand/shallow';
|
|
151
|
+
import { devtools } from 'zustand/middleware';
|
|
152
|
+
import { createWithEqualityFn } from 'zustand/traditional';
|
|
153
|
+
|
|
154
|
+
import { SessionStoreState, initialState } from './initialState';
|
|
155
|
+
import { AgentAction, createAgentSlice } from './slices/agent/action';
|
|
156
|
+
import { SessionAction, createSessionSlice } from './slices/session/action';
|
|
157
|
+
|
|
158
|
+
// =============== 聚合 createStoreFn ============ //
|
|
159
|
+
|
|
160
|
+
export type SessionStore = SessionAction & AgentAction & SessionStoreState;
|
|
161
|
+
const createStore: StateCreator<SessionStore, [['zustand/devtools', never]]> = (...parameters) => ({
|
|
162
|
+
...initialState,
|
|
163
|
+
...createAgentSlice(...parameters),
|
|
164
|
+
...createSessionSlice(...parameters),
|
|
165
|
+
});
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
// =============== 实装 useStore ============ //
|
|
170
|
+
|
|
171
|
+
export const useSessionStore = createWithEqualityFn<SessionStore>()(
|
|
172
|
+
persist(
|
|
173
|
+
subscribeWithSelector(
|
|
174
|
+
devtools(createStore, {
|
|
175
|
+
name: 'LobeChat_Session' + (isDev ? '_DEV' : ''),
|
|
176
|
+
}),
|
|
177
|
+
),
|
|
178
|
+
persistOptions,
|
|
179
|
+
),
|
|
180
|
+
shallow,
|
|
181
|
+
);
|
|
182
|
+
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
在这个 `store.ts` 文件中,我们创建了一个 `useSessionStore` 钩子,它使用 `zustand` 库来创建一个全局状态管理器。我们将 initialState 和每个 Slice 的状态和动作合并,以创建完整的 SessionStore。
|
|
186
|
+
|
|
187
|
+
#### slices/session/action.ts
|
|
188
|
+
|
|
189
|
+
```ts
|
|
190
|
+
import { StateCreator } from 'zustand';
|
|
191
|
+
|
|
192
|
+
import { SessionStore } from '@/store/session';
|
|
193
|
+
|
|
194
|
+
export interface SessionActions {
|
|
195
|
+
/**
|
|
196
|
+
* A custom hook that uses SWR to fetch sessions data.
|
|
197
|
+
*/
|
|
198
|
+
useFetchSessions: () => SWRResponse<any>;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
export const createSessionSlice: StateCreator<
|
|
202
|
+
SessionStore,
|
|
203
|
+
[['zustand/devtools', never]],
|
|
204
|
+
[],
|
|
205
|
+
SessionAction
|
|
206
|
+
> = (set, get) => ({
|
|
207
|
+
useFetchSessions: () => {
|
|
208
|
+
// ...初始化会话的逻辑
|
|
209
|
+
},
|
|
210
|
+
// ...其他动作的实现
|
|
211
|
+
});
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
在 `action.ts` 文件中,我们定义了一个 `SessionActions` 接口来描述会话相关的动作,并且实现了一个 `useFetchSessions` 函数来创建这些动作。然后,我们将这些动作与初始状态合并,以形成会话相关的 Slice。
|
|
215
|
+
|
|
216
|
+
通过这种结构分层和模块化的方法,我们可以确保 LobeChat 的 SessionStore 是清晰、可维护的,同时也便于扩展和测试。
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# Data Store Selector
|
|
2
|
+
|
|
3
|
+
Selectors are data retrieval modules under the LobeChat data flow development framework. Their role is to extract data from the store using specific business logic for consumption by components.
|
|
4
|
+
|
|
5
|
+
Taking `src/store/plugin/selectors.ts` as an example:
|
|
6
|
+
|
|
7
|
+
This TypeScript code snippet defines an object named `pluginSelectors`, which contains a series of selector functions used to retrieve data from the plugin storage state. Selectors are functions that extract and derive data from a Redux store (or similar state management library). This specific example is for managing the state related to the frontend application's plugin system.
|
|
8
|
+
|
|
9
|
+
Here are some key points to note:
|
|
10
|
+
|
|
11
|
+
- `enabledSchema`: A function that returns an array of `ChatCompletionFunctions` filtered based on the enabled plugin list `enabledPlugins`. It appends the plugin identifier as a prefix to the API names to ensure uniqueness and uses the `uniqBy` function from the Lodash library to remove duplicates.
|
|
12
|
+
- `onlinePluginStore`: Returns the current online plugin list.
|
|
13
|
+
- `pluginList`: Returns the list of plugins, including custom plugins and standard plugins.
|
|
14
|
+
- `getPluginMetaById`: Returns the plugin metadata based on the plugin ID.
|
|
15
|
+
- `getDevPluginById`: Returns information about the custom plugins in development.
|
|
16
|
+
- `getPluginManifestById`: Returns the plugin manifest based on the plugin ID.
|
|
17
|
+
- `getPluginSettingsById`: Returns the plugin settings based on the plugin ID.
|
|
18
|
+
- `getPluginManifestLoadingStatus`: Returns the loading status of the plugin manifest (loading, success, or error) based on the plugin ID.
|
|
19
|
+
- `isCustomPlugin`: Checks if the plugin with the given ID is a custom plugin.
|
|
20
|
+
- `displayPluginList`: Returns a processed plugin list, including author, avatar, creation time, description, homepage URL, identifier, and title.
|
|
21
|
+
- `hasPluginUI`: Determines if the plugin has UI components based on the plugin ID.
|
|
22
|
+
|
|
23
|
+
Selectors are highly modular and maintainable. By encapsulating complex state selection logic in separate functions, they make the code more concise and intuitive when accessing state data in other parts of the application. Additionally, by using TypeScript, each function can have clear input and output types, which helps improve code reliability and development efficiency.
|
|
24
|
+
|
|
25
|
+
Taking the `displayPluginList` method as an example, its code is as follows:
|
|
26
|
+
|
|
27
|
+
```ts
|
|
28
|
+
const pluginList = (s: PluginStoreState) => [...s.pluginList, ...s.customPluginList];
|
|
29
|
+
|
|
30
|
+
const displayPluginList = (s: PluginStoreState) =>
|
|
31
|
+
pluginList(s).map((p) => ({
|
|
32
|
+
author: p.author,
|
|
33
|
+
avatar: p.meta?.avatar,
|
|
34
|
+
createAt: p.createAt,
|
|
35
|
+
desc: pluginHelpers.getPluginDesc(p.meta),
|
|
36
|
+
homepage: p.homepage,
|
|
37
|
+
identifier: p.identifier,
|
|
38
|
+
title: pluginHelpers.getPluginTitle(p.meta),
|
|
39
|
+
}));
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
- `pluginList` method: Used to retrieve the list of all plugins from the plugin state storage `PluginStoreState`. It creates a new plugin list by combining two arrays: `pluginList` and `customPluginList`.
|
|
43
|
+
- `displayPluginList` method: Calls the `pluginList` method to retrieve the merged plugin list and transforms the `title` and `desc` into text displayed on the UI.
|
|
44
|
+
|
|
45
|
+
In components, the final consumed data can be directly obtained by importing:
|
|
46
|
+
|
|
47
|
+
```tsx | pure
|
|
48
|
+
import { usePluginStore } from '@/store/plugin';
|
|
49
|
+
import { pluginSelectors } from '@/store/plugin/selectors';
|
|
50
|
+
|
|
51
|
+
const Render = ({ plugins }) => {
|
|
52
|
+
const list = usePluginStore(pluginSelectors.displayPluginList);
|
|
53
|
+
|
|
54
|
+
return <> ... </>;
|
|
55
|
+
};
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
The benefits of implementing this approach are:
|
|
59
|
+
|
|
60
|
+
1. **Decoupling and reusability**: By separating selectors from components, we can reuse these selectors across multiple components without rewriting data retrieval logic. This reduces duplicate code, improves development efficiency, and makes the codebase cleaner and easier to maintain.
|
|
61
|
+
2. **Performance optimization**: Selectors can be used to compute derived data, avoiding redundant calculations in each component. When the state changes, only the selectors dependent on that part of the state will recalculate, reducing unnecessary rendering and computation.
|
|
62
|
+
3. **Ease of testing**: Selectors are pure functions, relying only on the passed parameters. This means they can be tested in an isolated environment without the need to simulate the entire store or component tree.
|
|
63
|
+
4. **Type safety**: As LobeChat uses TypeScript, each selector has explicit input and output type definitions. This provides developers with the advantage of auto-completion and compile-time checks, reducing runtime errors.
|
|
64
|
+
5. **Maintainability**: Selectors centralize the logic for reading state, making it more intuitive to track state changes and management. If the state structure changes, only the relevant selectors need to be updated, rather than searching and replacing in multiple places throughout the codebase.
|
|
65
|
+
6. **Composability**: Selectors can be composed with other selectors to create more complex selection logic. This pattern allows developers to build a hierarchy of selectors, making state selection more flexible and powerful.
|
|
66
|
+
7. **Simplified component logic**: Components do not need to know the structure of the state or how to retrieve and compute the required data. Components only need to call selectors to obtain the data needed for rendering, simplifying and clarifying component logic.
|
|
67
|
+
|
|
68
|
+
With this design, LobeChat developers can focus more on building the user interface and business logic without worrying about the details of data retrieval and processing. This pattern also provides better adaptability and scalability for potential future changes in state structure.
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# 数据存储取数模块
|
|
2
|
+
|
|
3
|
+
selectors 是 LobeChat 数据流研发框架下的取数模块,它的作用是从 store 中以特定特务逻辑取出数据,供组件消费使用。
|
|
4
|
+
|
|
5
|
+
以 `src/store/tool/slices/plugin/selectors.ts` 为例:
|
|
6
|
+
|
|
7
|
+
这个 TypeScript 代码段定义了一个名为 `pluginSelectors` 的对象,该对象包含一系列用于从插件存储状态中检索数据的选择器函数。选择器是一种从 zustand 中提取和派生数据的函数。这个特定的例子是为了管理与前端应用程序的插件系统相关的状态。
|
|
8
|
+
|
|
9
|
+
下面是一些关键点的说明:
|
|
10
|
+
|
|
11
|
+
- `getCustomPluginById`: 根据插件 ID 返回自定义插件信息。
|
|
12
|
+
- `getInstalledPluginById`: 根据插件 ID 返回已安装插件的信息。
|
|
13
|
+
- `getPluginManifestById`: 根据插件 ID 返回插件清单。
|
|
14
|
+
- `getPluginMetaById`: 根据插件 ID 返回插件元数据。
|
|
15
|
+
- `getPluginSettingsById`: 根据插件 ID 返回插件设置。
|
|
16
|
+
- `installedCustomPluginMetaList`: 返回所有已安装的自定义插件的元数据列表。
|
|
17
|
+
- `installedPluginManifestList`: 返回所有已安装插件的清单列表。
|
|
18
|
+
- `installedPluginMetaList`: 返回所有已安装插件的元数据列表。
|
|
19
|
+
- `installedPlugins`: 返回所有已安装插件的列表。
|
|
20
|
+
- `isPluginHasUI`: 根据插件 ID 确定插件是否有 UI 组件。
|
|
21
|
+
- `isPluginInstalled`: 根据插件 ID 检查插件是否已安装。
|
|
22
|
+
- `storeAndInstallPluginsIdList`: 返回 store 中和已安装插件的所有 ID 列表。
|
|
23
|
+
|
|
24
|
+
选择器通过将复杂的状态选择逻辑封装在单独的函数中,使得在应用程序的其他部分调用状态数据时,代码更加简洁和直观。此外,由于使用了 TypeScript,每个函数都可以具有明确的输入和输出类型,这有助于提高代码的可靠性和开发效率。
|
|
25
|
+
|
|
26
|
+
在组件中,只需引入相应的选择器即可直接获取最终消费的数据:
|
|
27
|
+
|
|
28
|
+
```tsx | pure
|
|
29
|
+
import { useToolStore } from '@/store/tool';
|
|
30
|
+
import { pluginSelectors } from '@/store/tool/selectors';
|
|
31
|
+
|
|
32
|
+
const Render = () => {
|
|
33
|
+
const list = useToolStore(pluginSelectors.installedPluginMetaList);
|
|
34
|
+
|
|
35
|
+
return <> ... </>;
|
|
36
|
+
};
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
这样实现的好处在于:
|
|
40
|
+
|
|
41
|
+
1. **解耦和重用**:通过将选择器独立于组件,我们可以在多个组件之间复用这些选择器而不需要重写取数逻辑。这减少了重复代码,提高了开发效率,并且使得代码库更加干净和易于维护。
|
|
42
|
+
2. **性能优化**:选择器可以用来计算派生数据,这样可以避免在每个组件中重复计算相同的数据。当状态发生变化时,只有依赖于这部分状态的选择器才会重新计算,从而减少不必要的渲染和计算。
|
|
43
|
+
3. **易于测试**:选择器是纯函数,它们仅依赖于传入的参数。这意味着它们可以在隔离的环境中进行测试,无需模拟整个 store 或组件树。
|
|
44
|
+
4. **类型安全**:由于 LobeChat 使用 TypeScript,每个选择器都有明确的输入和输出类型定义。这为开发者提供了自动完成和编译时检查的优势,减少了运行时错误。
|
|
45
|
+
5. **可维护性**:选择器集中了状态的读取逻辑,使得跟踪状态的变化和管理更加直观。如果状态结构发生变化,我们只需要更新相应的选择器,而不是搜索和替换整个代码库中的多个位置。
|
|
46
|
+
6. **可组合性**:选择器可以组合其他选择器,以创建更复杂的选择逻辑。这种模式允许开发者构建一个选择器层次结构,使得状态选择更加灵活和强大。
|
|
47
|
+
7. **简化组件逻辑**:组件不需要知道状态的结构或如何获取和计算需要的数据。组件只需调用选择器即可获取渲染所需的数据,这使得组件逻辑变得更简单和清晰。
|
|
48
|
+
|
|
49
|
+
通过这样的设计,LobeChat 的开发者可以更专注于构建用户界面和业务逻辑,而不必担心数据的获取和处理细节。这种模式也为未来可能的状态结构变更提供了更好的适应性和扩展性。
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Upstream Sync
|
|
2
|
+
|
|
3
|
+
English | [简体中文](https://github.com/lobehub/lobe-chat/wiki/Upstream-Sync.zh-CN)
|
|
4
|
+
|
|
5
|
+
## `A` Vercel / Zeabur Deployment
|
|
6
|
+
|
|
7
|
+
If you have deployed your own project following the one-click deployment steps in the README, you might encounter constant prompts indicating "updates available". This is because Vercel defaults to creating a new project instead of forking this one, resulting in an inability to accurately detect updates. We suggest you redeploy using the following steps:
|
|
8
|
+
|
|
9
|
+
- Remove the original repository;
|
|
10
|
+
- Use the <kbd>Fork</kbd> button at the top right corner of the page to fork this project;
|
|
11
|
+
- Re-select and deploy on `Vercel`.
|
|
12
|
+
|
|
13
|
+
## Enabling Automatic Updates
|
|
14
|
+
|
|
15
|
+
> \[!NOTE]
|
|
16
|
+
>
|
|
17
|
+
> If you encounter an error executing Upstream Sync, manually Sync Fork once
|
|
18
|
+
|
|
19
|
+
Once you have forked the project, due to Github restrictions, you will need to manually enable Workflows on the Actions page of your forked project and activate the Upstream Sync Action. Once enabled, you can set up hourly automatic updates.
|
|
20
|
+
|
|
21
|
+

|
|
22
|
+

|
|
23
|
+
|
|
24
|
+
## `B` Docker Deployment
|
|
25
|
+
|
|
26
|
+
Upgrading the Docker deployment version is very simple, just redeploy the latest image of LobeChat. Here are the instructions to perform these steps:
|
|
27
|
+
|
|
28
|
+
1. Stop and delete the currently running LobeChat container (assuming the name of the LobeChat container is `lobe-chat`):
|
|
29
|
+
|
|
30
|
+
```fish
|
|
31
|
+
docker stop lobe-chat
|
|
32
|
+
docker rm lobe-chat
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
2. Pull the latest Docker image of LobeChat:
|
|
36
|
+
|
|
37
|
+
```fish
|
|
38
|
+
docker pull lobehub/lobe-chat
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
3. Redeploy the LobeChat container using the newly pulled image:
|
|
42
|
+
|
|
43
|
+
```fish
|
|
44
|
+
docker run -d -p 3210:3210 \
|
|
45
|
+
-e OPENAI_API_KEY=sk-xxxx \
|
|
46
|
+
-e OPENAI_PROXY_URL=https://api-proxy.com/v1 \
|
|
47
|
+
-e ACCESS_CODE=lobe66 \
|
|
48
|
+
--name lobe-chat \
|
|
49
|
+
lobehub/lobe-chat
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Make sure you have sufficient permissions to stop and delete the container before executing these commands, and Docker has sufficient permissions to pull the new image.
|
|
53
|
+
|
|
54
|
+
> \[!NOTE]
|
|
55
|
+
>
|
|
56
|
+
> If I redeploy, will my local chat history be lost?
|
|
57
|
+
>
|
|
58
|
+
> Don't worry, all of LobeChat's chat history is stored in your local browser. Therefore, when you redeploy LobeChat using Docker, your chat history will not be lost.
|