@lobehub/lobehub 2.0.0-next.15 → 2.0.0-next.150
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/.console-log-whitelist.json +14 -0
- package/.cursor/rules/db-migrations.mdc +16 -1
- package/.cursor/rules/project-introduce.mdc +2 -2
- package/.cursor/rules/project-structure.mdc +20 -2
- package/.env.desktop +1 -2
- package/.env.example +176 -65
- package/.env.example.development +11 -10
- package/.github/workflows/claude-auto-testing.yml +73 -0
- package/.github/workflows/claude-translate-comments.yml +67 -0
- package/.github/workflows/claude-translator.yml +1 -0
- package/.github/workflows/e2e.yml +14 -0
- package/.github/workflows/issue-auto-comments.yml +0 -19
- package/.github/workflows/pr-build-desktop.yml +362 -0
- package/.github/workflows/pr-build-docker.yml +173 -0
- package/.github/workflows/release-desktop-beta.yml +4 -4
- package/.github/workflows/release-docker.yml +133 -0
- package/.github/workflows/release.yml +2 -3
- package/.github/workflows/sync.yml +2 -2
- package/.github/workflows/test.yml +47 -7
- package/AGENTS.md +6 -3
- package/CHANGELOG.md +3405 -0
- package/CLAUDE.md +43 -0
- package/Dockerfile +8 -6
- package/GEMINI.md +63 -0
- package/README.md +9 -52
- package/README.zh-CN.md +9 -52
- package/apps/desktop/package.json +25 -19
- package/apps/desktop/src/common/routes.ts +0 -6
- package/apps/desktop/src/main/appBrowsers.ts +0 -13
- package/apps/desktop/src/main/controllers/AuthCtr.ts +135 -63
- package/apps/desktop/src/main/controllers/BrowserWindowsCtr.ts +29 -48
- package/apps/desktop/src/main/controllers/LocalFileCtr.ts +80 -16
- package/apps/desktop/src/main/controllers/MenuCtr.ts +5 -5
- package/apps/desktop/src/main/controllers/NotificationCtr.ts +29 -29
- package/apps/desktop/src/main/controllers/RemoteServerConfigCtr.ts +115 -23
- package/apps/desktop/src/main/controllers/ShellCommandCtr.ts +242 -0
- package/apps/desktop/src/main/controllers/ShortcutCtr.ts +2 -2
- package/apps/desktop/src/main/controllers/TrayMenuCtr.ts +18 -18
- package/apps/desktop/src/main/controllers/UpdaterCtr.ts +4 -4
- package/apps/desktop/src/main/controllers/__tests__/AuthCtr.test.ts +706 -0
- package/apps/desktop/src/main/controllers/__tests__/BrowserWindowsCtr.test.ts +21 -72
- package/apps/desktop/src/main/controllers/__tests__/LocalFileCtr.test.ts +157 -1
- package/apps/desktop/src/main/controllers/__tests__/McpInstallCtr.test.ts +286 -0
- package/apps/desktop/src/main/controllers/__tests__/NotificationCtr.test.ts +347 -0
- package/apps/desktop/src/main/controllers/__tests__/RemoteServerConfigCtr.test.ts +682 -0
- package/apps/desktop/src/main/controllers/__tests__/RemoteServerSyncCtr.test.ts +372 -0
- package/apps/desktop/src/main/controllers/__tests__/ShellCommandCtr.test.ts +499 -0
- package/apps/desktop/src/main/controllers/__tests__/SystemCtr.test.ts +276 -0
- package/apps/desktop/src/main/controllers/__tests__/TrayMenuCtr.test.ts +5 -5
- package/apps/desktop/src/main/controllers/__tests__/UploadFileCtr.test.ts +167 -0
- package/apps/desktop/src/main/controllers/index.ts +4 -4
- package/apps/desktop/src/main/core/browser/Browser.ts +1 -0
- package/apps/desktop/src/main/core/browser/BrowserManager.ts +1 -56
- package/apps/desktop/src/main/core/browser/__tests__/Browser.test.ts +573 -0
- package/apps/desktop/src/main/core/browser/__tests__/BrowserManager.test.ts +415 -0
- package/apps/desktop/src/main/core/infrastructure/ProtocolManager.ts +9 -4
- package/apps/desktop/src/main/core/infrastructure/UpdaterManager.ts +23 -2
- package/apps/desktop/src/main/core/infrastructure/__tests__/I18nManager.test.ts +353 -0
- package/apps/desktop/src/main/core/infrastructure/__tests__/IoCContainer.test.ts +156 -0
- package/apps/desktop/src/main/core/infrastructure/__tests__/ProtocolManager.test.ts +349 -0
- package/apps/desktop/src/main/core/infrastructure/__tests__/StaticFileServerManager.test.ts +481 -0
- package/apps/desktop/src/main/core/infrastructure/__tests__/StoreManager.test.ts +164 -0
- package/apps/desktop/src/main/core/infrastructure/__tests__/UpdaterManager.test.ts +513 -0
- package/apps/desktop/src/main/core/ui/__tests__/MenuManager.test.ts +320 -0
- package/apps/desktop/src/main/core/ui/__tests__/Tray.test.ts +518 -0
- package/apps/desktop/src/main/core/ui/__tests__/TrayManager.test.ts +360 -0
- package/apps/desktop/src/main/menus/impls/BaseMenuPlatform.test.ts +49 -0
- package/apps/desktop/src/main/menus/impls/linux.test.ts +552 -0
- package/apps/desktop/src/main/menus/impls/macOS.test.ts +464 -0
- package/apps/desktop/src/main/menus/impls/macOS.ts +9 -3
- package/apps/desktop/src/main/menus/impls/windows.test.ts +429 -0
- package/apps/desktop/src/main/modules/fileSearch/__tests__/macOS.integration.test.ts +357 -0
- package/apps/desktop/src/main/modules/fileSearch/impl/macOS.ts +30 -22
- package/apps/desktop/src/main/modules/networkProxy/__tests__/dispatcher.test.ts +401 -0
- package/apps/desktop/src/main/modules/networkProxy/__tests__/tester.test.ts +531 -0
- package/apps/desktop/src/main/modules/networkProxy/__tests__/urlBuilder.test.ts +349 -0
- package/apps/desktop/src/main/modules/networkProxy/__tests__/validator.test.ts +492 -0
- package/apps/desktop/src/main/modules/networkProxy/dispatcher.ts +16 -16
- package/apps/desktop/src/main/modules/networkProxy/tester.ts +11 -11
- package/apps/desktop/src/main/modules/networkProxy/urlBuilder.ts +3 -3
- package/apps/desktop/src/main/modules/networkProxy/validator.ts +10 -10
- package/apps/desktop/src/main/services/__tests__/fileSearchSrv.test.ts +402 -0
- package/apps/desktop/src/main/services/__tests__/fileSrv.test.ts +603 -0
- package/apps/desktop/src/main/utils/__tests__/file-system.test.ts +91 -0
- package/apps/desktop/src/main/utils/__tests__/logger.test.ts +229 -0
- package/apps/desktop/src/main/utils/next-electron-rsc.ts +3 -1
- package/apps/desktop/src/preload/electronApi.test.ts +142 -0
- package/apps/desktop/src/preload/index.ts +2 -2
- package/apps/desktop/src/preload/invoke.test.ts +147 -0
- package/apps/desktop/src/preload/invoke.ts +1 -1
- package/apps/desktop/src/preload/routeInterceptor.test.ts +419 -0
- package/apps/desktop/src/preload/routeInterceptor.ts +41 -41
- package/apps/desktop/src/preload/streamer.test.ts +366 -0
- package/apps/desktop/vitest.config.mts +1 -0
- package/changelog/v1.json +1185 -0
- package/codecov.yml +1 -0
- package/docker-compose/local/.env.example +3 -0
- package/docker-compose/local/docker-compose.yml +24 -1
- package/docker-compose/local/logto/docker-compose.yml +25 -2
- package/docker-compose.development.yml +6 -0
- package/docs/development/database-schema.dbml +117 -23
- package/docs/self-hosting/advanced/auth.mdx +99 -2
- package/docs/self-hosting/advanced/auth.zh-CN.mdx +99 -2
- package/docs/self-hosting/advanced/feature-flags.mdx +0 -1
- package/docs/self-hosting/advanced/feature-flags.zh-CN.mdx +0 -1
- package/docs/self-hosting/environment-variables/auth.mdx +187 -1
- package/docs/self-hosting/environment-variables/auth.zh-CN.mdx +187 -1
- package/docs/self-hosting/environment-variables/basic.mdx +49 -3
- package/docs/self-hosting/environment-variables/basic.zh-CN.mdx +49 -4
- package/docs/self-hosting/environment-variables/model-provider.mdx +31 -0
- package/docs/self-hosting/environment-variables/model-provider.zh-CN.mdx +30 -0
- package/docs/self-hosting/server-database/docker-compose.mdx +29 -0
- package/docs/self-hosting/server-database/docker-compose.zh-CN.mdx +29 -0
- package/docs/usage/providers/comfyui.mdx +1 -1
- package/docs/usage/providers/comfyui.zh-CN.mdx +1 -1
- package/e2e/package.json +4 -4
- package/e2e/src/features/discover/detail-pages.feature +95 -0
- package/e2e/src/features/discover/interactions.feature +113 -0
- package/e2e/src/features/discover/smoke.feature +34 -1
- package/e2e/src/steps/discover/detail-pages.steps.ts +295 -0
- package/e2e/src/steps/discover/interactions.steps.ts +451 -0
- package/e2e/src/steps/discover/smoke.steps.ts +116 -4
- package/locales/ar/auth.json +159 -2
- package/locales/ar/chat.json +42 -0
- package/locales/ar/common.json +24 -0
- package/locales/ar/components.json +6 -0
- package/locales/ar/discover.json +45 -0
- package/locales/ar/error.json +2 -2
- package/locales/ar/file.json +88 -5
- package/locales/ar/hotkey.json +4 -0
- package/locales/ar/image.json +8 -0
- package/locales/ar/labs.json +4 -0
- package/locales/ar/marketAuth.json +55 -0
- package/locales/ar/modelProvider.json +16 -2
- package/locales/ar/models.json +404 -122
- package/locales/ar/oauth.json +1 -0
- package/locales/ar/plugin.json +36 -16
- package/locales/ar/providers.json +3 -0
- package/locales/ar/setting.json +100 -1
- package/locales/ar/tool.json +28 -1
- package/locales/ar/topic.json +1 -0
- package/locales/bg-BG/auth.json +159 -2
- package/locales/bg-BG/chat.json +42 -0
- package/locales/bg-BG/common.json +24 -0
- package/locales/bg-BG/components.json +6 -0
- package/locales/bg-BG/discover.json +45 -0
- package/locales/bg-BG/error.json +2 -2
- package/locales/bg-BG/file.json +88 -5
- package/locales/bg-BG/hotkey.json +4 -0
- package/locales/bg-BG/image.json +8 -0
- package/locales/bg-BG/labs.json +4 -0
- package/locales/bg-BG/marketAuth.json +55 -0
- package/locales/bg-BG/modelProvider.json +16 -2
- package/locales/bg-BG/models.json +404 -122
- package/locales/bg-BG/oauth.json +1 -0
- package/locales/bg-BG/plugin.json +36 -16
- package/locales/bg-BG/providers.json +3 -0
- package/locales/bg-BG/setting.json +100 -1
- package/locales/bg-BG/tool.json +28 -1
- package/locales/bg-BG/topic.json +1 -0
- package/locales/de-DE/auth.json +159 -2
- package/locales/de-DE/chat.json +42 -0
- package/locales/de-DE/common.json +24 -0
- package/locales/de-DE/components.json +6 -0
- package/locales/de-DE/discover.json +45 -0
- package/locales/de-DE/error.json +2 -2
- package/locales/de-DE/file.json +88 -5
- package/locales/de-DE/hotkey.json +4 -0
- package/locales/de-DE/image.json +8 -0
- package/locales/de-DE/labs.json +4 -0
- package/locales/de-DE/marketAuth.json +55 -0
- package/locales/de-DE/modelProvider.json +16 -2
- package/locales/de-DE/models.json +404 -122
- package/locales/de-DE/oauth.json +1 -0
- package/locales/de-DE/plugin.json +36 -16
- package/locales/de-DE/providers.json +3 -0
- package/locales/de-DE/setting.json +100 -1
- package/locales/de-DE/tool.json +28 -1
- package/locales/de-DE/topic.json +1 -0
- package/locales/en-US/auth.json +159 -2
- package/locales/en-US/chat.json +42 -0
- package/locales/en-US/common.json +24 -0
- package/locales/en-US/components.json +6 -0
- package/locales/en-US/discover.json +45 -0
- package/locales/en-US/error.json +2 -2
- package/locales/en-US/file.json +88 -5
- package/locales/en-US/hotkey.json +4 -0
- package/locales/en-US/image.json +8 -0
- package/locales/en-US/labs.json +4 -0
- package/locales/en-US/marketAuth.json +55 -0
- package/locales/en-US/modelProvider.json +16 -2
- package/locales/en-US/models.json +404 -122
- package/locales/en-US/oauth.json +1 -0
- package/locales/en-US/plugin.json +36 -16
- package/locales/en-US/providers.json +3 -0
- package/locales/en-US/setting.json +100 -1
- package/locales/en-US/tool.json +28 -1
- package/locales/en-US/topic.json +1 -0
- package/locales/es-ES/auth.json +159 -2
- package/locales/es-ES/chat.json +42 -0
- package/locales/es-ES/common.json +24 -0
- package/locales/es-ES/components.json +6 -0
- package/locales/es-ES/discover.json +45 -0
- package/locales/es-ES/error.json +2 -2
- package/locales/es-ES/file.json +88 -5
- package/locales/es-ES/hotkey.json +4 -0
- package/locales/es-ES/image.json +8 -0
- package/locales/es-ES/labs.json +4 -0
- package/locales/es-ES/marketAuth.json +55 -0
- package/locales/es-ES/modelProvider.json +16 -2
- package/locales/es-ES/models.json +404 -122
- package/locales/es-ES/oauth.json +1 -0
- package/locales/es-ES/plugin.json +36 -16
- package/locales/es-ES/providers.json +3 -0
- package/locales/es-ES/setting.json +100 -1
- package/locales/es-ES/tool.json +28 -1
- package/locales/es-ES/topic.json +1 -0
- package/locales/fa-IR/auth.json +159 -2
- package/locales/fa-IR/chat.json +42 -0
- package/locales/fa-IR/common.json +24 -0
- package/locales/fa-IR/components.json +6 -0
- package/locales/fa-IR/discover.json +45 -0
- package/locales/fa-IR/error.json +2 -2
- package/locales/fa-IR/file.json +88 -5
- package/locales/fa-IR/hotkey.json +4 -0
- package/locales/fa-IR/image.json +8 -0
- package/locales/fa-IR/labs.json +4 -0
- package/locales/fa-IR/marketAuth.json +55 -0
- package/locales/fa-IR/modelProvider.json +16 -2
- package/locales/fa-IR/models.json +404 -122
- package/locales/fa-IR/oauth.json +1 -0
- package/locales/fa-IR/plugin.json +36 -16
- package/locales/fa-IR/providers.json +3 -0
- package/locales/fa-IR/setting.json +100 -1
- package/locales/fa-IR/tool.json +28 -1
- package/locales/fa-IR/topic.json +1 -0
- package/locales/fr-FR/auth.json +159 -2
- package/locales/fr-FR/chat.json +42 -0
- package/locales/fr-FR/common.json +24 -0
- package/locales/fr-FR/components.json +6 -0
- package/locales/fr-FR/discover.json +45 -0
- package/locales/fr-FR/error.json +2 -2
- package/locales/fr-FR/file.json +88 -5
- package/locales/fr-FR/hotkey.json +4 -0
- package/locales/fr-FR/image.json +8 -0
- package/locales/fr-FR/labs.json +4 -0
- package/locales/fr-FR/marketAuth.json +55 -0
- package/locales/fr-FR/modelProvider.json +16 -2
- package/locales/fr-FR/models.json +404 -122
- package/locales/fr-FR/oauth.json +1 -0
- package/locales/fr-FR/plugin.json +36 -16
- package/locales/fr-FR/providers.json +3 -0
- package/locales/fr-FR/setting.json +100 -1
- package/locales/fr-FR/tool.json +28 -1
- package/locales/fr-FR/topic.json +1 -0
- package/locales/it-IT/auth.json +159 -2
- package/locales/it-IT/chat.json +42 -0
- package/locales/it-IT/common.json +24 -0
- package/locales/it-IT/components.json +6 -0
- package/locales/it-IT/discover.json +45 -0
- package/locales/it-IT/error.json +2 -2
- package/locales/it-IT/file.json +88 -5
- package/locales/it-IT/hotkey.json +4 -0
- package/locales/it-IT/image.json +8 -0
- package/locales/it-IT/labs.json +4 -0
- package/locales/it-IT/marketAuth.json +55 -0
- package/locales/it-IT/modelProvider.json +16 -2
- package/locales/it-IT/models.json +404 -122
- package/locales/it-IT/oauth.json +1 -0
- package/locales/it-IT/plugin.json +36 -16
- package/locales/it-IT/providers.json +3 -0
- package/locales/it-IT/setting.json +100 -1
- package/locales/it-IT/tool.json +28 -1
- package/locales/it-IT/topic.json +1 -0
- package/locales/ja-JP/auth.json +159 -2
- package/locales/ja-JP/chat.json +42 -0
- package/locales/ja-JP/common.json +24 -0
- package/locales/ja-JP/components.json +6 -0
- package/locales/ja-JP/discover.json +45 -0
- package/locales/ja-JP/error.json +2 -2
- package/locales/ja-JP/file.json +88 -5
- package/locales/ja-JP/hotkey.json +4 -0
- package/locales/ja-JP/image.json +8 -0
- package/locales/ja-JP/labs.json +4 -0
- package/locales/ja-JP/marketAuth.json +55 -0
- package/locales/ja-JP/modelProvider.json +16 -2
- package/locales/ja-JP/models.json +404 -122
- package/locales/ja-JP/oauth.json +1 -0
- package/locales/ja-JP/plugin.json +36 -16
- package/locales/ja-JP/providers.json +3 -0
- package/locales/ja-JP/setting.json +100 -1
- package/locales/ja-JP/tool.json +28 -1
- package/locales/ja-JP/topic.json +1 -0
- package/locales/ko-KR/auth.json +159 -2
- package/locales/ko-KR/chat.json +42 -0
- package/locales/ko-KR/common.json +24 -0
- package/locales/ko-KR/components.json +6 -0
- package/locales/ko-KR/discover.json +45 -0
- package/locales/ko-KR/error.json +2 -2
- package/locales/ko-KR/file.json +88 -5
- package/locales/ko-KR/hotkey.json +4 -0
- package/locales/ko-KR/image.json +8 -0
- package/locales/ko-KR/labs.json +4 -0
- package/locales/ko-KR/marketAuth.json +55 -0
- package/locales/ko-KR/modelProvider.json +16 -2
- package/locales/ko-KR/models.json +404 -122
- package/locales/ko-KR/oauth.json +1 -0
- package/locales/ko-KR/plugin.json +36 -16
- package/locales/ko-KR/providers.json +3 -0
- package/locales/ko-KR/setting.json +100 -1
- package/locales/ko-KR/tool.json +28 -1
- package/locales/ko-KR/topic.json +1 -0
- package/locales/nl-NL/auth.json +159 -2
- package/locales/nl-NL/chat.json +42 -0
- package/locales/nl-NL/common.json +24 -0
- package/locales/nl-NL/components.json +6 -0
- package/locales/nl-NL/discover.json +45 -0
- package/locales/nl-NL/error.json +2 -2
- package/locales/nl-NL/file.json +88 -5
- package/locales/nl-NL/hotkey.json +4 -0
- package/locales/nl-NL/image.json +8 -0
- package/locales/nl-NL/labs.json +4 -0
- package/locales/nl-NL/marketAuth.json +55 -0
- package/locales/nl-NL/modelProvider.json +16 -2
- package/locales/nl-NL/models.json +404 -122
- package/locales/nl-NL/oauth.json +1 -0
- package/locales/nl-NL/plugin.json +36 -16
- package/locales/nl-NL/providers.json +3 -0
- package/locales/nl-NL/setting.json +100 -1
- package/locales/nl-NL/tool.json +28 -1
- package/locales/nl-NL/topic.json +1 -0
- package/locales/pl-PL/auth.json +159 -2
- package/locales/pl-PL/chat.json +42 -0
- package/locales/pl-PL/common.json +24 -0
- package/locales/pl-PL/components.json +6 -0
- package/locales/pl-PL/discover.json +45 -0
- package/locales/pl-PL/error.json +2 -2
- package/locales/pl-PL/file.json +88 -5
- package/locales/pl-PL/hotkey.json +4 -0
- package/locales/pl-PL/image.json +8 -0
- package/locales/pl-PL/labs.json +4 -0
- package/locales/pl-PL/marketAuth.json +55 -0
- package/locales/pl-PL/modelProvider.json +16 -2
- package/locales/pl-PL/models.json +404 -122
- package/locales/pl-PL/oauth.json +1 -0
- package/locales/pl-PL/plugin.json +36 -16
- package/locales/pl-PL/providers.json +3 -0
- package/locales/pl-PL/setting.json +100 -1
- package/locales/pl-PL/tool.json +28 -1
- package/locales/pl-PL/topic.json +1 -0
- package/locales/pt-BR/auth.json +159 -2
- package/locales/pt-BR/chat.json +42 -0
- package/locales/pt-BR/common.json +24 -0
- package/locales/pt-BR/components.json +6 -0
- package/locales/pt-BR/discover.json +45 -0
- package/locales/pt-BR/error.json +2 -2
- package/locales/pt-BR/file.json +88 -5
- package/locales/pt-BR/hotkey.json +4 -0
- package/locales/pt-BR/image.json +8 -0
- package/locales/pt-BR/labs.json +4 -0
- package/locales/pt-BR/marketAuth.json +55 -0
- package/locales/pt-BR/modelProvider.json +16 -2
- package/locales/pt-BR/models.json +404 -122
- package/locales/pt-BR/oauth.json +1 -0
- package/locales/pt-BR/plugin.json +36 -16
- package/locales/pt-BR/providers.json +3 -0
- package/locales/pt-BR/setting.json +100 -1
- package/locales/pt-BR/tool.json +28 -1
- package/locales/pt-BR/topic.json +1 -0
- package/locales/ru-RU/auth.json +159 -2
- package/locales/ru-RU/chat.json +42 -0
- package/locales/ru-RU/common.json +24 -0
- package/locales/ru-RU/components.json +6 -0
- package/locales/ru-RU/discover.json +45 -0
- package/locales/ru-RU/error.json +2 -2
- package/locales/ru-RU/file.json +88 -5
- package/locales/ru-RU/hotkey.json +4 -0
- package/locales/ru-RU/image.json +8 -0
- package/locales/ru-RU/labs.json +4 -0
- package/locales/ru-RU/marketAuth.json +55 -0
- package/locales/ru-RU/modelProvider.json +16 -2
- package/locales/ru-RU/models.json +404 -122
- package/locales/ru-RU/oauth.json +1 -0
- package/locales/ru-RU/plugin.json +36 -16
- package/locales/ru-RU/providers.json +3 -0
- package/locales/ru-RU/setting.json +100 -1
- package/locales/ru-RU/tool.json +28 -1
- package/locales/ru-RU/topic.json +1 -0
- package/locales/tr-TR/auth.json +159 -2
- package/locales/tr-TR/chat.json +42 -0
- package/locales/tr-TR/common.json +24 -0
- package/locales/tr-TR/components.json +6 -0
- package/locales/tr-TR/discover.json +45 -0
- package/locales/tr-TR/error.json +2 -2
- package/locales/tr-TR/file.json +88 -5
- package/locales/tr-TR/hotkey.json +4 -0
- package/locales/tr-TR/image.json +8 -0
- package/locales/tr-TR/labs.json +4 -0
- package/locales/tr-TR/marketAuth.json +55 -0
- package/locales/tr-TR/modelProvider.json +16 -2
- package/locales/tr-TR/models.json +404 -122
- package/locales/tr-TR/oauth.json +1 -0
- package/locales/tr-TR/plugin.json +36 -16
- package/locales/tr-TR/providers.json +3 -0
- package/locales/tr-TR/setting.json +100 -1
- package/locales/tr-TR/tool.json +28 -1
- package/locales/tr-TR/topic.json +1 -0
- package/locales/vi-VN/auth.json +159 -2
- package/locales/vi-VN/chat.json +42 -0
- package/locales/vi-VN/common.json +24 -0
- package/locales/vi-VN/components.json +6 -0
- package/locales/vi-VN/discover.json +45 -0
- package/locales/vi-VN/error.json +2 -2
- package/locales/vi-VN/file.json +88 -5
- package/locales/vi-VN/hotkey.json +4 -0
- package/locales/vi-VN/image.json +8 -0
- package/locales/vi-VN/labs.json +4 -0
- package/locales/vi-VN/marketAuth.json +55 -0
- package/locales/vi-VN/modelProvider.json +16 -2
- package/locales/vi-VN/models.json +404 -122
- package/locales/vi-VN/oauth.json +1 -0
- package/locales/vi-VN/plugin.json +36 -16
- package/locales/vi-VN/providers.json +3 -0
- package/locales/vi-VN/setting.json +100 -1
- package/locales/vi-VN/tool.json +28 -1
- package/locales/vi-VN/topic.json +1 -0
- package/locales/zh-CN/auth.json +159 -2
- package/locales/zh-CN/chat.json +42 -0
- package/locales/zh-CN/common.json +24 -0
- package/locales/zh-CN/components.json +6 -0
- package/locales/zh-CN/discover.json +45 -0
- package/locales/zh-CN/error.json +2 -2
- package/locales/zh-CN/file.json +88 -5
- package/locales/zh-CN/hotkey.json +4 -0
- package/locales/zh-CN/image.json +8 -0
- package/locales/zh-CN/labs.json +4 -0
- package/locales/zh-CN/marketAuth.json +55 -0
- package/locales/zh-CN/modelProvider.json +16 -2
- package/locales/zh-CN/models.json +404 -122
- package/locales/zh-CN/oauth.json +1 -0
- package/locales/zh-CN/plugin.json +36 -16
- package/locales/zh-CN/providers.json +3 -0
- package/locales/zh-CN/setting.json +100 -1
- package/locales/zh-CN/tool.json +28 -1
- package/locales/zh-CN/topic.json +1 -0
- package/locales/zh-TW/auth.json +159 -2
- package/locales/zh-TW/chat.json +42 -0
- package/locales/zh-TW/common.json +24 -0
- package/locales/zh-TW/components.json +6 -0
- package/locales/zh-TW/discover.json +45 -0
- package/locales/zh-TW/error.json +2 -2
- package/locales/zh-TW/file.json +88 -5
- package/locales/zh-TW/hotkey.json +4 -0
- package/locales/zh-TW/image.json +8 -0
- package/locales/zh-TW/labs.json +4 -0
- package/locales/zh-TW/marketAuth.json +55 -0
- package/locales/zh-TW/modelProvider.json +16 -2
- package/locales/zh-TW/models.json +404 -122
- package/locales/zh-TW/oauth.json +1 -0
- package/locales/zh-TW/plugin.json +36 -16
- package/locales/zh-TW/providers.json +3 -0
- package/locales/zh-TW/setting.json +100 -1
- package/locales/zh-TW/tool.json +28 -1
- package/locales/zh-TW/topic.json +1 -0
- package/next.config.ts +10 -12
- package/package.json +86 -70
- package/packages/agent-runtime/package.json +1 -1
- package/packages/agent-runtime/src/core/InterventionChecker.ts +88 -14
- package/packages/agent-runtime/src/core/__tests__/InterventionChecker.test.ts +504 -87
- package/packages/agent-runtime/src/core/__tests__/runtime.test.ts +141 -87
- package/packages/agent-runtime/src/core/defaultSecurityBlacklist.ts +335 -0
- package/packages/agent-runtime/src/core/index.ts +1 -0
- package/packages/agent-runtime/src/core/runtime.ts +104 -20
- package/packages/agent-runtime/src/types/event.ts +4 -1
- package/packages/agent-runtime/src/types/generalAgent.ts +72 -0
- package/packages/agent-runtime/src/types/index.ts +1 -0
- package/packages/agent-runtime/src/types/instruction.ts +50 -7
- package/packages/agent-runtime/src/types/runtime.ts +7 -0
- package/packages/agent-runtime/src/types/state.ts +18 -1
- package/packages/const/package.json +1 -1
- package/packages/const/src/auth.ts +6 -2
- package/packages/const/src/hotkeys.ts +9 -3
- package/packages/const/src/settings/common.ts +1 -0
- package/packages/const/src/settings/tool.ts +1 -5
- package/packages/const/src/url.ts +1 -0
- package/packages/const/src/user.ts +4 -2
- package/packages/const/src/utils/merge.ts +3 -3
- package/packages/const/src/version.ts +0 -5
- package/packages/context-engine/package.json +2 -2
- package/packages/context-engine/src/base/BaseProcessor.ts +13 -13
- package/packages/context-engine/src/base/BaseProvider.ts +2 -2
- package/packages/context-engine/src/base/__tests__/BaseProcessor.test.ts +5 -5
- package/packages/context-engine/src/index.ts +1 -1
- package/packages/context-engine/src/processors/GroupMessageFlatten.ts +8 -6
- package/packages/context-engine/src/processors/MessageCleanup.ts +7 -6
- package/packages/context-engine/src/processors/MessageContent.ts +115 -21
- package/packages/context-engine/src/processors/PlaceholderVariables.ts +4 -4
- package/packages/context-engine/src/processors/ToolCall.ts +19 -18
- package/packages/context-engine/src/processors/ToolMessageReorder.ts +10 -10
- package/packages/context-engine/src/processors/__tests__/GroupMessageFlatten.test.ts +12 -12
- package/packages/context-engine/src/processors/__tests__/MessageCleanup.test.ts +28 -0
- package/packages/context-engine/src/processors/__tests__/MessageContent.test.ts +239 -0
- package/packages/context-engine/src/processors/__tests__/ToolCall.test.ts +59 -0
- package/packages/context-engine/src/providers/HistorySummary.ts +6 -6
- package/packages/context-engine/src/providers/KnowledgeInjector.ts +78 -0
- package/packages/context-engine/src/providers/ToolSystemRole.ts +7 -7
- package/packages/context-engine/src/providers/index.ts +2 -0
- package/packages/context-engine/src/tools/ToolNameResolver.ts +1 -0
- package/packages/context-engine/src/tools/ToolsEngine.ts +8 -8
- package/packages/context-engine/src/tools/__tests__/ToolNameResolver.test.ts +57 -0
- package/packages/context-engine/src/types.ts +36 -35
- package/packages/conversation-flow/package.json +13 -0
- package/packages/conversation-flow/src/__tests__/fixtures/index.ts +44 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistant-chain-with-followup.json +56 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistantGroup/assistant-with-tools.json +145 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistantGroup/index.ts +8 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistantGroup/tools-with-branches.json +107 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/active-index-1.json +131 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/assistant-branch.json +96 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/assistant-group-branches.json +249 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/assistant-user-branch.json +123 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/conversation.json +128 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/index.ts +18 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/multi-assistant-group.json +260 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/nested.json +179 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/compare/index.ts +8 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/compare/simple.json +85 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/compare/with-tools.json +169 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/index.ts +12 -0
- package/packages/conversation-flow/src/__tests__/fixtures/inputs/linear-conversation.json +59 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistant-chain-with-followup.json +135 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistantGroup/assistant-with-tools.json +340 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistantGroup/index.ts +8 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistantGroup/tools-with-branches.json +261 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/active-index-1.json +246 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/assistant-branch.json +208 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/assistant-group-branches.json +481 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/assistant-user-branch.json +254 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/conversation.json +264 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/index.ts +18 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/multi-assistant-group.json +407 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/nested.json +405 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/compare/index.ts +8 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/compare/simple.json +224 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/compare/with-tools.json +418 -0
- package/packages/conversation-flow/src/__tests__/fixtures/outputs/linear-conversation.json +138 -0
- package/packages/conversation-flow/src/__tests__/indexing.test.ts +513 -0
- package/packages/conversation-flow/src/__tests__/parse.test.ts +132 -0
- package/packages/conversation-flow/src/__tests__/structuring.test.ts +600 -0
- package/packages/conversation-flow/src/index.ts +17 -0
- package/packages/conversation-flow/src/indexing.ts +58 -0
- package/packages/conversation-flow/src/parse.ts +97 -0
- package/packages/conversation-flow/src/structuring.ts +38 -0
- package/packages/conversation-flow/src/transformation/BranchResolver.ts +76 -0
- package/packages/conversation-flow/src/transformation/ContextTreeBuilder.ts +297 -0
- package/packages/conversation-flow/src/transformation/FlatListBuilder.ts +581 -0
- package/packages/conversation-flow/src/transformation/MessageCollector.ts +166 -0
- package/packages/conversation-flow/src/transformation/MessageTransformer.ts +177 -0
- package/packages/conversation-flow/src/transformation/__tests__/BranchResolver.test.ts +214 -0
- package/packages/conversation-flow/src/transformation/__tests__/ContextTreeBuilder.test.ts +449 -0
- package/packages/conversation-flow/src/transformation/__tests__/FlatListBuilder.test.ts +558 -0
- package/packages/conversation-flow/src/transformation/__tests__/MessageCollector.test.ts +220 -0
- package/packages/conversation-flow/src/transformation/__tests__/MessageTransformer.test.ts +286 -0
- package/packages/conversation-flow/src/transformation/index.ts +78 -0
- package/packages/conversation-flow/src/types/contextTree.ts +65 -0
- package/packages/conversation-flow/src/types/flatMessageList.ts +54 -0
- package/packages/conversation-flow/src/types/index.ts +25 -0
- package/packages/conversation-flow/src/types/shared.ts +63 -0
- package/packages/conversation-flow/vitest.config.mts +10 -0
- package/packages/database/migrations/0042_improve_agent_index.sql +1 -0
- package/packages/database/migrations/0043_add_ai_model_settings.sql +1 -0
- package/packages/database/migrations/0044_high_toxin.sql +1 -0
- package/packages/database/migrations/0045_add_tool_intervention.sql +1 -0
- package/packages/database/migrations/0046_add_parent_id.sql +15 -0
- package/packages/database/migrations/0047_add_slug_document.sql +2 -0
- package/packages/database/migrations/0048_add_editor_data.sql +1 -0
- package/packages/database/migrations/0049_better_auth.sql +49 -0
- package/packages/database/migrations/0050_thread_and_user_id.sql +18 -0
- package/packages/database/migrations/0051_add_market_into_user_settings.sql +1 -0
- package/packages/database/migrations/0052_topic_and_messages.sql +9 -0
- package/packages/database/migrations/0053_better_auth_admin.sql +5 -0
- package/packages/database/migrations/0054_better_auth_two_factor.sql +49 -0
- package/packages/database/migrations/0055_rename_phone_number_to_phone.sql +4 -0
- package/packages/database/migrations/0056_update_agent_slug_index.sql +2 -0
- package/packages/database/migrations/meta/0039_snapshot.json +1 -1
- package/packages/database/migrations/meta/0042_snapshot.json +7800 -0
- package/packages/database/migrations/meta/0043_snapshot.json +8419 -0
- package/packages/database/migrations/meta/0044_snapshot.json +7813 -0
- package/packages/database/migrations/meta/0045_snapshot.json +8431 -0
- package/packages/database/migrations/meta/0046_snapshot.json +7879 -0
- package/packages/database/migrations/meta/0047_snapshot.json +7907 -0
- package/packages/database/migrations/meta/0048_snapshot.json +7913 -0
- package/packages/database/migrations/meta/0049_snapshot.json +8151 -0
- package/packages/database/migrations/meta/0050_snapshot.json +8792 -0
- package/packages/database/migrations/meta/0051_snapshot.json +8168 -0
- package/packages/database/migrations/meta/0052_snapshot.json +8850 -0
- package/packages/database/migrations/meta/0053_snapshot.json +8247 -0
- package/packages/database/migrations/meta/0054_snapshot.json +8402 -0
- package/packages/database/migrations/meta/0055_snapshot.json +8396 -0
- package/packages/database/migrations/meta/0056_snapshot.json +8411 -0
- package/packages/database/migrations/meta/_journal.json +105 -0
- package/packages/database/package.json +3 -3
- package/packages/database/src/client/db.test.ts +1 -2
- package/packages/database/src/client/db.ts +39 -39
- package/packages/database/src/client/pglite.ts +1 -1
- package/packages/database/src/core/db-adaptor.ts +4 -4
- package/packages/database/src/core/electron.ts +1 -1
- package/packages/database/src/core/migrations.json +164 -0
- package/packages/database/src/core/web-server.ts +2 -1
- package/packages/database/src/index.ts +2 -0
- package/packages/database/src/models/__tests__/agent.test.ts +274 -6
- package/packages/database/src/models/__tests__/apiKey.test.ts +444 -0
- package/packages/database/src/models/__tests__/asyncTask.test.ts +1 -2
- package/packages/database/src/models/__tests__/chunk.test.ts +38 -0
- package/packages/database/src/models/__tests__/document.test.ts +312 -0
- package/packages/database/src/models/__tests__/embedding.test.ts +294 -0
- package/packages/database/src/models/__tests__/file.test.ts +95 -31
- package/packages/database/src/models/__tests__/generation.test.ts +1 -2
- package/packages/database/src/models/__tests__/generationBatch.test.ts +1 -2
- package/packages/database/src/models/__tests__/messages/message.create.test.ts +549 -0
- package/packages/database/src/models/__tests__/messages/message.delete.test.ts +481 -0
- package/packages/database/src/models/__tests__/messages/message.query.test.ts +1187 -0
- package/packages/database/src/models/__tests__/messages/message.stats.test.ts +633 -0
- package/packages/database/src/models/__tests__/messages/message.update.test.ts +757 -0
- package/packages/database/src/models/__tests__/oauthHandoff.test.ts +261 -0
- package/packages/database/src/models/__tests__/session.test.ts +1 -2
- package/packages/database/src/models/__tests__/thread.test.ts +327 -0
- package/packages/database/src/models/__tests__/topic.test.ts +12 -6
- package/packages/database/src/models/__tests__/user.test.ts +372 -0
- package/packages/database/src/models/__tests__/userMemories.test.ts +1382 -0
- package/packages/database/src/models/agent.ts +38 -14
- package/packages/database/src/models/aiModel.ts +1 -0
- package/packages/database/src/models/aiProvider.ts +7 -7
- package/packages/database/src/models/apiKey.ts +2 -2
- package/packages/database/src/models/chunk.ts +4 -2
- package/packages/database/src/models/document.ts +15 -10
- package/packages/database/src/models/drizzleMigration.ts +1 -1
- package/packages/database/src/models/file.ts +67 -42
- package/packages/database/src/models/message.ts +21 -93
- package/packages/database/src/models/oauthHandoff.ts +19 -19
- package/packages/database/src/models/session.ts +74 -21
- package/packages/database/src/models/topic.ts +10 -10
- package/packages/database/src/models/user.ts +38 -14
- package/packages/database/src/models/userMemory.ts +993 -0
- package/packages/database/src/repositories/aiInfra/index.test.ts +205 -7
- package/packages/database/src/repositories/aiInfra/index.ts +9 -8
- package/packages/database/src/repositories/dataExporter/index.test.ts +1 -1
- package/packages/database/src/repositories/dataImporter/__tests__/index.test.ts +1 -2
- package/packages/database/src/repositories/dataImporter/deprecated/__tests__/index.test.ts +1 -1
- package/packages/database/src/repositories/dataImporter/deprecated/index.ts +6 -6
- package/packages/database/src/repositories/dataImporter/index.ts +70 -71
- package/packages/database/src/repositories/knowledge/index.test.ts +312 -0
- package/packages/database/src/repositories/knowledge/index.ts +417 -0
- package/packages/database/src/repositories/tableViewer/index.test.ts +3 -3
- package/packages/database/src/repositories/tableViewer/index.ts +4 -5
- package/packages/database/src/schemas/agent.ts +9 -6
- package/packages/database/src/schemas/aiInfra.ts +3 -2
- package/packages/database/src/schemas/betterAuth.ts +120 -0
- package/packages/database/src/schemas/file.ts +80 -0
- package/packages/database/src/schemas/generation.ts +16 -16
- package/packages/database/src/schemas/index.ts +1 -1
- package/packages/database/src/schemas/message.ts +14 -14
- package/packages/database/src/schemas/nextauth.ts +3 -3
- package/packages/database/src/schemas/oidc.ts +36 -36
- package/packages/database/src/schemas/rag.ts +32 -2
- package/packages/database/src/schemas/ragEvals.ts +1 -2
- package/packages/database/src/schemas/relations.ts +2 -3
- package/packages/database/src/schemas/topic.ts +16 -7
- package/packages/database/src/schemas/user.ts +19 -5
- package/packages/database/src/schemas/userMemories.ts +22 -5
- package/packages/database/src/server/models/__tests__/adapter.test.ts +97 -69
- package/packages/database/src/server/models/__tests__/user.test.ts +2 -5
- package/packages/database/src/server/models/ragEval/evaluation.ts +1 -1
- package/packages/database/src/utils/genWhere.test.ts +243 -0
- package/packages/electron-client-ipc/package.json +1 -1
- package/packages/electron-client-ipc/src/events/index.ts +6 -1
- package/packages/electron-client-ipc/src/events/remoteServer.ts +8 -0
- package/packages/electron-client-ipc/src/events/system.ts +1 -3
- package/packages/electron-client-ipc/src/types/localSystem.ts +30 -2
- package/packages/electron-client-ipc/src/types/system.ts +1 -0
- package/packages/electron-server-ipc/package.json +2 -2
- package/packages/electron-server-ipc/src/ipcClient.ts +31 -31
- package/packages/electron-server-ipc/src/ipcServer.ts +15 -15
- package/packages/fetch-sse/package.json +29 -0
- package/packages/fetch-sse/src/__tests__/fetchSSE.test.ts +708 -0
- package/packages/fetch-sse/src/__tests__/headers.test.ts +367 -0
- package/packages/fetch-sse/src/__tests__/parseError.test.ts +91 -0
- package/packages/fetch-sse/src/fetchSSE.ts +536 -0
- package/packages/fetch-sse/src/headers.ts +27 -0
- package/packages/fetch-sse/src/parseError.ts +24 -0
- package/packages/fetch-sse/src/request.ts +28 -0
- package/packages/file-loaders/package.json +3 -3
- package/packages/file-loaders/src/loaders/docx/index.ts +1 -1
- package/packages/memory-extract/package.json +4 -4
- package/packages/model-bank/package.json +1 -0
- package/packages/model-bank/src/aiModels/aihubmix.ts +246 -34
- package/packages/model-bank/src/aiModels/anthropic.ts +37 -2
- package/packages/model-bank/src/aiModels/bedrock.ts +55 -12
- package/packages/model-bank/src/aiModels/cometapi.ts +8 -8
- package/packages/model-bank/src/aiModels/deepseek.ts +2 -2
- package/packages/model-bank/src/aiModels/fal.ts +2 -2
- package/packages/model-bank/src/aiModels/google.ts +155 -93
- package/packages/model-bank/src/aiModels/index.ts +3 -0
- package/packages/model-bank/src/aiModels/infiniai.ts +5 -22
- package/packages/model-bank/src/aiModels/mistral.ts +2 -1
- package/packages/model-bank/src/aiModels/moonshot.ts +46 -0
- package/packages/model-bank/src/aiModels/nebius.ts +1 -1
- package/packages/model-bank/src/aiModels/newapi.ts +3 -3
- package/packages/model-bank/src/aiModels/novita.ts +3 -2
- package/packages/model-bank/src/aiModels/nvidia.ts +14 -0
- package/packages/model-bank/src/aiModels/ollamacloud.ts +38 -4
- package/packages/model-bank/src/aiModels/openai.ts +113 -42
- package/packages/model-bank/src/aiModels/openrouter.ts +29 -1
- package/packages/model-bank/src/aiModels/qiniu.ts +126 -0
- package/packages/model-bank/src/aiModels/qwen.ts +210 -13
- package/packages/model-bank/src/aiModels/siliconcloud.ts +20 -61
- package/packages/model-bank/src/aiModels/stepfun.ts +1 -1
- package/packages/model-bank/src/aiModels/vercelaigateway.ts +1 -18
- package/packages/model-bank/src/aiModels/vertexai.ts +92 -1
- package/packages/model-bank/src/aiModels/volcengine.ts +4 -4
- package/packages/model-bank/src/aiModels/wenxin.ts +1348 -291
- package/packages/model-bank/src/aiModels/xai.ts +85 -6
- package/packages/model-bank/src/aiModels/zenmux.ts +1455 -0
- package/packages/model-bank/src/aiModels/zhipu.ts +1 -1
- package/packages/model-bank/src/const/modelProvider.ts +1 -0
- package/packages/model-bank/src/standard-parameters/index.ts +23 -14
- package/packages/model-bank/src/types/aiModel.ts +29 -10
- package/packages/model-runtime/package.json +3 -3
- package/packages/model-runtime/src/const/models.ts +62 -24
- package/packages/model-runtime/src/core/RouterRuntime/baseRuntimeMap.ts +2 -0
- package/packages/model-runtime/src/core/RouterRuntime/createRuntime.ts +42 -18
- package/packages/model-runtime/src/core/contextBuilders/anthropic.test.ts +17 -11
- package/packages/model-runtime/src/core/contextBuilders/anthropic.ts +15 -1
- package/packages/model-runtime/src/core/contextBuilders/google.test.ts +548 -15
- package/packages/model-runtime/src/core/contextBuilders/google.ts +57 -9
- package/packages/model-runtime/src/core/contextBuilders/openai.test.ts +93 -7
- package/packages/model-runtime/src/core/contextBuilders/openai.ts +47 -14
- package/packages/model-runtime/src/core/openaiCompatibleFactory/createImage.test.ts +1 -1
- package/packages/model-runtime/src/core/openaiCompatibleFactory/createImage.ts +1 -1
- package/packages/model-runtime/src/core/openaiCompatibleFactory/index.test.ts +113 -72
- package/packages/model-runtime/src/core/openaiCompatibleFactory/index.ts +159 -109
- package/packages/model-runtime/src/core/parameterResolver.test.ts +34 -50
- package/packages/model-runtime/src/core/parameterResolver.ts +0 -38
- package/packages/model-runtime/src/core/streams/bedrock/claude.ts +17 -3
- package/packages/model-runtime/src/core/streams/google/google-ai.test.ts +1600 -807
- package/packages/model-runtime/src/core/streams/google/index.ts +139 -10
- package/packages/model-runtime/src/core/streams/ollama.test.ts +67 -0
- package/packages/model-runtime/src/core/streams/ollama.ts +5 -5
- package/packages/model-runtime/src/core/streams/openai/__snapshots__/responsesStream.test.ts.snap +1007 -0
- package/packages/model-runtime/src/core/streams/openai/openai.test.ts +310 -0
- package/packages/model-runtime/src/core/streams/openai/openai.ts +67 -0
- package/packages/model-runtime/src/core/streams/openai/responsesStream.test.ts +1 -1
- package/packages/model-runtime/src/core/streams/protocol.ts +20 -0
- package/packages/model-runtime/src/core/streams/vertex-ai.ts +1 -2
- package/packages/model-runtime/src/core/usageConverters/index.ts +1 -0
- package/packages/model-runtime/src/core/usageConverters/utils/resolveImageSinglePrice.ts +34 -0
- package/packages/model-runtime/src/helpers/mergeChatMethodOptions.ts +2 -1
- package/packages/model-runtime/src/index.ts +2 -1
- package/packages/model-runtime/src/providers/aihubmix/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/aihubmix/index.ts +5 -0
- package/packages/model-runtime/src/providers/anthropic/generateObject.test.ts +1 -1
- package/packages/model-runtime/src/providers/anthropic/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/anthropic/index.ts +21 -70
- package/packages/model-runtime/src/providers/anthropic/resolveCacheTTL.ts +44 -0
- package/packages/model-runtime/src/providers/anthropic/resolveMaxTokens.ts +35 -0
- package/packages/model-runtime/src/providers/azureOpenai/index.ts +3 -1
- package/packages/model-runtime/src/providers/azureai/index.ts +37 -3
- package/packages/model-runtime/src/providers/baichuan/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/bedrock/index.test.ts +133 -19
- package/packages/model-runtime/src/providers/bedrock/index.ts +89 -16
- package/packages/model-runtime/src/providers/bfl/createImage.test.ts +4 -4
- package/packages/model-runtime/src/providers/bfl/createImage.ts +1 -1
- package/packages/model-runtime/src/providers/cloudflare/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/cloudflare/index.ts +3 -1
- package/packages/model-runtime/src/providers/cohere/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/comfyui/__tests__/index.test.ts +1 -2
- package/packages/model-runtime/src/providers/comfyui/auth/AuthManager.ts +1 -2
- package/packages/model-runtime/src/providers/comfyui/index.ts +2 -7
- package/packages/model-runtime/src/providers/deepseek/index.test.ts +86 -0
- package/packages/model-runtime/src/providers/deepseek/index.ts +24 -0
- package/packages/model-runtime/src/providers/google/createImage.test.ts +8 -7
- package/packages/model-runtime/src/providers/google/createImage.ts +14 -9
- package/packages/model-runtime/src/providers/google/generateObject.test.ts +1 -1
- package/packages/model-runtime/src/providers/google/index.test.ts +98 -5
- package/packages/model-runtime/src/providers/google/index.ts +36 -11
- package/packages/model-runtime/src/providers/groq/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/hunyuan/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/minimax/createImage.test.ts +1 -1
- package/packages/model-runtime/src/providers/minimax/index.ts +36 -6
- package/packages/model-runtime/src/providers/mistral/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/moonshot/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/moonshot/index.ts +17 -4
- package/packages/model-runtime/src/providers/newapi/index.test.ts +3 -75
- package/packages/model-runtime/src/providers/newapi/index.ts +59 -29
- package/packages/model-runtime/src/providers/novita/__snapshots__/index.test.ts.snap +584 -0
- package/packages/model-runtime/src/providers/novita/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/ollama/index.test.ts +43 -32
- package/packages/model-runtime/src/providers/ollama/index.ts +31 -7
- package/packages/model-runtime/src/providers/openai/__snapshots__/index.test.ts.snap +517 -0
- package/packages/model-runtime/src/providers/openai/index.test.ts +44 -0
- package/packages/model-runtime/src/providers/openrouter/index.test.ts +4 -3
- package/packages/model-runtime/src/providers/openrouter/index.ts +1 -1
- package/packages/model-runtime/src/providers/perplexity/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/ppio/__snapshots__/index.test.ts.snap +27 -0
- package/packages/model-runtime/src/providers/ppio/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/qwen/createImage.test.ts +1 -1
- package/packages/model-runtime/src/providers/qwen/index.ts +9 -3
- package/packages/model-runtime/src/providers/search1api/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/siliconcloud/createImage.ts +1 -1
- package/packages/model-runtime/src/providers/taichu/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/wenxin/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/wenxin/index.ts +22 -1
- package/packages/model-runtime/src/providers/zenmux/index.test.ts +320 -0
- package/packages/model-runtime/src/providers/zenmux/index.ts +84 -0
- package/packages/model-runtime/src/providers/zhipu/index.test.ts +1 -1
- package/packages/model-runtime/src/runtimeMap.ts +3 -0
- package/packages/model-runtime/src/types/chat.ts +16 -0
- package/packages/model-runtime/src/types/error.ts +11 -8
- package/packages/model-runtime/src/types/toolsCalling.ts +3 -1
- package/packages/model-runtime/src/utils/errorResponse.test.ts +1 -1
- package/packages/model-runtime/src/utils/googleErrorParser.test.ts +125 -0
- package/packages/model-runtime/src/utils/googleErrorParser.ts +108 -77
- package/packages/model-runtime/src/utils/modelParse.ts +6 -0
- package/packages/model-runtime/src/utils/postProcessModelList.ts +15 -13
- package/packages/obervability-otel/package.json +15 -15
- package/packages/obervability-otel/src/api.ts +2 -0
- package/packages/obervability-otel/src/node.ts +17 -7
- package/packages/obervability-otel/src/trpc/convention.ts +16 -0
- package/packages/obervability-otel/src/trpc/index.test.ts +38 -0
- package/packages/obervability-otel/src/trpc/index.ts +62 -0
- package/packages/obervability-otel/src/trpc/metrics.ts +31 -0
- package/packages/prompts/package.json +1 -1
- package/packages/prompts/src/prompts/files/__snapshots__/knowledgeBase.test.ts.snap +103 -0
- package/packages/prompts/src/prompts/files/index.ts +3 -0
- package/packages/prompts/src/prompts/files/knowledgeBase.test.ts +167 -0
- package/packages/prompts/src/prompts/files/knowledgeBase.ts +85 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/__snapshots__/formatFileContents.test.ts.snap +75 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/__snapshots__/formatNoSearchResults.test.ts.snap +45 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/__snapshots__/formatSearchResults.test.ts.snap +82 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/formatFileContents.test.ts +118 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/formatFileContents.ts +31 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/formatNoSearchResults.test.ts +25 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/formatNoSearchResults.ts +13 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/formatSearchResults.test.ts +191 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/formatSearchResults.ts +50 -0
- package/packages/prompts/src/prompts/knowledgeBaseQA/index.ts +6 -0
- package/packages/python-interpreter/src/worker.ts +18 -18
- package/packages/ssrf-safe-fetch/index.browser.ts +14 -0
- package/packages/ssrf-safe-fetch/index.ts +4 -1
- package/packages/ssrf-safe-fetch/package.json +9 -2
- package/packages/types/src/agent/chatConfig.ts +29 -8
- package/packages/types/src/aiChat.ts +2 -0
- package/packages/types/src/aiProvider.ts +1 -1
- package/packages/types/src/discover/assistants.ts +16 -0
- package/packages/types/src/discover/mcp.ts +7 -0
- package/packages/types/src/document/index.ts +50 -38
- package/packages/types/src/exportConfig.ts +15 -15
- package/packages/types/src/fetch.ts +9 -9
- package/packages/types/src/files/index.ts +3 -0
- package/packages/types/src/files/list.ts +11 -1
- package/packages/types/src/files/upload.ts +1 -1
- package/packages/types/src/generation/index.ts +5 -5
- package/packages/types/src/hotkey.ts +6 -5
- package/packages/types/src/importer.ts +6 -6
- package/packages/types/src/index.ts +6 -1
- package/packages/types/src/knowledgeBase/index.ts +1 -0
- package/packages/types/src/llm.ts +1 -1
- package/packages/types/src/message/common/base.ts +28 -2
- package/packages/types/src/message/common/metadata.ts +29 -2
- package/packages/types/src/message/common/tools.ts +20 -1
- package/packages/types/src/message/db/item.ts +15 -1
- package/packages/types/src/message/ui/chat.ts +25 -2
- package/packages/types/src/message/ui/extra.ts +2 -2
- package/packages/types/src/message/ui/params.ts +66 -7
- package/packages/types/src/meta.ts +7 -3
- package/packages/types/src/openai/chat.ts +15 -15
- package/packages/types/src/openai/image.ts +1 -1
- package/packages/types/src/plugins/mcp.ts +33 -30
- package/packages/types/src/plugins/protocol.ts +43 -43
- package/packages/types/src/rag.ts +13 -4
- package/packages/types/src/search.ts +4 -4
- package/packages/types/src/serverConfig.ts +2 -6
- package/packages/types/src/session/agentSession.ts +2 -0
- package/packages/types/src/tool/builtin.ts +15 -4
- package/packages/types/src/tool/intervention.ts +70 -3
- package/packages/types/src/tool/plugin.ts +5 -4
- package/packages/types/src/tool/search/index.ts +8 -2
- package/packages/types/src/topic/thread.ts +3 -3
- package/packages/types/src/topic/topic.ts +16 -2
- package/packages/types/src/usage/usageRecord.ts +54 -0
- package/packages/types/src/user/index.ts +2 -76
- package/packages/types/src/user/preference.ts +112 -0
- package/packages/types/src/user/settings/general.ts +3 -0
- package/packages/types/src/user/settings/hotkey.ts +1 -1
- package/packages/types/src/user/settings/index.ts +26 -0
- package/packages/types/src/user/settings/keyVaults.ts +0 -67
- package/packages/types/src/user/settings/market.ts +17 -0
- package/packages/types/src/user/settings/tool.ts +2 -39
- package/packages/types/src/userMemory/index.ts +3 -0
- package/packages/types/src/userMemory/layers.ts +54 -0
- package/packages/types/src/userMemory/shared.ts +64 -0
- package/packages/types/src/userMemory/tools.ts +240 -0
- package/packages/utils/package.json +2 -2
- package/packages/utils/src/apiKey.test.ts +139 -0
- package/packages/utils/src/client/clipboard.ts +2 -2
- package/packages/utils/src/client/exportFile.ts +10 -10
- package/packages/utils/src/client/parserPlaceholder.ts +19 -19
- package/packages/utils/src/client/topic.ts +10 -10
- package/packages/utils/src/client/xor-obfuscation.ts +11 -11
- package/packages/utils/src/clientIP.ts +6 -6
- package/packages/utils/src/colorUtils.test.ts +167 -0
- package/packages/utils/src/compass.ts +11 -11
- package/packages/utils/src/compressImage.ts +3 -3
- package/packages/utils/src/format.ts +2 -2
- package/packages/utils/src/imageToBase64.ts +17 -10
- package/packages/utils/src/index.ts +2 -1
- package/packages/utils/src/merge.ts +3 -3
- package/packages/utils/src/multimodalContent.ts +25 -0
- package/packages/utils/src/object.ts +3 -3
- package/packages/utils/src/sanitizeUTF8.ts +4 -4
- package/packages/utils/src/server/__tests__/auth.test.ts +52 -0
- package/packages/utils/src/server/__tests__/response.test.ts +79 -0
- package/packages/utils/src/server/auth.ts +24 -7
- package/packages/utils/src/server/geo.ts +9 -9
- package/packages/utils/src/server/index.ts +1 -0
- package/packages/utils/src/server/response.ts +110 -0
- package/packages/utils/src/server/validateRedirectHost.test.ts +352 -0
- package/packages/utils/src/server/xor.ts +7 -7
- package/packages/utils/src/time.ts +4 -0
- package/packages/utils/src/tokenizer/index.ts +3 -11
- package/packages/utils/src/toolManifest.ts +4 -4
- package/packages/utils/src/trace.test.ts +359 -0
- package/packages/utils/src/uriParser.ts +4 -4
- package/packages/web-crawler/package.json +2 -2
- package/packages/web-crawler/src/crawImpl/browserless.ts +1 -1
- package/packages/web-crawler/src/crawImpl/naive.ts +9 -9
- package/packages/web-crawler/src/crawler.ts +5 -5
- package/packages/web-crawler/src/type.ts +4 -4
- package/packages/web-crawler/src/urlRules.ts +13 -13
- package/packages/web-crawler/src/utils/appUrlRules.ts +5 -5
- package/renovate.json +40 -1
- package/scripts/checkConsoleLog.mts +148 -0
- package/scripts/migrateServerDB/errorHint.js +26 -6
- package/scripts/migrateServerDB/index.ts +5 -1
- package/scripts/prebuild.mts +20 -10
- package/src/app/(backend)/api/auth/[...all]/route.ts +19 -0
- package/src/app/(backend)/api/auth/check-user/route.ts +62 -0
- package/src/app/(backend)/api/webhooks/clerk/route.ts +1 -2
- package/src/app/(backend)/f/[id]/route.ts +55 -0
- package/src/app/(backend)/market/agent/[[...segments]]/route.ts +153 -0
- package/src/app/(backend)/market/oidc/[[...segments]]/route.ts +207 -0
- package/src/app/(backend)/middleware/auth/index.ts +22 -4
- package/src/app/(backend)/middleware/auth/utils.test.ts +16 -0
- package/src/app/(backend)/middleware/auth/utils.ts +13 -10
- package/src/app/(backend)/trpc/async/[trpc]/route.ts +9 -3
- package/src/app/(backend)/trpc/desktop/[trpc]/route.ts +15 -9
- package/src/app/(backend)/trpc/lambda/[trpc]/route.ts +9 -3
- package/src/app/(backend)/trpc/mobile/[trpc]/route.ts +9 -3
- package/src/app/(backend)/trpc/tools/[trpc]/route.ts +9 -3
- package/src/app/(backend)/webapi/chat/[provider]/route.test.ts +1 -0
- package/src/app/(backend)/webapi/chat/[provider]/route.ts +1 -1
- package/src/app/(backend)/webapi/models/[provider]/pull/route.ts +1 -1
- package/src/app/(backend)/webapi/models/[provider]/route.ts +1 -1
- package/src/app/(backend)/webapi/stt/openai/route.ts +0 -2
- package/src/app/(backend)/webapi/text-to-image/[provider]/route.ts +1 -1
- package/src/app/(backend)/webapi/tts/edge/route.ts +8 -2
- package/src/app/(backend)/webapi/tts/microsoft/route.ts +8 -2
- package/src/app/(backend)/webapi/tts/openai/route.ts +15 -3
- package/src/app/[variants]/(auth)/reset-password/layout.tsx +12 -0
- package/src/app/[variants]/(auth)/reset-password/page.tsx +209 -0
- package/src/app/[variants]/(auth)/signin/layout.tsx +12 -0
- package/src/app/[variants]/(auth)/signin/page.tsx +448 -0
- package/src/app/[variants]/(auth)/signup/[[...signup]]/BetterAuthSignUpForm.tsx +192 -0
- package/src/app/[variants]/(auth)/signup/[[...signup]]/page.tsx +30 -12
- package/src/app/[variants]/(auth)/verify-email/layout.tsx +12 -0
- package/src/app/[variants]/(auth)/verify-email/page.tsx +164 -0
- package/src/app/[variants]/(main)/(mobile)/me/(home)/__tests__/UserBanner.test.tsx +19 -14
- package/src/app/[variants]/(main)/(mobile)/me/(home)/__tests__/useCategory.test.tsx +15 -33
- package/src/app/[variants]/(main)/(mobile)/me/(home)/features/UserBanner.tsx +7 -11
- package/src/app/[variants]/(main)/(mobile)/me/(home)/features/useCategory.tsx +9 -41
- package/src/app/[variants]/(main)/(mobile)/me/(home)/index.tsx +25 -0
- package/src/app/[variants]/(main)/(mobile)/me/(home)/layout.tsx +13 -16
- package/src/app/[variants]/(main)/(mobile)/me/profile/features/Category.tsx +22 -27
- package/src/app/[variants]/(main)/(mobile)/me/profile/features/Header.tsx +3 -3
- package/src/app/[variants]/(main)/(mobile)/me/profile/index.tsx +16 -0
- package/src/app/[variants]/(main)/(mobile)/me/profile/layout.tsx +9 -11
- package/src/app/[variants]/(main)/(mobile)/me/settings/features/Header.tsx +3 -3
- package/src/app/[variants]/(main)/(mobile)/me/settings/features/useCategory.tsx +8 -18
- package/src/app/[variants]/(main)/(mobile)/me/settings/index.tsx +16 -0
- package/src/app/[variants]/(main)/(mobile)/me/settings/layout.tsx +15 -13
- package/src/app/[variants]/(main)/changelog/_layout/Desktop/index.tsx +6 -5
- package/src/app/[variants]/(main)/changelog/_layout/Mobile/Header.tsx +3 -3
- package/src/app/[variants]/(main)/changelog/_layout/Mobile/index.tsx +5 -5
- package/src/app/[variants]/(main)/changelog/features/Post.tsx +7 -4
- package/src/app/[variants]/(main)/changelog/index.tsx +55 -0
- package/src/app/[variants]/(main)/chat/_layout/Desktop/SessionPanel.tsx +12 -7
- package/src/app/[variants]/(main)/chat/_layout/Desktop/index.tsx +7 -8
- package/src/app/[variants]/(main)/chat/_layout/FeatureFlagsProvider.tsx +24 -0
- package/src/app/[variants]/(main)/chat/_layout/Mobile.tsx +5 -4
- package/src/app/[variants]/(main)/chat/_layout/type.ts +0 -1
- package/src/app/[variants]/(main)/chat/components/ConversationArea.tsx +29 -0
- package/src/app/[variants]/(main)/chat/components/PortalPanel.tsx +28 -0
- package/src/app/[variants]/(main)/chat/components/SessionPanel.tsx +33 -0
- package/src/app/[variants]/(main)/chat/components/TopicSidebar.tsx +30 -0
- package/src/app/[variants]/(main)/chat/components/WorkspaceLayout.tsx +60 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatHydration/index.tsx +42 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/ClassicChat.tsx +81 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/GroupChat.tsx +126 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/MessageFromUrl.tsx +30 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/index.tsx +16 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/V1Mobile/index.tsx +89 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/V1Mobile/useSend.ts +109 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/useSend.ts +322 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/ChatItem/Thread.tsx +62 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/ChatItem/index.tsx +85 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/Content.tsx +45 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/WelcomeChatItem/AgentWelcome/OpeningQuestions.tsx +75 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/WelcomeChatItem/GroupWelcome/GroupUsageSuggest.tsx +164 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/index.tsx +28 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatMinimap/index.tsx +380 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ThreadHydration.tsx +45 -0
- package/src/app/[variants]/(main)/chat/components/topic/features/Topic/TopicListContent/TopicItem/TopicContent.tsx +258 -0
- package/src/app/[variants]/(main)/chat/components/topic/features/Topic/TopicListContent/TopicItem/index.tsx +116 -0
- package/src/app/[variants]/(main)/chat/features/PageTitle/index.tsx +1 -2
- package/src/app/[variants]/(main)/chat/index.tsx +29 -0
- package/src/app/[variants]/(main)/chat/session/features/SessionHydration.tsx +47 -0
- package/src/app/[variants]/(main)/chat/session/features/SessionListContent/Inbox/index.tsx +61 -0
- package/src/app/[variants]/(main)/chat/session/features/SessionListContent/List/Item/Actions.tsx +204 -0
- package/src/app/[variants]/(main)/chat/session/features/SessionListContent/List/Item/index.tsx +157 -0
- package/src/app/[variants]/(main)/chat/session/features/SessionListContent/List/index.tsx +100 -0
- package/src/app/[variants]/(main)/chat/session/layout/Mobile/SessionHeader.tsx +44 -0
- package/src/app/[variants]/(main)/chat/settings/_layout/Desktop/Header.tsx +3 -3
- package/src/app/[variants]/(main)/chat/settings/_layout/Mobile/Header.tsx +3 -3
- package/src/app/[variants]/(main)/chat/settings/features/AgentInfoDescription/index.tsx +349 -0
- package/src/app/[variants]/(main)/chat/settings/features/HeaderContent.tsx +2 -2
- package/src/app/[variants]/(main)/chat/settings/features/PublishResultModal/index.tsx +64 -0
- package/src/app/[variants]/(main)/chat/settings/features/SmartAgentActionButton/MarketPublishButton.tsx +194 -0
- package/src/app/[variants]/(main)/chat/settings/features/SmartAgentActionButton/MarketPublishModal.tsx +376 -0
- package/src/app/[variants]/(main)/chat/settings/features/SmartAgentActionButton/index.tsx +75 -0
- package/src/app/[variants]/(main)/chat/settings/index.tsx +65 -0
- package/src/app/[variants]/(main)/components/Link.tsx +21 -0
- package/src/app/[variants]/(main)/discover/(detail)/_layout/Desktop/index.tsx +38 -0
- package/src/app/[variants]/(main)/discover/(detail)/_layout/Mobile/index.tsx +3 -3
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Capabilities/Block.tsx +27 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Capabilities/Plugins.tsx +37 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Nav.tsx +129 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Overview/TagList.tsx +56 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Overview/index.tsx +98 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Related/index.tsx +40 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/SystemRole/TagList.tsx +56 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/SystemRole/index.tsx +68 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Versions/index.tsx +137 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/index.tsx +51 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Header.tsx +176 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Sidebar/ActionButton/AddAgent.tsx +178 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Sidebar/ActionButton/index.tsx +31 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Sidebar/Related/index.tsx +57 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Sidebar/TocList/index.tsx +77 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/StatusPage/index.tsx +113 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/index.tsx +63 -0
- package/src/app/[variants]/(main)/discover/(detail)/features/Breadcrumb.tsx +4 -3
- package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Details/Related/index.tsx +32 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Details/Versions/index.tsx +76 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Details/index.tsx +59 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Sidebar/ActionButton/index.tsx +109 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Sidebar/Related/index.tsx +44 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Sidebar/ServerConfig.tsx +36 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Sidebar/TocList/index.tsx +98 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/index.tsx +59 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/loading.tsx +1 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/Overview/index.tsx +22 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/Parameter/ParameterItem.tsx +71 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/Related/index.tsx +31 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/index.tsx +47 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Header.tsx +112 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/ActionButton/ChatWithModel.tsx +92 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/ActionButton/index.tsx +32 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/Related/index.tsx +43 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/RelatedProviders/index.tsx +34 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/index.tsx +51 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/loading.tsx +1 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/features/Details/Related/index.tsx +22 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/features/Details/index.tsx +47 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/ActionButton/ProviderConfig.tsx +91 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/ActionButton/index.tsx +45 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/Related/index.tsx +34 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/RelatedModels/index.tsx +43 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/index.tsx +51 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/loading.tsx +1 -0
- package/src/app/[variants]/(main)/discover/(list)/(home)/index.tsx +59 -0
- package/src/app/[variants]/(main)/discover/(list)/_layout/Desktop/Nav.tsx +5 -4
- package/src/app/[variants]/(main)/discover/(list)/_layout/Desktop/index.tsx +4 -3
- package/src/app/[variants]/(main)/discover/(list)/_layout/Mobile/Nav.tsx +3 -4
- package/src/app/[variants]/(main)/discover/(list)/_layout/Mobile/index.tsx +4 -3
- package/src/app/[variants]/(main)/discover/(list)/assistant/Client.tsx +6 -2
- package/src/app/[variants]/(main)/discover/(list)/assistant/_layout/Desktop.tsx +3 -4
- package/src/app/[variants]/(main)/discover/(list)/assistant/_layout/Mobile.tsx +3 -3
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/Category/index.tsx +8 -4
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/List/Item.tsx +13 -2
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/MarketSourceSwitch.tsx +64 -0
- package/src/app/[variants]/(main)/discover/(list)/assistant/index.tsx +61 -0
- package/src/app/[variants]/(main)/discover/(list)/features/Pagination.tsx +2 -1
- package/src/app/[variants]/(main)/discover/(list)/features/SortButton/index.tsx +29 -10
- package/src/app/[variants]/(main)/discover/(list)/mcp/_layout/Desktop.tsx +3 -3
- package/src/app/[variants]/(main)/discover/(list)/mcp/_layout/Mobile.tsx +3 -3
- package/src/app/[variants]/(main)/discover/(list)/mcp/features/Category/index.tsx +1 -1
- package/src/app/[variants]/(main)/discover/(list)/mcp/features/List/Item.tsx +2 -1
- package/src/app/[variants]/(main)/discover/(list)/mcp/index.tsx +51 -0
- package/src/app/[variants]/(main)/discover/(list)/model/_layout/Desktop.tsx +3 -3
- package/src/app/[variants]/(main)/discover/(list)/model/_layout/Mobile.tsx +3 -3
- package/src/app/[variants]/(main)/discover/(list)/model/features/Category/index.tsx +1 -1
- package/src/app/[variants]/(main)/discover/(list)/model/features/List/Item.tsx +2 -1
- package/src/app/[variants]/(main)/discover/(list)/model/index.tsx +51 -0
- package/src/app/[variants]/(main)/discover/(list)/provider/features/List/Item.tsx +2 -1
- package/src/app/[variants]/(main)/discover/(list)/provider/index.tsx +50 -0
- package/src/app/[variants]/(main)/discover/_layout/Desktop/index.tsx +4 -4
- package/src/app/[variants]/(main)/discover/_layout/Mobile/index.tsx +3 -3
- package/src/app/[variants]/(main)/discover/components/CategoryMenu.tsx +9 -1
- package/src/app/[variants]/(main)/discover/components/Title.tsx +1 -1
- package/src/app/[variants]/(main)/discover/features/Search.tsx +2 -2
- package/src/app/[variants]/(main)/discover/features/useNav.tsx +11 -12
- package/src/app/[variants]/(main)/hooks/useActiveTabKey.ts +40 -0
- package/src/app/[variants]/(main)/hooks/usePathname.ts +10 -0
- package/src/app/[variants]/(main)/hooks/useQuery.ts +12 -0
- package/src/app/[variants]/(main)/hooks/useRouter.ts +22 -0
- package/src/app/[variants]/(main)/hooks/useSearchParams.ts +11 -0
- package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ModelSelect/ImageModelItem.tsx +108 -0
- package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ModelSelect/index.tsx +162 -0
- package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ResolutionSelect.tsx +88 -0
- package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/index.tsx +9 -0
- package/src/app/[variants]/(main)/image/@topic/features/Topics/TopicUrlSync.tsx +1 -1
- package/src/app/[variants]/(main)/image/ComingSoon.tsx +15 -0
- package/src/app/[variants]/(main)/image/_layout/Desktop/index.tsx +5 -2
- package/src/app/[variants]/(main)/image/_layout/DesktopWrapper.tsx +15 -0
- package/src/app/[variants]/(main)/image/_layout/Mobile/index.tsx +3 -1
- package/src/app/[variants]/(main)/image/features/ImageWorkspace/index.tsx +1 -2
- package/src/app/[variants]/(main)/image/index.tsx +18 -0
- package/src/app/[variants]/(main)/knowledge/_layout/Desktop.tsx +17 -0
- package/src/app/[variants]/(main)/knowledge/_layout/Mobile.tsx +17 -0
- package/src/app/[variants]/(main)/knowledge/components/KnowledgeBaseItem/index.tsx +1 -3
- package/src/app/[variants]/(main)/knowledge/components/modal/ModalPageClient.tsx +4 -4
- package/src/app/[variants]/(main)/knowledge/hooks/useFileCategory.ts +6 -3
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/index.tsx +7 -10
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/CategoryMenu.tsx +35 -0
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/Head.tsx +1 -1
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/Menu.tsx +2 -2
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/index.tsx +40 -18
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/layout/Container.tsx +1 -1
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/menu/CategoryMenu.tsx +148 -0
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/menu/KnowledgeBase.tsx +21 -8
- package/src/app/[variants]/(main)/labs/components/LabCard.tsx +8 -6
- package/src/app/[variants]/(main)/labs/index.tsx +74 -0
- package/src/app/[variants]/(main)/layouts/desktop/DesktopLayoutContainer.tsx +30 -0
- package/src/app/[variants]/(main)/layouts/desktop/SideBar/BottomActions.tsx +46 -0
- package/src/app/[variants]/(main)/layouts/desktop/SideBar/PinList/index.tsx +128 -0
- package/src/app/[variants]/(main)/layouts/desktop/SideBar/TopActions.test.tsx +141 -0
- package/src/app/[variants]/(main)/layouts/desktop/SideBar/TopActions.tsx +116 -0
- package/src/app/[variants]/(main)/layouts/desktop/index.tsx +73 -0
- package/src/app/[variants]/(main)/layouts/index.tsx +11 -0
- package/src/app/[variants]/(main)/layouts/mobile/NavBar.tsx +88 -0
- package/src/app/[variants]/(main)/layouts/mobile/index.tsx +46 -0
- package/src/app/[variants]/(main)/profile/(home)/Client.tsx +306 -52
- package/src/app/[variants]/(main)/profile/(home)/desktop.tsx +26 -0
- package/src/app/[variants]/(main)/profile/(home)/features/SSOProvidersList/index.tsx +89 -47
- package/src/app/[variants]/(main)/profile/(home)/index.tsx +26 -0
- package/src/app/[variants]/(main)/profile/@category/features/CategoryContent.tsx +5 -7
- package/src/app/[variants]/(main)/profile/_layout/Desktop/index.tsx +12 -11
- package/src/app/[variants]/(main)/profile/_layout/DesktopWrapper.tsx +14 -0
- package/src/app/[variants]/(main)/profile/_layout/Mobile/Header.tsx +3 -3
- package/src/app/[variants]/(main)/profile/_layout/Mobile/index.tsx +4 -3
- package/src/app/[variants]/(main)/profile/apikey/index.tsx +18 -0
- package/src/app/[variants]/(main)/profile/hooks/useCategory.tsx +24 -18
- package/src/app/[variants]/(main)/profile/security/index.tsx +29 -0
- package/src/app/[variants]/(main)/profile/stats/features/AssistantsRank.tsx +4 -4
- package/src/app/[variants]/(main)/profile/stats/features/ShareButton/Preview.tsx +2 -14
- package/src/app/[variants]/(main)/profile/stats/features/TopicsRank.tsx +4 -4
- package/src/app/[variants]/(main)/profile/stats/index.tsx +20 -0
- package/src/app/[variants]/(main)/profile/usage/Client.tsx +114 -0
- package/src/app/[variants]/(main)/profile/usage/features/UsageCards/ActiveModels/ModelTable.tsx +175 -0
- package/src/app/[variants]/(main)/profile/usage/features/UsageCards/ActiveModels/index.tsx +126 -0
- package/src/app/[variants]/(main)/profile/usage/features/UsageCards/MonthSpend.tsx +53 -0
- package/src/app/[variants]/(main)/profile/usage/features/UsageCards/TodaySpend.tsx +67 -0
- package/src/app/[variants]/(main)/profile/usage/features/UsageCards/index.tsx +19 -0
- package/src/app/[variants]/(main)/profile/usage/features/UsageTable.tsx +143 -0
- package/src/app/[variants]/(main)/profile/usage/features/UsageTrends.tsx +107 -0
- package/src/app/[variants]/(main)/profile/usage/features/components/UsageBarChart.tsx +48 -0
- package/src/app/[variants]/(main)/profile/usage/index.tsx +13 -0
- package/src/app/[variants]/(main)/settings/_layout/Desktop/Header.tsx +2 -2
- package/src/app/[variants]/(main)/settings/_layout/Desktop/index.tsx +45 -9
- package/src/app/[variants]/(main)/settings/_layout/DesktopWrapper.tsx +23 -0
- package/src/app/[variants]/(main)/settings/_layout/Mobile/Header.tsx +8 -7
- package/src/app/[variants]/(main)/settings/_layout/Mobile/index.tsx +2 -5
- package/src/app/[variants]/(main)/settings/_layout/MobileWrapper.tsx +23 -0
- package/src/app/[variants]/(main)/settings/_layout/SettingsContent.tsx +1 -12
- package/src/app/[variants]/(main)/settings/_layout/type.ts +0 -1
- package/src/app/[variants]/(main)/settings/agent/AgentMenu/Menu.tsx +2 -4
- package/src/app/[variants]/(main)/settings/agent/index.tsx +13 -14
- package/src/app/[variants]/(main)/settings/common/features/Common/Common.tsx +23 -1
- package/src/app/[variants]/(main)/settings/common/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/hooks/useCategory.tsx +8 -16
- package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/Card.tsx +9 -4
- package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/index.tsx +35 -4
- package/src/app/[variants]/(main)/settings/provider/(list)/index.tsx +15 -3
- package/src/app/[variants]/(main)/settings/provider/ProviderMenu/All.tsx +2 -2
- package/src/app/[variants]/(main)/settings/provider/ProviderMenu/Item.tsx +2 -2
- package/src/app/[variants]/(main)/settings/provider/ProviderMenu/List.tsx +251 -34
- package/src/app/[variants]/(main)/settings/provider/ProviderMenu/SearchResult.tsx +5 -5
- package/src/app/[variants]/(main)/settings/provider/_layout/Desktop/Container.tsx +10 -4
- package/src/app/[variants]/(main)/settings/provider/_layout/Mobile.tsx +2 -2
- package/src/app/[variants]/(main)/settings/provider/detail/azure/index.tsx +6 -8
- package/src/app/[variants]/(main)/settings/provider/detail/azureai/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/detail/bedrock/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/detail/cloudflare/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/detail/comfyui/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/detail/default/ClientMode.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/detail/github/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/detail/index.tsx +36 -14
- package/src/app/[variants]/(main)/settings/provider/detail/vertexai/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/features/CreateNewProvider/index.tsx +22 -9
- package/src/app/[variants]/(main)/settings/provider/features/ModelList/DisabledModels.tsx +144 -8
- package/src/app/[variants]/(main)/settings/provider/features/ModelList/ModelItem.tsx +69 -97
- package/src/app/[variants]/(main)/settings/provider/features/ProviderConfig/UpdateProviderInfo/SettingModal.tsx +13 -9
- package/src/app/[variants]/(main)/settings/provider/features/ProviderConfig/index.tsx +4 -8
- package/src/app/[variants]/(main)/settings/provider/features/customProviderSdkOptions.ts +1 -0
- package/src/app/[variants]/(main)/settings/storage/index.tsx +1 -9
- package/src/app/[variants]/(main)/settings/system-agent/index.tsx +1 -2
- package/src/app/[variants]/DesktopClientRouter.tsx +20 -0
- package/src/app/[variants]/DesktopRouter.tsx +20 -0
- package/src/app/[variants]/MobileClientRouter.tsx +20 -0
- package/src/app/[variants]/MobileRouter.tsx +20 -0
- package/src/app/[variants]/desktopRouter.config.tsx +502 -0
- package/src/app/[variants]/layout.tsx +1 -3
- package/src/app/[variants]/loaders/routeParams.ts +45 -0
- package/src/app/[variants]/loading/Server/Redirect.tsx +1 -1
- package/src/app/[variants]/mobileRouter.config.tsx +546 -0
- package/src/app/[variants]/oauth/ResultLayout.tsx +47 -0
- package/src/app/[variants]/oauth/callback/error/page.tsx +20 -33
- package/src/app/[variants]/oauth/callback/layout.tsx +1 -0
- package/src/app/[variants]/oauth/callback/success/page.tsx +8 -22
- package/src/app/[variants]/oauth/consent/[uid]/Consent/BuiltinConsent.tsx +47 -0
- package/src/app/[variants]/oauth/consent/[uid]/Consent/index.tsx +198 -0
- package/src/app/[variants]/oauth/consent/[uid]/Login.tsx +19 -4
- package/src/app/[variants]/page.tsx +18 -6
- package/src/app/desktop/devtools/page.tsx +1 -1
- package/src/app/desktop/layout.tsx +1 -1
- package/src/app/market-auth-callback/layout.tsx +39 -0
- package/src/app/market-auth-callback/page.tsx +196 -0
- package/src/auth.ts +185 -0
- package/src/components/Analytics/MainInterfaceTracker.tsx +2 -2
- package/src/components/BootErrorBoundary/index.tsx +129 -0
- package/src/components/FileIcon/index.tsx +1 -1
- package/src/components/InvalidAPIKey/APIKeyForm/Bedrock.tsx +9 -14
- package/src/components/InvalidAPIKey/APIKeyForm/ComfyUIForm.tsx +1 -1
- package/src/components/InvalidAPIKey/APIKeyForm/ProviderApiKeyForm.tsx +1 -1
- package/src/components/InvalidAPIKey/APIKeyForm/__tests__/ComfyUIForm.test.tsx +1 -1
- package/src/components/InvalidAPIKey/APIKeyForm/useApiKey.ts +0 -12
- package/src/components/InvalidAPIKey/index.tsx +1 -1
- package/src/components/ModelSelect/NewModelBadge.tsx +23 -0
- package/src/components/ModelSelect/index.tsx +4 -0
- package/src/components/NextAuth/AuthIcons.tsx +5 -1
- package/src/components/Skeleton/SkeletonSwitch.tsx +13 -0
- package/src/components/Skeleton/index.ts +2 -0
- package/src/components/Thinking/index.tsx +3 -3
- package/src/components/mdx/constants.ts +1 -0
- package/src/config/db.ts +0 -5
- package/src/config/featureFlags/schema.test.ts +1 -5
- package/src/config/featureFlags/schema.ts +0 -9
- package/src/config/modelProviders/ai21.ts +1 -16
- package/src/config/modelProviders/ai302.ts +1 -128
- package/src/config/modelProviders/ai360.ts +1 -32
- package/src/config/modelProviders/aihubmix.ts +1 -0
- package/src/config/modelProviders/anthropic.ts +1 -71
- package/src/config/modelProviders/azure.ts +1 -51
- package/src/config/modelProviders/baichuan.ts +1 -57
- package/src/config/modelProviders/bedrock.ts +1 -276
- package/src/config/modelProviders/cerebras.ts +3 -0
- package/src/config/modelProviders/cloudflare.ts +1 -64
- package/src/config/modelProviders/deepseek.ts +1 -19
- package/src/config/modelProviders/fireworksai.ts +1 -174
- package/src/config/modelProviders/giteeai.ts +1 -135
- package/src/config/modelProviders/github.ts +1 -254
- package/src/config/modelProviders/google.ts +1 -130
- package/src/config/modelProviders/groq.ts +1 -119
- package/src/config/modelProviders/higress.ts +1 -1713
- package/src/config/modelProviders/huggingface.ts +1 -54
- package/src/config/modelProviders/hunyuan.ts +1 -83
- package/src/config/modelProviders/index.ts +3 -0
- package/src/config/modelProviders/infiniai.ts +1 -74
- package/src/config/modelProviders/internlm.ts +1 -20
- package/src/config/modelProviders/mistral.ts +1 -95
- package/src/config/modelProviders/modelscope.ts +1 -27
- package/src/config/modelProviders/moonshot.ts +1 -29
- package/src/config/modelProviders/newapi.ts +1 -0
- package/src/config/modelProviders/novita.ts +1 -105
- package/src/config/modelProviders/ollama.ts +1 -325
- package/src/config/modelProviders/openai.ts +1 -242
- package/src/config/modelProviders/openrouter.ts +1 -240
- package/src/config/modelProviders/perplexity.ts +1 -45
- package/src/config/modelProviders/ppio.ts +1 -152
- package/src/config/modelProviders/qiniu.ts +1 -18
- package/src/config/modelProviders/qwen.ts +1 -245
- package/src/config/modelProviders/search1api.ts +1 -34
- package/src/config/modelProviders/sensenova.ts +1 -69
- package/src/config/modelProviders/siliconcloud.ts +1 -417
- package/src/config/modelProviders/spark.ts +1 -59
- package/src/config/modelProviders/stepfun.ts +1 -98
- package/src/config/modelProviders/taichu.ts +1 -18
- package/src/config/modelProviders/togetherai.ts +1 -274
- package/src/config/modelProviders/upstage.ts +1 -28
- package/src/config/modelProviders/vertexai.ts +1 -1
- package/src/config/modelProviders/wenxin.ts +3 -143
- package/src/config/modelProviders/xai.ts +1 -38
- package/src/config/modelProviders/zenmux.ts +21 -0
- package/src/config/modelProviders/zeroone.ts +1 -81
- package/src/config/modelProviders/zhipu.ts +1 -108
- package/src/envs/__tests__/app.test.ts +47 -13
- package/src/envs/app.ts +10 -3
- package/src/envs/auth.test.ts +60 -0
- package/src/envs/auth.ts +313 -15
- package/src/envs/email.ts +48 -0
- package/src/envs/llm.ts +10 -0
- package/src/envs/redis.ts +106 -0
- package/src/features/AgentSetting/AgentPlugin/index.tsx +6 -2
- package/src/features/AgentSetting/AgentPrompt/TokenTag.tsx +3 -2
- package/src/features/AgentSetting/AgentTTS/SelectWithTTSPreview.tsx +1 -1
- package/src/features/AgentSetting/store/action.ts +1 -1
- package/src/features/ChangelogModal/index.tsx +3 -3
- package/src/features/ChatInput/ActionBar/Knowledge/index.tsx +4 -5
- package/src/features/ChatInput/ActionBar/Model/ControlsForm.tsx +47 -0
- package/src/features/ChatInput/ActionBar/Model/GPT51ReasoningEffortSlider.tsx +58 -0
- package/src/features/ChatInput/ActionBar/Model/ImageAspectRatioSelect.tsx +54 -0
- package/src/features/ChatInput/ActionBar/Model/ImageResolutionSlider.tsx +59 -0
- package/src/features/ChatInput/ActionBar/Model/ThinkingLevelSlider.tsx +56 -0
- package/src/features/ChatInput/ActionBar/STT/browser.tsx +6 -6
- package/src/features/ChatInput/ActionBar/STT/openai.tsx +6 -6
- package/src/features/ChatInput/ActionBar/Search/index.tsx +5 -7
- package/src/features/ChatInput/ActionBar/Token/TokenTag.tsx +4 -4
- package/src/features/ChatInput/ActionBar/Token/TokenTagForGroupChat.tsx +2 -2
- package/src/features/ChatInput/ActionBar/Upload/index.tsx +1 -3
- package/src/features/ChatInput/ActionBar/components/ActionDropdown.tsx +2 -17
- package/src/features/ChatInput/ActionBar/index.tsx +2 -2
- package/src/features/ChatInput/InputEditor/index.tsx +2 -2
- package/src/features/ChatItem/components/MessageContent.tsx +4 -1
- package/src/features/ChatItem/components/Title.tsx +20 -16
- package/src/features/ChatItem/style.ts +4 -0
- package/src/features/ChatList/Error/ChatInvalidApiKey.tsx +39 -0
- package/src/features/ChatList/Error/ClerkLogin/index.tsx +47 -0
- package/src/features/ChatList/Error/OAuthForm.tsx +97 -0
- package/src/features/ChatList/Error/index.tsx +144 -0
- package/src/features/ChatList/MarkdownElements/LobeThinking/Render.tsx +30 -0
- package/src/features/ChatList/MarkdownElements/Thinking/Render.tsx +42 -0
- package/src/features/ChatList/MarkdownElements/remarkPlugins/__snapshots__/createRemarkSelfClosingTagPlugin.test.ts.snap +393 -0
- package/src/features/ChatList/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.test.ts +277 -0
- package/src/features/ChatList/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.ts +162 -0
- package/src/features/ChatList/MarkdownElements/remarkPlugins/getNodeContent.test.ts +502 -0
- package/src/features/ChatList/Messages/Assistant/Actions/index.tsx +218 -0
- package/src/features/ChatList/Messages/Assistant/CollapsedMessage.tsx +37 -0
- package/src/features/ChatList/Messages/Assistant/DisplayContent.tsx +44 -0
- package/src/features/ChatList/Messages/Assistant/Extra/index.test.tsx +86 -0
- package/src/features/ChatList/Messages/Assistant/Extra/index.tsx +49 -0
- package/src/features/ChatList/Messages/Assistant/MessageBody.tsx +96 -0
- package/src/features/ChatList/Messages/Assistant/Reasoning/index.tsx +42 -0
- package/src/features/ChatList/Messages/Assistant/index.tsx +401 -0
- package/src/features/ChatList/Messages/Default.tsx +27 -0
- package/src/features/ChatList/Messages/Group/Actions/WithContentId.tsx +200 -0
- package/src/features/ChatList/Messages/Group/Actions/WithoutContentId.tsx +93 -0
- package/src/features/ChatList/Messages/Group/Actions/index.tsx +21 -0
- package/src/features/ChatList/Messages/Group/CollapsedMessage.tsx +37 -0
- package/src/features/ChatList/Messages/Group/ContentBlock.tsx +89 -0
- package/src/features/ChatList/Messages/Group/EditState.tsx +51 -0
- package/src/features/ChatList/Messages/Group/Error/index.tsx +55 -0
- package/src/features/ChatList/Messages/Group/Group.tsx +70 -0
- package/src/features/ChatList/Messages/Group/GroupContext.ts +15 -0
- package/src/features/ChatList/Messages/Group/GroupItem.tsx +42 -0
- package/src/features/ChatList/Messages/Group/MessageContent.tsx +45 -0
- package/src/features/ChatList/Messages/Group/Tool/Inspector/BuiltinPluginTitle.tsx +58 -0
- package/src/features/ChatList/Messages/Group/Tool/Inspector/Debug.tsx +70 -0
- package/src/features/ChatList/Messages/Group/Tool/Inspector/PluginResult.tsx +34 -0
- package/src/features/ChatList/Messages/Group/Tool/Inspector/PluginState.tsx +18 -0
- package/src/features/ChatList/Messages/Group/Tool/Inspector/StatusIndicator.tsx +41 -0
- package/src/features/ChatList/Messages/Group/Tool/Inspector/ToolTitle.tsx +82 -0
- package/src/features/ChatList/Messages/Group/Tool/Inspector/index.tsx +221 -0
- package/src/features/ChatList/Messages/Group/Tool/Render/AbortResponse.tsx +37 -0
- package/src/features/ChatList/Messages/Group/Tool/Render/Arguments/index.tsx +136 -0
- package/src/features/ChatList/Messages/Group/Tool/Render/CustomRender.tsx +88 -0
- package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/ApprovalActions.tsx +164 -0
- package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/Fallback.tsx +98 -0
- package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/KeyValueEditor.tsx +213 -0
- package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/ModeSelector.tsx +133 -0
- package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/index.tsx +103 -0
- package/src/features/ChatList/Messages/Group/Tool/Render/LoadingPlaceholder/index.tsx +29 -0
- package/src/features/ChatList/Messages/Group/Tool/Render/PluginSettings.tsx +66 -0
- package/src/features/ChatList/Messages/Group/Tool/Render/RejectedResponse.tsx +45 -0
- package/src/features/ChatList/Messages/Group/Tool/Render/index.tsx +139 -0
- package/src/features/ChatList/Messages/Group/Tool/index.tsx +98 -0
- package/src/features/ChatList/Messages/Group/Tools.tsx +48 -0
- package/src/features/ChatList/Messages/Group/index.tsx +210 -0
- package/src/features/ChatList/Messages/Supervisor/index.tsx +194 -0
- package/src/features/ChatList/Messages/Tool/Inspector/PluginResult.tsx +39 -0
- package/src/features/ChatList/Messages/Tool/Inspector/PluginState.tsx +23 -0
- package/src/features/ChatList/Messages/Tool/Inspector/Settings.tsx +40 -0
- package/src/features/ChatList/Messages/Tool/Inspector/ToolTitle.tsx +68 -0
- package/src/features/ChatList/Messages/Tool/Inspector/index.tsx +134 -0
- package/src/features/ChatList/Messages/Tool/Render/Arguments/ObjectEntity.tsx +81 -0
- package/src/features/ChatList/Messages/Tool/Render/Arguments/ValueCell.tsx +43 -0
- package/src/features/ChatList/Messages/Tool/Render/CustomRender.tsx +144 -0
- package/src/features/ChatList/Messages/Tool/Render/ErrorResponse.tsx +35 -0
- package/src/features/ChatList/Messages/Tool/Render/PluginSettings.tsx +69 -0
- package/src/features/ChatList/Messages/Tool/Render/index.tsx +46 -0
- package/src/features/ChatList/Messages/Tool/ToolItem.tsx +51 -0
- package/src/features/ChatList/Messages/Tool/index.tsx +58 -0
- package/src/features/ChatList/Messages/User/Actions/ActionsBar.tsx +159 -0
- package/src/features/ChatList/Messages/User/Actions/MessageBranch.tsx +107 -0
- package/src/features/ChatList/Messages/User/Actions/index.tsx +42 -0
- package/src/features/ChatList/Messages/User/Extra.tsx +39 -0
- package/src/features/ChatList/Messages/User/index.tsx +193 -0
- package/src/features/ChatList/Messages/index.tsx +238 -0
- package/src/features/ChatList/components/AutoScroll.tsx +27 -0
- package/src/features/ChatList/components/ContextMenu.tsx +398 -0
- package/src/features/ChatList/components/Extras/TTS/InitPlayer.tsx +93 -0
- package/src/features/ChatList/components/Extras/Usage/UsageDetail/AnimatedNumber.tsx +55 -0
- package/src/features/ChatList/components/Extras/Usage/UsageDetail/index.tsx +257 -0
- package/src/features/ChatList/components/Extras/Usage/UsageDetail/tokens.ts +129 -0
- package/src/features/ChatList/components/Extras/Usage/index.tsx +52 -0
- package/src/features/ChatList/components/RichContentRenderer.tsx +35 -0
- package/src/features/ChatList/components/ShareMessageModal/ShareImage/Preview.tsx +90 -0
- package/src/features/ChatList/components/ShareMessageModal/index.tsx +91 -0
- package/src/features/ChatList/components/SkeletonList.tsx +58 -0
- package/src/features/ChatList/components/VirtualizedList/VirtuosoContext.ts +92 -0
- package/src/features/ChatList/components/VirtualizedList/index.tsx +172 -0
- package/src/features/ChatList/components/WideScreenContainer/index.tsx +50 -0
- package/src/features/ChatList/hooks/useChatItemContextMenu.tsx +136 -0
- package/src/features/ChatList/hooks/useChatListActionsBar.tsx +145 -0
- package/src/features/ChatList/hooks/useDoubleClickEdit.ts +42 -0
- package/src/features/DataImporter/index.tsx +2 -2
- package/src/features/DevPanel/PostgresViewer/usePgTable.ts +3 -11
- package/src/features/FileSidePanel/index.tsx +1 -1
- package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/Item/MasonryItem.tsx +80 -0
- package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/Item/MasonryItemWrapper.tsx +27 -0
- package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/List.tsx +104 -23
- package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/MasonrySkeleton.tsx +62 -0
- package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/index.tsx +3 -2
- package/src/features/KnowledgeBaseModal/CreateNew/CreateForm.tsx +1 -1
- package/src/features/KnowledgeManager/DocumentExplorer/DocumentActions.tsx +111 -0
- package/src/features/KnowledgeManager/DocumentExplorer/DocumentEditor.tsx +723 -0
- package/src/features/KnowledgeManager/DocumentExplorer/DocumentEditorPlaceholder.tsx +169 -0
- package/src/features/KnowledgeManager/DocumentExplorer/DocumentListItem.tsx +148 -0
- package/src/features/KnowledgeManager/DocumentExplorer/DocumentListSkeleton.tsx +39 -0
- package/src/features/KnowledgeManager/DocumentExplorer/NoteEditorModal.tsx +328 -0
- package/src/features/KnowledgeManager/DocumentExplorer/RenamePopover.tsx +163 -0
- package/src/features/KnowledgeManager/DocumentExplorer/index.tsx +318 -0
- package/src/features/KnowledgeManager/FileExplorer/FileListItem/index.tsx +270 -0
- package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/DefaultFileItem.tsx +149 -0
- package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/ImageFileItem.tsx +245 -0
- package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/MarkdownFileItem.tsx +232 -0
- package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/NoteFileItem.tsx +230 -0
- package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/index.tsx +378 -0
- package/src/features/KnowledgeManager/FileExplorer/ToolBar/ViewSwitcher.tsx +45 -0
- package/src/features/KnowledgeManager/FileExplorer/index.tsx +305 -0
- package/src/features/KnowledgeManager/Header/AddButton.tsx +117 -0
- package/src/features/KnowledgeManager/Header/FilesSearchBar.tsx +45 -0
- package/src/features/KnowledgeManager/Header/NewNoteButton.tsx +33 -0
- package/src/features/KnowledgeManager/Header/TogglePanelButton.tsx +42 -0
- package/src/features/KnowledgeManager/Header/index.tsx +21 -0
- package/src/features/KnowledgeManager/Home/RecentDocumentCard.tsx +116 -0
- package/src/features/KnowledgeManager/Home/RecentDocuments.tsx +77 -0
- package/src/features/KnowledgeManager/Home/RecentFileCard.tsx +121 -0
- package/src/features/KnowledgeManager/Home/RecentFiles.tsx +73 -0
- package/src/features/KnowledgeManager/Home/RecentFilesSkeleton.tsx +81 -0
- package/src/features/KnowledgeManager/Home/UploadEntries.tsx +208 -0
- package/src/features/KnowledgeManager/Home/index.tsx +221 -0
- package/src/features/KnowledgeManager/index.tsx +75 -0
- package/src/features/LocalFile/LocalFile.tsx +55 -5
- package/src/features/MCP/utils.test.ts +91 -0
- package/src/features/MCP/utils.ts +20 -2
- package/src/features/ModelSwitchPanel/index.tsx +15 -29
- package/src/features/OllamaSetupGuide/index.tsx +1 -1
- package/src/features/PluginStore/Content.tsx +2 -3
- package/src/features/PluginStore/McpList/List/Action.tsx +20 -1
- package/src/features/PluginStore/McpList/index.tsx +6 -2
- package/src/features/PluginTag/PluginStatus.tsx +1 -1
- package/src/features/PluginsUI/Render/BuiltinType/index.test.tsx +10 -4
- package/src/features/PluginsUI/Render/BuiltinType/index.tsx +4 -4
- package/src/features/PluginsUI/Render/MCPType/index.tsx +72 -0
- package/src/features/PluginsUI/Render/StandaloneType/Iframe.tsx +5 -5
- package/src/features/PluginsUI/Render/index.tsx +17 -0
- package/src/features/Portal/Artifacts/Body/Renderer/SVG.tsx +23 -6
- package/src/features/Portal/FilePreview/Body/index.tsx +1 -1
- package/src/features/Portal/FilePreview/Header.tsx +1 -1
- package/src/features/Portal/GroupThread/Body/ThreadChatItem.tsx +1 -1
- package/src/features/Portal/GroupThread/Body/ThreadChatList.tsx +1 -1
- package/src/features/Portal/GroupThread/Body/index.tsx +1 -1
- package/src/features/Portal/Home/Body/Plugins/ArtifactList/index.tsx +3 -3
- package/src/features/Portal/Thread/Chat/ChatInput/index.tsx +1 -1
- package/src/features/Portal/Thread/Chat/ChatInput/useSend.ts +3 -3
- package/src/features/Portal/Thread/Chat/ChatItem.tsx +1 -1
- package/src/features/Portal/Thread/Chat/ChatList.tsx +1 -1
- package/src/features/Portal/Thread/Chat/index.tsx +1 -1
- package/src/features/ShareModal/ShareImage/ChatList/index.tsx +1 -1
- package/src/features/ShareModal/ShareImage/Preview.tsx +2 -2
- package/src/features/ShareModal/ShareImage/index.tsx +15 -1
- package/src/features/ShareModal/ShareImage/type.ts +6 -0
- package/src/features/ShareModal/ShareJSON/index.tsx +2 -2
- package/src/features/ShareModal/ShareText/index.tsx +3 -3
- package/src/features/ShareModal/index.tsx +7 -13
- package/src/features/ShareModal/style.ts +40 -30
- package/src/features/User/UserPanel/PanelContent.tsx +11 -11
- package/src/features/User/UserPanel/useMenu.tsx +24 -14
- package/src/features/User/__tests__/PanelContent.test.tsx +28 -13
- package/src/features/User/__tests__/UserAvatar.test.tsx +17 -6
- package/src/features/User/__tests__/useMenu.test.tsx +14 -12
- package/src/helpers/isCanUseFC.ts +0 -8
- package/src/helpers/toolEngineering/index.test.ts +3 -3
- package/src/helpers/toolEngineering/index.ts +13 -4
- package/src/hooks/useAgentOwnershipCheck.ts +151 -0
- package/src/hooks/useCheckPluginsIsInstalled.ts +1 -4
- package/src/hooks/useDiscoverTab.ts +2 -2
- package/src/hooks/useEnabledChatModels.ts +0 -8
- package/src/hooks/useFetchGroups.ts +1 -4
- package/src/hooks/useFetchInstalledPlugins.ts +1 -4
- package/src/hooks/useFetchMessages.ts +1 -4
- package/src/hooks/useFetchSessions.ts +1 -4
- package/src/hooks/useFetchThreads.ts +1 -5
- package/src/hooks/useFetchTopics.ts +1 -4
- package/src/hooks/useHotkeys/chatScope.ts +16 -8
- package/src/hooks/useInterceptingRoutes.test.ts +22 -44
- package/src/hooks/useInterceptingRoutes.ts +6 -11
- package/src/hooks/useModelContextWindowTokens.ts +0 -8
- package/src/hooks/useModelHasContextWindowToken.ts +1 -10
- package/src/hooks/useModelSupportFiles.ts +1 -11
- package/src/hooks/useModelSupportReasoning.ts +1 -11
- package/src/hooks/useModelSupportToolUse.ts +1 -11
- package/src/hooks/useModelSupportVision.ts +1 -11
- package/src/hooks/usePinnedAgentState.ts +23 -16
- package/src/hooks/useQuery.ts +5 -0
- package/src/hooks/useQueryParam.ts +324 -0
- package/src/hooks/useQueryRoute.test.ts +2 -12
- package/src/hooks/useQueryRoute.ts +5 -5
- package/src/hooks/useScreenshot.ts +44 -28
- package/src/hooks/useShowMobileWorkspace.ts +1 -1
- package/src/hooks/useSwitchSession.ts +4 -3
- package/src/instrumentation.node.ts +3 -2
- package/src/layout/AuthProvider/BetterAuth/UserUpdater.tsx +51 -0
- package/src/layout/AuthProvider/BetterAuth/index.tsx +14 -0
- package/src/layout/AuthProvider/Clerk/index.tsx +2 -16
- package/src/layout/AuthProvider/MarketAuth/MarketAuthConfirmModal.tsx +158 -0
- package/src/layout/AuthProvider/MarketAuth/MarketAuthProvider.tsx +599 -0
- package/src/layout/AuthProvider/MarketAuth/errors.ts +75 -0
- package/src/layout/AuthProvider/MarketAuth/index.ts +2 -0
- package/src/layout/AuthProvider/MarketAuth/oidc.ts +382 -0
- package/src/layout/AuthProvider/MarketAuth/types.ts +67 -0
- package/src/layout/AuthProvider/index.tsx +20 -4
- package/src/layout/GlobalProvider/Cmdk.tsx +470 -0
- package/src/layout/GlobalProvider/CmdkLazy.tsx +17 -0
- package/src/layout/GlobalProvider/ImportSettings.tsx +22 -9
- package/src/layout/GlobalProvider/StoreInitialization.tsx +12 -6
- package/src/layout/GlobalProvider/index.tsx +2 -0
- package/src/libs/better-auth/auth-client.ts +36 -0
- package/src/libs/better-auth/constants.ts +19 -0
- package/src/libs/better-auth/email-templates/index.ts +3 -0
- package/src/libs/better-auth/email-templates/magic-link.ts +98 -0
- package/src/libs/better-auth/email-templates/reset-password.ts +91 -0
- package/src/libs/better-auth/email-templates/verification.ts +108 -0
- package/src/libs/better-auth/sso/helpers.ts +61 -0
- package/src/libs/better-auth/sso/index.ts +118 -0
- package/src/libs/better-auth/sso/providers/apple.ts +33 -0
- package/src/libs/better-auth/sso/providers/auth0.ts +33 -0
- package/src/libs/better-auth/sso/providers/authelia.ts +35 -0
- package/src/libs/better-auth/sso/providers/authentik.ts +35 -0
- package/src/libs/better-auth/sso/providers/casdoor.ts +48 -0
- package/src/libs/better-auth/sso/providers/cloudflare-zero-trust.ts +41 -0
- package/src/libs/better-auth/sso/providers/cognito.ts +45 -0
- package/src/libs/better-auth/sso/providers/feishu.ts +181 -0
- package/src/libs/better-auth/sso/providers/generic-oidc.ts +44 -0
- package/src/libs/better-auth/sso/providers/github.ts +30 -0
- package/src/libs/better-auth/sso/providers/google.ts +30 -0
- package/src/libs/better-auth/sso/providers/keycloak.ts +35 -0
- package/src/libs/better-auth/sso/providers/logto.ts +38 -0
- package/src/libs/better-auth/sso/providers/microsoft.ts +65 -0
- package/src/libs/better-auth/sso/providers/okta.ts +37 -0
- package/src/libs/better-auth/sso/providers/wechat.ts +140 -0
- package/src/libs/better-auth/sso/providers/zitadel.ts +54 -0
- package/src/libs/better-auth/sso/types.ts +25 -0
- package/src/libs/better-auth/utils/client.ts +1 -0
- package/src/libs/better-auth/utils/common.ts +20 -0
- package/src/libs/better-auth/utils/server.test.ts +61 -0
- package/src/libs/better-auth/utils/server.ts +18 -0
- package/src/libs/mcp/__tests__/__snapshots__/index.test.ts.snap +9 -1
- package/src/libs/mcp/__tests__/index.test.ts +6 -6
- package/src/libs/mcp/client.ts +3 -2
- package/src/libs/mcp/types.ts +79 -0
- package/src/libs/next-auth/auth.config.ts +2 -5
- package/src/libs/oidc-provider/adapter.ts +42 -1
- package/src/libs/oidc-provider/provider.test.ts +2 -0
- package/src/libs/redis/index.ts +5 -0
- package/src/libs/redis/manager.test.ts +107 -0
- package/src/libs/redis/manager.ts +56 -0
- package/src/libs/redis/redis.test.ts +158 -0
- package/src/libs/redis/redis.ts +117 -0
- package/src/libs/redis/types.ts +71 -0
- package/src/libs/redis/upstash.test.ts +154 -0
- package/src/libs/redis/upstash.ts +109 -0
- package/src/libs/redis/utils.test.ts +46 -0
- package/src/libs/redis/utils.ts +53 -0
- package/src/libs/trpc/client/lambda.ts +5 -8
- package/src/libs/trpc/lambda/context.test.ts +116 -0
- package/src/libs/trpc/lambda/context.ts +27 -0
- package/src/libs/trpc/lambda/index.ts +5 -2
- package/src/libs/trpc/middleware/openTelemetry.ts +141 -0
- package/src/libs/trpc/middleware/userAuth.ts +4 -2
- package/src/libs/trpc/utils/request-adapter.ts +20 -0
- package/src/locales/default/auth.ts +159 -1
- package/src/locales/default/chat.ts +43 -0
- package/src/locales/default/common.ts +24 -0
- package/src/locales/default/components.ts +6 -0
- package/src/locales/default/discover.ts +46 -0
- package/src/locales/default/error.ts +2 -2
- package/src/locales/default/file.ts +88 -5
- package/src/locales/default/hotkey.ts +4 -0
- package/src/locales/default/image.ts +8 -0
- package/src/locales/default/index.ts +2 -0
- package/src/locales/default/labs.ts +4 -0
- package/src/locales/default/marketAuth.ts +55 -0
- package/src/locales/default/modelProvider.ts +18 -2
- package/src/locales/default/oauth.ts +1 -0
- package/src/locales/default/plugin.ts +37 -16
- package/src/locales/default/setting.ts +100 -1
- package/src/locales/default/tool.ts +32 -5
- package/src/locales/default/topic.ts +1 -0
- package/src/proxy.ts +81 -5
- package/src/server/globalConfig/genServerAiProviderConfig.test.ts +5 -5
- package/src/server/globalConfig/genServerAiProviderConfig.ts +4 -4
- package/src/server/globalConfig/index.ts +12 -24
- package/src/server/globalConfig/parseFilesConfig.ts +1 -1
- package/src/server/globalConfig/parseSystemAgent.ts +4 -4
- package/src/server/modules/ContentChunk/index.test.ts +372 -0
- package/src/server/modules/ModelRuntime/index.ts +4 -4
- package/src/server/modules/S3/index.test.ts +379 -0
- package/src/server/routers/async/__tests__/caller.test.ts +333 -0
- package/src/server/routers/async/caller.ts +2 -1
- package/src/server/routers/async/file.ts +2 -7
- package/src/server/routers/async/image.ts +20 -2
- package/src/server/routers/desktop/mcp.ts +22 -9
- package/src/server/routers/lambda/__tests__/aiChat.test.ts +1 -1
- package/src/server/routers/lambda/__tests__/file.test.ts +85 -6
- package/src/server/routers/lambda/__tests__/integration/message.integration.test.ts +771 -57
- package/src/server/routers/lambda/__tests__/user.test.ts +2 -0
- package/src/server/routers/lambda/aiChat.ts +3 -2
- package/src/server/routers/lambda/chunk.ts +173 -41
- package/src/server/routers/lambda/config/__snapshots__/index.test.ts.snap +175 -12
- package/src/server/routers/lambda/config/index.test.ts +36 -28
- package/src/server/routers/lambda/document.ts +57 -0
- package/src/server/routers/lambda/file.ts +89 -2
- package/src/server/routers/lambda/index.ts +2 -0
- package/src/server/routers/lambda/knowledge.ts +94 -0
- package/src/server/routers/lambda/market/index.ts +123 -16
- package/src/server/routers/lambda/message.ts +52 -60
- package/src/server/routers/lambda/topic.ts +7 -1
- package/src/server/routers/lambda/usage.ts +36 -0
- package/src/server/routers/lambda/user.ts +36 -31
- package/src/server/routers/mobile/index.ts +14 -2
- package/src/server/routers/tools/mcp.ts +23 -5
- package/src/server/services/discover/index.test.ts +153 -11
- package/src/server/services/discover/index.ts +422 -42
- package/src/server/services/document/index.ts +103 -0
- package/src/server/services/email/README.md +260 -0
- package/src/server/services/email/impls/index.test.ts +39 -0
- package/src/server/services/email/impls/index.ts +36 -0
- package/src/server/services/email/impls/nodemailer/index.ts +108 -0
- package/src/server/services/email/impls/nodemailer/type.ts +31 -0
- package/src/server/services/email/impls/resend/index.ts +120 -0
- package/src/server/services/email/impls/type.ts +61 -0
- package/src/server/services/email/index.test.ts +144 -0
- package/src/server/services/email/index.ts +48 -0
- package/src/server/services/file/impls/index.ts +3 -3
- package/src/server/services/file/impls/local.ts +39 -36
- package/src/server/services/file/impls/s3.ts +1 -1
- package/src/server/services/file/impls/type.ts +11 -11
- package/src/server/services/file/index.ts +108 -13
- package/src/server/services/mcp/contentProcessor.ts +101 -0
- package/src/server/services/mcp/deps/MCPSystemDepsCheckService.test.ts +541 -0
- package/src/server/services/mcp/deps/MCPSystemDepsCheckService.ts +3 -3
- package/src/server/services/mcp/deps/checkers/ManualInstallationChecker.test.ts +162 -0
- package/src/server/services/mcp/deps/checkers/NpmInstallationChecker.test.ts +374 -0
- package/src/server/services/mcp/deps/checkers/PythonInstallationChecker.test.ts +368 -0
- package/src/server/services/mcp/index.test.ts +80 -25
- package/src/server/services/mcp/index.ts +48 -34
- package/src/server/services/message/__tests__/index.test.ts +338 -0
- package/src/server/services/message/index.ts +187 -0
- package/src/server/services/oidc/index.test.ts +232 -0
- package/src/server/services/oidc/index.ts +24 -0
- package/src/server/services/usage/index.test.ts +310 -0
- package/src/server/services/usage/index.ts +164 -0
- package/src/server/sitemap.ts +49 -35
- package/src/server/utils/createSpeechResponse.ts +55 -0
- package/src/services/__tests__/_auth.test.ts +1 -4
- package/src/services/__tests__/upload.test.ts +92 -82
- package/src/services/_auth.ts +4 -14
- package/src/services/_header.ts +3 -18
- package/src/services/_url.ts +15 -1
- package/src/services/aiModel/index.test.ts +3 -3
- package/src/services/aiModel/index.ts +56 -2
- package/src/services/aiProvider/index.test.ts +2 -2
- package/src/services/aiProvider/index.ts +48 -2
- package/src/services/chat/chat.test.ts +73 -16
- package/src/services/chat/clientModelRuntime.test.ts +109 -173
- package/src/services/chat/contextEngineering.test.ts +4 -0
- package/src/services/chat/contextEngineering.ts +27 -7
- package/src/services/chat/helper.ts +7 -31
- package/src/services/chat/index.ts +37 -15
- package/src/services/chat/types.ts +1 -2
- package/src/services/chatGroup/index.ts +66 -2
- package/src/services/config.ts +2 -2
- package/src/services/debug.ts +4 -4
- package/src/services/discover.ts +29 -18
- package/src/services/document/index.ts +44 -0
- package/src/services/electron/desktopNotification.ts +6 -6
- package/src/services/electron/file.ts +6 -6
- package/src/services/electron/localFileService.ts +4 -0
- package/src/services/electron/remoteServer.ts +12 -5
- package/src/services/electron/settings.ts +6 -6
- package/src/services/export/index.ts +10 -2
- package/src/services/file/index.ts +72 -2
- package/src/services/import/index.ts +133 -2
- package/src/services/marketApi.ts +124 -0
- package/src/services/mcp.test.ts +783 -0
- package/src/services/mcp.ts +75 -25
- package/src/services/message/__tests__/metadata-race-condition.test.ts +157 -0
- package/src/services/message/index.ts +237 -2
- package/src/services/message/server.test.ts +44 -0
- package/src/services/models.ts +24 -32
- package/src/services/plugin/index.test.ts +8 -0
- package/src/services/plugin/index.ts +53 -2
- package/src/services/rag.ts +6 -2
- package/src/services/search.ts +2 -2
- package/src/services/session/index.test.ts +8 -0
- package/src/services/session/index.ts +131 -2
- package/src/services/thread/index.test.ts +8 -0
- package/src/services/thread/index.ts +38 -2
- package/src/services/topic/index.test.ts +8 -0
- package/src/services/topic/index.ts +76 -2
- package/src/services/upload.ts +14 -43
- package/src/services/usage.ts +13 -0
- package/src/services/user/index.test.ts +168 -0
- package/src/services/user/index.ts +56 -2
- package/src/services/utils/abortableRequest.test.ts +161 -0
- package/src/services/utils/abortableRequest.ts +67 -0
- package/src/store/agent/slices/chat/selectors/agent.ts +4 -0
- package/src/store/agent/slices/chat/selectors/chatConfig.ts +4 -3
- package/src/store/aiInfra/slices/aiModel/action.test.ts +17 -9
- package/src/store/aiInfra/slices/aiProvider/__tests__/action.test.ts +125 -229
- package/src/store/aiInfra/slices/aiProvider/__tests__/selectors.test.ts +77 -7
- package/src/store/aiInfra/slices/aiProvider/action.ts +139 -41
- package/src/store/aiInfra/slices/aiProvider/selectors.ts +7 -3
- package/src/store/chat/agents/GeneralChatAgent.ts +391 -0
- package/src/store/chat/agents/__tests__/GeneralChatAgent.test.ts +1144 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/call-llm.test.ts +1235 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/call-tool.test.ts +2005 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/finish.test.ts +453 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/index.ts +4 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/mockInstructions.ts +126 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/mockMessages.ts +94 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/mockOperations.ts +96 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/mockStore.ts +138 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/helpers/assertions.ts +188 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/helpers/index.ts +3 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/helpers/operationTestUtils.ts +94 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/helpers/testExecutor.ts +136 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/request-human-approve.test.ts +560 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/resolve-aborted-tools.test.ts +712 -0
- package/src/store/chat/agents/createAgentExecutors.ts +770 -0
- package/src/store/chat/helpers.test.ts +0 -99
- package/src/store/chat/helpers.ts +0 -11
- package/src/store/chat/initialState.ts +4 -1
- package/src/store/chat/selectors.ts +1 -0
- package/src/store/chat/slices/aiChat/__tests__/ai-chat.integration.test.ts +667 -0
- package/src/store/chat/slices/aiChat/actions/__tests__/cancel-functionality.test.ts +137 -27
- package/src/store/chat/slices/aiChat/actions/__tests__/conversationControl.test.ts +370 -0
- package/src/store/chat/slices/aiChat/actions/__tests__/conversationLifecycle.test.ts +281 -0
- package/src/store/chat/slices/aiChat/actions/__tests__/fixtures.ts +0 -2
- package/src/store/chat/slices/aiChat/actions/__tests__/helpers.ts +16 -7
- package/src/store/chat/slices/aiChat/actions/__tests__/rag.test.ts +4 -91
- package/src/store/chat/slices/aiChat/actions/__tests__/streamingExecutor.test.ts +809 -0
- package/src/store/chat/slices/aiChat/actions/__tests__/streamingStates.test.ts +67 -0
- package/src/store/chat/slices/aiChat/actions/conversationControl.ts +220 -0
- package/src/store/chat/slices/aiChat/actions/conversationLifecycle.ts +415 -0
- package/src/store/chat/slices/aiChat/actions/generateAIGroupChat.ts +24 -39
- package/src/store/chat/slices/aiChat/actions/index.ts +12 -6
- package/src/store/chat/slices/aiChat/actions/rag.ts +4 -48
- package/src/store/chat/slices/aiChat/actions/streamingExecutor.ts +1075 -0
- package/src/store/chat/slices/aiChat/actions/streamingStates.ts +50 -0
- package/src/store/chat/slices/aiChat/initialState.ts +0 -28
- package/src/store/chat/slices/aiChat/selectors.test.ts +280 -0
- package/src/store/chat/slices/aiChat/selectors.ts +31 -7
- package/src/store/chat/slices/builtinTool/actions/__tests__/localSystem.test.ts +29 -39
- package/src/store/chat/slices/builtinTool/actions/__tests__/search.test.ts +236 -48
- package/src/store/chat/slices/builtinTool/actions/index.ts +4 -1
- package/src/store/chat/slices/builtinTool/actions/interpreter.ts +86 -51
- package/src/store/chat/slices/builtinTool/actions/knowledgeBase.ts +163 -0
- package/src/store/chat/slices/builtinTool/actions/localSystem.ts +119 -202
- package/src/store/chat/slices/builtinTool/actions/search.ts +174 -58
- package/src/store/chat/slices/builtinTool/selectors.test.ts +258 -0
- package/src/store/chat/slices/builtinTool/selectors.ts +25 -4
- package/src/store/chat/slices/message/action.test.ts +482 -63
- package/src/store/chat/slices/message/actions/index.ts +39 -0
- package/src/store/chat/slices/message/actions/internals.ts +103 -0
- package/src/store/chat/slices/message/actions/optimisticUpdate.ts +343 -0
- package/src/store/chat/slices/message/actions/publicApi.ts +284 -0
- package/src/store/chat/slices/message/actions/query.ts +135 -0
- package/src/store/chat/slices/message/actions/runtimeState.ts +108 -0
- package/src/store/chat/slices/message/initialState.ts +8 -0
- package/src/store/chat/slices/message/reducer.test.ts +48 -370
- package/src/store/chat/slices/message/reducer.ts +19 -82
- package/src/store/chat/slices/message/selectors/chat.test.ts +22 -639
- package/src/store/chat/slices/message/selectors/chat.ts +77 -243
- package/src/store/chat/slices/message/selectors/dbMessage.test.ts +51 -0
- package/src/store/chat/slices/message/selectors/dbMessage.ts +147 -0
- package/src/store/chat/slices/message/selectors/displayMessage.test.ts +818 -0
- package/src/store/chat/slices/message/selectors/displayMessage.ts +352 -0
- package/src/store/chat/slices/message/selectors/messageState.ts +46 -12
- package/src/store/chat/slices/operation/__tests__/actions.test.ts +1049 -0
- package/src/store/chat/slices/operation/__tests__/integration.test.ts +342 -0
- package/src/store/chat/slices/operation/__tests__/selectors.test.ts +601 -0
- package/src/store/chat/slices/operation/actions.ts +658 -0
- package/src/store/chat/slices/operation/index.ts +4 -0
- package/src/store/chat/slices/operation/initialState.ts +44 -0
- package/src/store/chat/slices/operation/selectors.ts +388 -0
- package/src/store/chat/slices/operation/types.ts +161 -0
- package/src/store/chat/slices/plugin/action.test.ts +320 -352
- package/src/store/chat/slices/plugin/actions/index.ts +39 -0
- package/src/store/chat/slices/plugin/actions/internals.ts +69 -0
- package/src/store/chat/slices/plugin/actions/optimisticUpdate.ts +258 -0
- package/src/store/chat/slices/plugin/actions/pluginTypes.ts +264 -0
- package/src/store/chat/slices/plugin/actions/publicApi.ts +119 -0
- package/src/store/chat/slices/plugin/actions/workflow.ts +77 -0
- package/src/store/chat/slices/portal/selectors.test.ts +7 -7
- package/src/store/chat/slices/portal/selectors.ts +2 -2
- package/src/store/chat/slices/thread/action.test.ts +38 -33
- package/src/store/chat/slices/thread/action.ts +20 -14
- package/src/store/chat/slices/thread/initialState.ts +1 -1
- package/src/store/chat/slices/thread/selectors/index.ts +12 -8
- package/src/store/chat/slices/thread/selectors/util.ts +1 -1
- package/src/store/chat/slices/topic/action.test.ts +1 -1
- package/src/store/chat/slices/topic/action.ts +4 -5
- package/src/store/chat/slices/topic/reducer.ts +12 -5
- package/src/store/chat/slices/translate/action.test.ts +26 -32
- package/src/store/chat/slices/translate/action.ts +57 -44
- package/src/store/chat/store.ts +6 -3
- package/src/store/discover/slices/assistant/action.ts +20 -7
- package/src/store/file/initialState.ts +6 -1
- package/src/store/file/slices/chat/action.ts +3 -6
- package/src/store/file/slices/document/action.ts +359 -0
- package/src/store/file/slices/document/index.ts +3 -0
- package/src/store/file/slices/document/initialState.ts +22 -0
- package/src/store/file/slices/document/selectors.ts +25 -0
- package/src/store/file/slices/fileManager/action.test.ts +16 -9
- package/src/store/file/slices/fileManager/action.ts +12 -13
- package/src/store/file/store.ts +3 -0
- package/src/store/global/action.test.ts +3 -3
- package/src/store/global/actions/workspacePane.ts +2 -1
- package/src/store/global/initialState.ts +16 -3
- package/src/store/global/selectors/systemStatus.test.ts +0 -98
- package/src/store/global/selectors/systemStatus.ts +9 -30
- package/src/store/global/store.ts +1 -7
- package/src/store/serverConfig/selectors.test.ts +2 -2
- package/src/store/serverConfig/store.test.ts +0 -1
- package/src/store/session/slices/session/action.ts +23 -0
- package/src/store/session/slices/session/initialState.ts +6 -0
- package/src/store/session/slices/sessionGroup/action.test.ts +5 -5
- package/src/store/tool/slices/mcpStore/action.test.ts +236 -3
- package/src/store/tool/slices/mcpStore/action.ts +320 -54
- package/src/store/tool/slices/oldStore/initialState.ts +1 -2
- package/src/store/urlHydration/action.ts +56 -0
- package/src/store/urlHydration/index.ts +1 -0
- package/src/store/urlHydration/initialState.ts +12 -0
- package/src/store/urlHydration/store.ts +28 -0
- package/src/store/user/initialState.ts +1 -7
- package/src/store/user/selectors.ts +2 -5
- package/src/store/user/slices/auth/action.test.ts +213 -16
- package/src/store/user/slices/auth/action.ts +86 -1
- package/src/store/user/slices/auth/initialState.ts +13 -2
- package/src/store/user/slices/auth/selectors.ts +6 -2
- package/src/store/user/slices/common/action.test.ts +1 -1
- package/src/store/user/slices/common/action.ts +14 -5
- package/src/store/user/slices/preference/action.ts +8 -1
- package/src/store/user/slices/preference/selectors/index.ts +2 -0
- package/src/store/user/slices/preference/selectors/labPrefer.ts +10 -0
- package/src/store/user/slices/preference/selectors/preference.ts +32 -0
- package/src/store/user/slices/settings/action.ts +27 -0
- package/src/store/user/slices/settings/selectors/__snapshots__/settings.test.ts.snap +0 -7
- package/src/store/user/slices/settings/selectors/general.ts +8 -0
- package/src/store/user/slices/settings/selectors/index.ts +2 -0
- package/src/store/user/slices/settings/selectors/keyVaults.ts +16 -0
- package/src/store/user/slices/settings/selectors/settings.test.ts +0 -37
- package/src/store/user/slices/settings/selectors/settings.ts +0 -5
- package/src/store/user/slices/settings/selectors/toolIntervention.ts +17 -0
- package/src/store/user/store.ts +0 -3
- package/src/tools/code-interpreter/Render/index.tsx +1 -1
- package/src/tools/executionRuntimes.ts +6 -0
- package/src/tools/identifiers.ts +13 -0
- package/src/tools/index.ts +7 -0
- package/src/tools/interventions.ts +30 -0
- package/src/tools/knowledge-base/ExecutionRuntime/index.ts +96 -0
- package/src/tools/knowledge-base/Render/ReadKnowledge/FileCard.tsx +135 -0
- package/src/tools/knowledge-base/Render/ReadKnowledge/index.tsx +27 -0
- package/src/tools/knowledge-base/Render/SearchKnowledgeBase/Item/index.tsx +54 -0
- package/src/tools/knowledge-base/Render/SearchKnowledgeBase/Item/style.ts +51 -0
- package/src/tools/knowledge-base/Render/SearchKnowledgeBase/index.tsx +23 -0
- package/src/tools/knowledge-base/Render/index.ts +7 -0
- package/src/tools/knowledge-base/index.ts +64 -0
- package/src/tools/knowledge-base/systemRole.ts +102 -0
- package/src/tools/knowledge-base/type.ts +25 -0
- package/src/tools/local-system/ExecutionRuntime/index.ts +407 -0
- package/src/tools/local-system/Intervention/EditLocalFile/index.tsx +89 -0
- package/src/tools/local-system/Intervention/MoveLocalFiles/MoveFileItem.tsx +56 -0
- package/src/tools/local-system/Intervention/MoveLocalFiles/index.tsx +26 -0
- package/src/tools/local-system/Intervention/RunCommand/index.tsx +54 -0
- package/src/tools/local-system/Intervention/WriteFile/index.tsx +72 -0
- package/src/tools/local-system/Intervention/index.ts +15 -0
- package/src/tools/local-system/Placeholder/ListFiles.tsx +3 -5
- package/src/tools/local-system/Placeholder/SearchFiles.tsx +2 -5
- package/src/tools/local-system/Render/EditLocalFile/index.tsx +67 -0
- package/src/tools/local-system/Render/ListFiles/index.tsx +16 -21
- package/src/tools/local-system/Render/MoveLocalFiles/MoveFileItem.tsx +56 -0
- package/src/tools/local-system/Render/MoveLocalFiles/index.tsx +26 -0
- package/src/tools/local-system/Render/ReadLocalFile/ReadFileView.tsx +55 -79
- package/src/tools/local-system/Render/RenameLocalFile/index.tsx +15 -20
- package/src/tools/local-system/Render/RunCommand/index.tsx +103 -27
- package/src/tools/local-system/Render/SearchFiles/SearchQuery/index.tsx +0 -1
- package/src/tools/local-system/Render/SearchFiles/index.tsx +15 -20
- package/src/tools/local-system/Render/WriteFile/index.tsx +2 -8
- package/src/tools/local-system/Render/index.ts +23 -0
- package/src/tools/local-system/index.ts +186 -4
- package/src/tools/local-system/systemRole.ts +62 -8
- package/src/tools/local-system/type.ts +4 -3
- package/src/tools/placeholders.ts +39 -8
- package/src/tools/renders.ts +39 -6
- package/src/tools/web-browsing/ExecutionRuntime/index.ts +5 -2
- package/src/tools/web-browsing/Placeholder/CrawlMultiPages.tsx +30 -0
- package/src/tools/web-browsing/Placeholder/CrawlSinglePage.tsx +12 -0
- package/src/tools/web-browsing/Placeholder/Search.tsx +4 -4
- package/src/tools/web-browsing/Portal/Search/Footer.tsx +11 -9
- package/src/tools/web-browsing/Render/CrawlMultiPages.tsx +15 -0
- package/src/tools/web-browsing/Render/CrawlSinglePage.tsx +15 -0
- package/src/tools/web-browsing/Render/Search/ConfigForm/Form.tsx +1 -1
- package/src/tools/web-browsing/Render/Search/index.tsx +39 -44
- package/src/tools/web-browsing/Render/index.ts +13 -0
- package/src/utils/electron/desktopRemoteRPCFetch.ts +87 -0
- package/src/utils/server/parseModels.ts +212 -0
- package/src/utils/server/routeVariants.test.ts +340 -0
- package/src/utils/server/routeVariants.ts +10 -10
- package/vitest.config.mts +2 -0
- package/.github/workflows/desktop-pr-build.yml +0 -358
- package/.github/workflows/docker.yml +0 -186
- package/Dockerfile.lite +0 -272
- package/packages/const/src/models.ts +0 -85
- package/packages/context-engine/ARCHITECTURE.md +0 -425
- package/packages/database/src/models/__tests__/message.grouping.test.ts +0 -812
- package/packages/database/src/models/__tests__/message.test.ts +0 -2704
- package/packages/database/src/schemas/document.ts +0 -106
- package/packages/database/src/utils/__tests__/groupMessages.test.ts +0 -1132
- package/packages/database/src/utils/groupMessages.ts +0 -361
- package/packages/model-runtime/src/utils/imageToBase64.test.ts +0 -91
- package/packages/model-runtime/src/utils/imageToBase64.ts +0 -62
- package/packages/utils/src/_deprecated/__snapshots__/parseModels.test.ts.snap +0 -104
- package/packages/utils/src/_deprecated/parseModels.test.ts +0 -287
- package/packages/utils/src/_deprecated/parseModels.ts +0 -165
- package/packages/utils/src/electron/desktopRemoteRPCFetch.ts +0 -87
- package/packages/utils/src/fetch/__tests__/fetchSSE.test.ts +0 -579
- package/packages/utils/src/fetch/__tests__/parseError.test.ts +0 -88
- package/packages/utils/src/fetch/fetchSSE.ts +0 -477
- package/packages/utils/src/fetch/headers.ts +0 -27
- package/packages/utils/src/fetch/parseError.ts +0 -24
- package/packages/utils/src/fetch/request.ts +0 -28
- package/packages/utils/src/parseModels.ts +0 -213
- package/packages/utils/src/tokenizer/client.ts +0 -35
- package/packages/utils/src/tokenizer/estimated.ts +0 -4
- package/packages/utils/src/tokenizer/server.ts +0 -11
- package/packages/utils/src/tokenizer/tokenizer.worker.ts +0 -12
- package/src/app/(backend)/api/auth/[...nextauth]/route.ts +0 -3
- package/src/app/(backend)/webapi/chat/azureai/route.test.ts +0 -25
- package/src/app/(backend)/webapi/chat/azureai/route.ts +0 -6
- package/src/app/(backend)/webapi/tokenizer/index.test.ts +0 -32
- package/src/app/(backend)/webapi/tokenizer/route.ts +0 -8
- package/src/app/[variants]/(main)/(mobile)/me/(home)/loading.tsx +0 -38
- package/src/app/[variants]/(main)/(mobile)/me/(home)/page.tsx +0 -40
- package/src/app/[variants]/(main)/(mobile)/me/profile/loading.tsx +0 -5
- package/src/app/[variants]/(main)/(mobile)/me/profile/page.tsx +0 -30
- package/src/app/[variants]/(main)/(mobile)/me/settings/loading.tsx +0 -5
- package/src/app/[variants]/(main)/(mobile)/me/settings/page.tsx +0 -30
- package/src/app/[variants]/(main)/_layout/Desktop/DesktopLayoutContainer.tsx +0 -32
- package/src/app/[variants]/(main)/_layout/Desktop/SideBar/BottomActions.tsx +0 -46
- package/src/app/[variants]/(main)/_layout/Desktop/SideBar/PinList/index.tsx +0 -119
- package/src/app/[variants]/(main)/_layout/Desktop/SideBar/TopActions.test.tsx +0 -141
- package/src/app/[variants]/(main)/_layout/Desktop/SideBar/TopActions.tsx +0 -109
- package/src/app/[variants]/(main)/_layout/Desktop/index.tsx +0 -68
- package/src/app/[variants]/(main)/_layout/Mobile/NavBar.tsx +0 -88
- package/src/app/[variants]/(main)/_layout/Mobile/index.tsx +0 -43
- package/src/app/[variants]/(main)/changelog/layout.tsx +0 -10
- package/src/app/[variants]/(main)/changelog/modal/page.tsx +0 -23
- package/src/app/[variants]/(main)/changelog/page.tsx +0 -78
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatHydration/index.tsx +0 -42
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/ClassicChat.tsx +0 -81
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/GroupChat.tsx +0 -126
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/MessageFromUrl.tsx +0 -32
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/index.tsx +0 -17
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/V1Mobile/index.tsx +0 -89
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/V1Mobile/useSend.ts +0 -104
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/useSend.ts +0 -321
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/ChatItem/Thread.tsx +0 -62
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/ChatItem/index.tsx +0 -91
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/Content.tsx +0 -43
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/AgentWelcome/OpeningQuestions.tsx +0 -75
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/GroupWelcome/GroupUsageSuggest.tsx +0 -164
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/index.tsx +0 -28
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatMinimap/index.tsx +0 -385
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ThreadHydration.tsx +0 -45
- package/src/app/[variants]/(main)/chat/(workspace)/@topic/features/Topic/TopicListContent/TopicItem/TopicContent.tsx +0 -241
- package/src/app/[variants]/(main)/chat/(workspace)/@topic/features/Topic/TopicListContent/TopicItem/index.tsx +0 -97
- package/src/app/[variants]/(main)/chat/(workspace)/layout.ts +0 -11
- package/src/app/[variants]/(main)/chat/(workspace)/page.tsx +0 -53
- package/src/app/[variants]/(main)/chat/@session/_layout/Mobile/SessionHeader.tsx +0 -44
- package/src/app/[variants]/(main)/chat/@session/default.tsx +0 -31
- package/src/app/[variants]/(main)/chat/@session/features/SessionHydration.tsx +0 -45
- package/src/app/[variants]/(main)/chat/@session/features/SessionListContent/Inbox/index.tsx +0 -63
- package/src/app/[variants]/(main)/chat/@session/features/SessionListContent/List/Item/Actions.tsx +0 -204
- package/src/app/[variants]/(main)/chat/@session/features/SessionListContent/List/Item/index.tsx +0 -158
- package/src/app/[variants]/(main)/chat/@session/features/SessionListContent/List/index.tsx +0 -100
- package/src/app/[variants]/(main)/chat/error.tsx +0 -3
- package/src/app/[variants]/(main)/chat/layout.ts +0 -11
- package/src/app/[variants]/(main)/chat/not-found.tsx +0 -1
- package/src/app/[variants]/(main)/chat/settings/error.tsx +0 -3
- package/src/app/[variants]/(main)/chat/settings/features/SubmitAgentButton/SubmitAgentModal.tsx +0 -98
- package/src/app/[variants]/(main)/chat/settings/features/SubmitAgentButton/index.tsx +0 -35
- package/src/app/[variants]/(main)/chat/settings/features/SubmitAgentButton/style.ts +0 -47
- package/src/app/[variants]/(main)/chat/settings/layout.tsx +0 -21
- package/src/app/[variants]/(main)/chat/settings/loading.tsx +0 -3
- package/src/app/[variants]/(main)/chat/settings/not-found.tsx +0 -1
- package/src/app/[variants]/(main)/chat/settings/page.tsx +0 -62
- package/src/app/[variants]/(main)/discover/(detail)/_layout/Desktop.tsx +0 -30
- package/src/app/[variants]/(main)/discover/(detail)/_layout/DetailLayout.tsx +0 -22
- package/src/app/[variants]/(main)/discover/(detail)/assistant/AssistantDetailPage.tsx +0 -47
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/Client.tsx +0 -40
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Capabilities/Block.tsx +0 -27
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Capabilities/Plugins.tsx +0 -32
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Nav.tsx +0 -122
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Overview/TagList.tsx +0 -47
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Overview/index.tsx +0 -96
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Related/index.tsx +0 -31
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/SystemRole/TagList.tsx +0 -47
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/SystemRole/index.tsx +0 -54
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/index.tsx +0 -49
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Header.tsx +0 -177
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/ActionButton/AddAgent.tsx +0 -87
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/ActionButton/index.tsx +0 -31
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/Related/index.tsx +0 -43
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/TocList/index.tsx +0 -77
- package/src/app/[variants]/(main)/discover/(detail)/mcp/McpDetailPage.tsx +0 -51
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/Client.tsx +0 -43
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Details/Related/index.tsx +0 -32
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Details/Versions/index.tsx +0 -76
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Details/index.tsx +0 -59
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/ActionButton/index.tsx +0 -83
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/Related/index.tsx +0 -44
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/ServerConfig.tsx +0 -36
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/TocList/index.tsx +0 -98
- package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/loading.tsx +0 -1
- package/src/app/[variants]/(main)/discover/(detail)/model/ModelDetailPage.tsx +0 -44
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/Client.tsx +0 -40
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/Overview/index.tsx +0 -22
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/Parameter/ParameterItem.tsx +0 -71
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/Related/index.tsx +0 -31
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/index.tsx +0 -47
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Header.tsx +0 -112
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/ActionButton/ChatWithModel.tsx +0 -92
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/ActionButton/index.tsx +0 -32
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/Related/index.tsx +0 -43
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/RelatedProviders/index.tsx +0 -34
- package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/loading.tsx +0 -1
- package/src/app/[variants]/(main)/discover/(detail)/provider/ProviderDetailPage.tsx +0 -44
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/Client.tsx +0 -40
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Details/Related/index.tsx +0 -22
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Details/index.tsx +0 -47
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/ActionButton/ProviderConfig.tsx +0 -97
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/ActionButton/index.tsx +0 -45
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/Related/index.tsx +0 -34
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/RelatedModels/index.tsx +0 -43
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/loading.tsx +0 -1
- package/src/app/[variants]/(main)/discover/(list)/(home)/HomePage.tsx +0 -45
- package/src/app/[variants]/(main)/discover/(list)/_layout/ListLayout.tsx +0 -22
- package/src/app/[variants]/(main)/discover/(list)/assistant/AssistantLayout.tsx +0 -21
- package/src/app/[variants]/(main)/discover/(list)/assistant/AssistantPage.tsx +0 -44
- package/src/app/[variants]/(main)/discover/(list)/mcp/Client.tsx +0 -44
- package/src/app/[variants]/(main)/discover/(list)/mcp/McpLayout.tsx +0 -21
- package/src/app/[variants]/(main)/discover/(list)/mcp/McpPage.tsx +0 -44
- package/src/app/[variants]/(main)/discover/(list)/model/Client.tsx +0 -44
- package/src/app/[variants]/(main)/discover/(list)/model/ModelLayout.tsx +0 -21
- package/src/app/[variants]/(main)/discover/(list)/model/ModelPage.tsx +0 -44
- package/src/app/[variants]/(main)/discover/(list)/provider/Client.tsx +0 -43
- package/src/app/[variants]/(main)/discover/(list)/provider/ProviderPage.tsx +0 -43
- package/src/app/[variants]/(main)/discover/DiscoverRouter.tsx +0 -170
- package/src/app/[variants]/(main)/discover/[[...path]]/page.tsx +0 -12
- package/src/app/[variants]/(main)/discover/_layout/DiscoverLayout.tsx +0 -22
- package/src/app/[variants]/(main)/discover/error.tsx +0 -3
- package/src/app/[variants]/(main)/discover/not-found.tsx +0 -1
- package/src/app/[variants]/(main)/error.tsx +0 -3
- package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ModelSelect.tsx +0 -161
- package/src/app/[variants]/(main)/image/layout.tsx +0 -19
- package/src/app/[variants]/(main)/image/page.tsx +0 -45
- package/src/app/[variants]/(main)/knowledge/KnowledgeRouter.tsx +0 -73
- package/src/app/[variants]/(main)/knowledge/[[...path]]/page.tsx +0 -12
- package/src/app/[variants]/(main)/knowledge/components/modal/page.tsx +0 -13
- package/src/app/[variants]/(main)/knowledge/layout.tsx +0 -12
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/MenuItems.tsx +0 -35
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/menu/FileMenu.tsx +0 -75
- package/src/app/[variants]/(main)/labs/page.tsx +0 -86
- package/src/app/[variants]/(main)/layout.tsx +0 -10
- package/src/app/[variants]/(main)/not-found.tsx +0 -1
- package/src/app/[variants]/(main)/profile/(home)/[[...slugs]]/page.tsx +0 -40
- package/src/app/[variants]/(main)/profile/apikey/page.tsx +0 -32
- package/src/app/[variants]/(main)/profile/error.tsx +0 -3
- package/src/app/[variants]/(main)/profile/layout.tsx +0 -11
- package/src/app/[variants]/(main)/profile/loading.tsx +0 -3
- package/src/app/[variants]/(main)/profile/not-found.tsx +0 -1
- package/src/app/[variants]/(main)/profile/security/page.tsx +0 -28
- package/src/app/[variants]/(main)/profile/stats/page.tsx +0 -23
- package/src/app/[variants]/(main)/settings/error.tsx +0 -3
- package/src/app/[variants]/(main)/settings/loading.tsx +0 -3
- package/src/app/[variants]/(main)/settings/not-found.tsx +0 -1
- package/src/app/[variants]/(main)/settings/page.tsx +0 -42
- package/src/app/[variants]/(main)/settings/storage/IndexedDBStorage.tsx +0 -55
- package/src/app/[variants]/@modal/(.)changelog/modal/features/Cover.tsx +0 -48
- package/src/app/[variants]/@modal/(.)changelog/modal/features/Hero.tsx +0 -29
- package/src/app/[variants]/@modal/(.)changelog/modal/features/Post.tsx +0 -57
- package/src/app/[variants]/@modal/(.)changelog/modal/features/PublishedTime.tsx +0 -50
- package/src/app/[variants]/@modal/(.)changelog/modal/features/ReadDetail.tsx +0 -72
- package/src/app/[variants]/@modal/(.)changelog/modal/features/VersionTag.tsx +0 -26
- package/src/app/[variants]/@modal/(.)changelog/modal/layout.tsx +0 -41
- package/src/app/[variants]/@modal/(.)changelog/modal/loading.tsx +0 -10
- package/src/app/[variants]/@modal/(.)changelog/modal/page.tsx +0 -38
- package/src/app/[variants]/@modal/_layout/ModalLayout.tsx +0 -63
- package/src/app/[variants]/@modal/_layout/SettingModalLayout.tsx +0 -71
- package/src/app/[variants]/@modal/default.tsx +0 -3
- package/src/app/[variants]/@modal/error.tsx +0 -3
- package/src/app/[variants]/@modal/layout.tsx +0 -7
- package/src/app/[variants]/@modal/loading.tsx +0 -5
- package/src/app/[variants]/oauth/consent/[uid]/Consent.tsx +0 -189
- package/src/features/ChatInput/ActionBar/Upload/ClientMode.tsx +0 -62
- package/src/features/Conversation/Error/AccessCodeForm.tsx +0 -63
- package/src/features/Conversation/Error/ChatInvalidApiKey.tsx +0 -39
- package/src/features/Conversation/Error/ClerkLogin/index.tsx +0 -47
- package/src/features/Conversation/Error/InvalidAccessCode.tsx +0 -79
- package/src/features/Conversation/Error/OAuthForm.tsx +0 -97
- package/src/features/Conversation/Error/index.tsx +0 -149
- package/src/features/Conversation/MarkdownElements/LobeThinking/Render.tsx +0 -30
- package/src/features/Conversation/MarkdownElements/Thinking/Render.tsx +0 -42
- package/src/features/Conversation/MarkdownElements/remarkPlugins/__snapshots__/createRemarkSelfClosingTagPlugin.test.ts.snap +0 -260
- package/src/features/Conversation/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.test.ts +0 -204
- package/src/features/Conversation/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.ts +0 -133
- package/src/features/Conversation/MarkdownElements/remarkPlugins/getNodeContent.test.ts +0 -503
- package/src/features/Conversation/Messages/Assistant/Actions/index.tsx +0 -202
- package/src/features/Conversation/Messages/Assistant/Extra/index.test.tsx +0 -91
- package/src/features/Conversation/Messages/Assistant/Extra/index.tsx +0 -49
- package/src/features/Conversation/Messages/Assistant/MessageContent.tsx +0 -91
- package/src/features/Conversation/Messages/Assistant/Reasoning/index.tsx +0 -29
- package/src/features/Conversation/Messages/Assistant/Tool/Inspector/PluginResult.tsx +0 -39
- package/src/features/Conversation/Messages/Assistant/Tool/Inspector/PluginState.tsx +0 -23
- package/src/features/Conversation/Messages/Assistant/Tool/Inspector/ToolTitle.tsx +0 -94
- package/src/features/Conversation/Messages/Assistant/Tool/Inspector/index.tsx +0 -147
- package/src/features/Conversation/Messages/Assistant/Tool/Render/CustomRender.tsx +0 -144
- package/src/features/Conversation/Messages/Assistant/Tool/Render/LoadingPlaceholder/index.tsx +0 -29
- package/src/features/Conversation/Messages/Assistant/Tool/Render/PluginSettings.tsx +0 -66
- package/src/features/Conversation/Messages/Assistant/Tool/Render/index.tsx +0 -76
- package/src/features/Conversation/Messages/Assistant/Tool/index.tsx +0 -76
- package/src/features/Conversation/Messages/Assistant/index.tsx +0 -282
- package/src/features/Conversation/Messages/Default.tsx +0 -27
- package/src/features/Conversation/Messages/Supervisor/index.tsx +0 -185
- package/src/features/Conversation/Messages/User/Actions.tsx +0 -158
- package/src/features/Conversation/Messages/User/Extra.tsx +0 -39
- package/src/features/Conversation/Messages/User/index.tsx +0 -188
- package/src/features/Conversation/Messages/index.tsx +0 -164
- package/src/features/Conversation/components/AutoScroll.tsx +0 -27
- package/src/features/Conversation/components/Extras/TTS/InitPlayer.tsx +0 -93
- package/src/features/Conversation/components/Extras/Usage/UsageDetail/index.tsx +0 -224
- package/src/features/Conversation/components/Extras/Usage/UsageDetail/tokens.ts +0 -132
- package/src/features/Conversation/components/Extras/Usage/index.tsx +0 -45
- package/src/features/Conversation/components/ShareMessageModal/ShareImage/Preview.tsx +0 -90
- package/src/features/Conversation/components/ShareMessageModal/index.tsx +0 -96
- package/src/features/Conversation/components/SkeletonList.tsx +0 -58
- package/src/features/Conversation/components/VirtualizedList/VirtuosoContext.ts +0 -92
- package/src/features/Conversation/components/VirtualizedList/index.tsx +0 -128
- package/src/features/Conversation/components/WideScreenContainer/index.tsx +0 -46
- package/src/features/Conversation/hooks/useChatListActionsBar.tsx +0 -119
- package/src/features/Conversation/hooks/useDoubleClickEdit.ts +0 -42
- package/src/features/FileManager/FileList/FileListItem/index.tsx +0 -231
- package/src/features/FileManager/FileList/MasonryFileItem/index.tsx +0 -582
- package/src/features/FileManager/FileList/index.tsx +0 -266
- package/src/features/FileManager/Header/FilesSearchBar.tsx +0 -45
- package/src/features/FileManager/Header/TogglePanelButton.tsx +0 -42
- package/src/features/FileManager/Header/index.tsx +0 -27
- package/src/features/FileManager/index.tsx +0 -36
- package/src/hooks/_header.ts +0 -23
- package/src/server/globalConfig/_deprecated.test.ts +0 -92
- package/src/server/globalConfig/_deprecated.ts +0 -41
- package/src/services/__tests__/share.test.ts +0 -61
- package/src/services/aiModel/server.test.ts +0 -122
- package/src/services/aiModel/server.ts +0 -51
- package/src/services/aiModel/type.ts +0 -32
- package/src/services/aiProvider/server.ts +0 -43
- package/src/services/aiProvider/type.ts +0 -27
- package/src/services/chatGroup/server.ts +0 -67
- package/src/services/chatGroup/type.ts +0 -22
- package/src/services/export/server.ts +0 -9
- package/src/services/export/type.ts +0 -5
- package/src/services/file/ClientS3/index.test.ts +0 -115
- package/src/services/file/ClientS3/index.ts +0 -59
- package/src/services/file/server.ts +0 -53
- package/src/services/file/type.ts +0 -13
- package/src/services/import/server.ts +0 -133
- package/src/services/import/type.ts +0 -17
- package/src/services/message/__tests__/server.test.ts +0 -44
- package/src/services/message/server.ts +0 -155
- package/src/services/message/type.ts +0 -59
- package/src/services/plugin/server.ts +0 -42
- package/src/services/plugin/type.ts +0 -23
- package/src/services/session/server.test.ts +0 -260
- package/src/services/session/server.ts +0 -125
- package/src/services/session/type.ts +0 -82
- package/src/services/thread/server.ts +0 -32
- package/src/services/thread/type.ts +0 -21
- package/src/services/topic/server.ts +0 -57
- package/src/services/topic/type.ts +0 -40
- package/src/services/user/server.test.ts +0 -149
- package/src/services/user/server.ts +0 -47
- package/src/services/user/type.ts +0 -21
- package/src/store/chat/slices/aiChat/actions/__tests__/generateAIChat.test.ts +0 -968
- package/src/store/chat/slices/aiChat/actions/__tests__/generateAIChatV2.test.ts +0 -743
- package/src/store/chat/slices/aiChat/actions/generateAIChat.ts +0 -712
- package/src/store/chat/slices/aiChat/actions/generateAIChatV2.ts +0 -591
- package/src/store/chat/slices/message/action.ts +0 -641
- package/src/store/chat/slices/plugin/action.ts +0 -505
- package/src/store/global/actions/clientDb.ts +0 -67
- package/src/store/middleware/createHyperStorage/index.test.ts +0 -341
- package/src/store/middleware/createHyperStorage/index.ts +0 -126
- package/src/store/middleware/createHyperStorage/indexedDB.test.ts +0 -64
- package/src/store/middleware/createHyperStorage/indexedDB.ts +0 -26
- package/src/store/middleware/createHyperStorage/keyMapper.ts +0 -57
- package/src/store/middleware/createHyperStorage/localStorage.ts +0 -18
- package/src/store/middleware/createHyperStorage/type.ts +0 -25
- package/src/store/middleware/createHyperStorage/urlStorage.test.ts +0 -84
- package/src/store/middleware/createHyperStorage/urlStorage.ts +0 -81
- package/src/store/user/slices/modelList/__snapshots__/action.test.ts.snap +0 -12
- package/src/store/user/slices/modelList/action.test.ts +0 -359
- package/src/store/user/slices/modelList/action.ts +0 -223
- package/src/store/user/slices/modelList/initialState.ts +0 -15
- package/src/store/user/slices/modelList/reducers/customModelCard.test.ts +0 -204
- package/src/store/user/slices/modelList/reducers/customModelCard.ts +0 -64
- package/src/store/user/slices/modelList/selectors/index.ts +0 -3
- package/src/store/user/slices/modelList/selectors/keyVaults.test.ts +0 -201
- package/src/store/user/slices/modelList/selectors/keyVaults.ts +0 -50
- package/src/store/user/slices/modelList/selectors/modelConfig.test.ts +0 -219
- package/src/store/user/slices/modelList/selectors/modelConfig.ts +0 -95
- package/src/store/user/slices/modelList/selectors/modelProvider.test.ts +0 -138
- package/src/store/user/slices/modelList/selectors/modelProvider.ts +0 -170
- package/src/store/user/slices/preference/selectors.ts +0 -34
- package/src/tools/local-system/Placeholder/index.tsx +0 -25
- package/src/tools/local-system/Render/index.tsx +0 -40
- package/src/tools/web-browsing/Placeholder/PageContent.tsx +0 -27
- package/src/tools/web-browsing/Placeholder/index.tsx +0 -40
- package/src/tools/web-browsing/Render/index.tsx +0 -57
- /package/packages/{utils/src/fetch → fetch-sse/src}/index.ts +0 -0
- /package/src/app/[variants]/{@modal/(.)changelog/modal → (main)/changelog}/features/Pagination.tsx +0 -0
- /package/src/app/[variants]/{@modal/(.)changelog/modal → (main)/changelog}/features/UpdateChangelogStatus.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/default.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/Desktop/useSendMenuItems.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/Mobile/MentionedUsers/MentionedUserItem.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/Mobile/MentionedUsers/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/Mobile/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/ActionBar.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/Files/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/InputArea/Container.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/InputArea/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/Send.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/ChatItem/OrchestratorThinking.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/ChatItem/ThreadItem.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/AgentWelcome/AddButton.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/AgentWelcome/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/GroupWelcome/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/GroupWelcome/useTemplateMatching.ts +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ZenModeToast/Toast.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ZenModeToast/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/AgentSettings/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/AgentTeamSettings/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/ChangelogModal.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/SettingButton.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/ShareButton/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/TelemetryNotification.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/HeaderAction.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Main.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/HistoryLimitTags.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/KnowledgeTag.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/MemberCountTag.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/SearchTags.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/Portal.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/TopicPanel.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Mobile/ChatHeader/ChatHeaderTitle.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Mobile/ChatHeader/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Mobile/TopicModal.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Mobile/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/type.ts +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/_layout/Desktop.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/_layout/Mobile.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/default.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/error.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/features/Body.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/loading.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/_layout/Desktop.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/_layout/Mobile.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/default.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/AgentConfig/SystemRole.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/AgentConfig/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/ConfigLayout.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/ConfigSwitcher.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/GroupMember.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/GroupMemberItem.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/GroupRole.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/style.ts +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/SkeletonList.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/Header.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ByTimeMode/GroupItem.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ByTimeMode/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/FlatMode/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/SearchResult/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ThreadItem/Content.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ThreadItem/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ThreadList/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/TopicItem/DefaultContent.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicSearchBar/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/CollapseGroup/Actions.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/CollapseGroup/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/DefaultMode.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/List/AddButton.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/ListItem/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/ConfigGroupModal/GroupItem.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/ConfigGroupModal/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/CreateGroupModal.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/RenameGroupModal.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/SearchMode.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionSearchBar.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SkeletonList.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Desktop/PanelBody.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Desktop/SessionHeader.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Desktop/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Mobile/index.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/DetailProvider.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/Knowledge.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/KnowledgeItem.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/PluginItem.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/index.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Sidebar/Related/Item.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Sidebar/Summary/index.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Sidebar/index.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/loading.tsx → loading.tsx} +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/mcp/{[slug]/features → features}/Sidebar/ConnectionTypeAlert.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/mcp/{[slug]/features → features}/Sidebar/Related/Item.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/mcp/{[slug]/features → features}/Sidebar/index.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/DetailProvider.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Details/Nav.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Details/Overview/ProviderList/index.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Details/Parameter/index.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Sidebar/Related/Item.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Sidebar/RelatedProviders/Item.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Sidebar/index.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/DetailProvider.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Details/Guide/index.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Details/Nav.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Details/Overview/ModelList/index.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Details/Overview/index.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Header.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Sidebar/Related/Item.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Sidebar/RelatedModels/Item.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Sidebar/index.tsx +0 -0
- /package/src/app/[variants]/(main)/{_layout/Desktop → layouts/desktop}/RegisterHotkeys.tsx +0 -0
- /package/src/app/[variants]/(main)/{_layout/Desktop → layouts/desktop}/SideBar/Avatar.test.tsx +0 -0
- /package/src/app/[variants]/(main)/{_layout/Desktop → layouts/desktop}/SideBar/Avatar.tsx +0 -0
- /package/src/app/[variants]/(main)/{_layout/Desktop → layouts/desktop}/SideBar/index.tsx +0 -0
- /package/src/app/[variants]/(main)/settings/provider/detail/newapi/{page.tsx → index.tsx} +0 -0
- /package/src/app/[variants]/{(main)/chat/loading.tsx → loading.tsx} +0 -0
- /package/src/{app/[variants]/(main)/settings/provider/features/ProviderConfig → components/Skeleton}/SkeletonInput.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Error/ErrorJsonViewer.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Error/OllamaBizError/InvalidOllamaModel.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Error/OllamaBizError/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Error/style.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/Render/Icon.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/Render/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/rehypePlugin.test.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/rehypePlugin.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeThinking/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LocalFile/Render/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/LocalFile/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/Mention/Render.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/Mention/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/Thinking/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/createRemarkCustomTagPlugin.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/createRemarkCustomTagWithAttributesPlugin.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/getNodeContent.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/type.ts +0 -0
- /package/src/features/{Conversation → ChatList}/MarkdownElements/utils.ts +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/Actions/Error.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/FileChunks/Item/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/FileChunks/Item/style.ts +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/FileChunks/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/IntentUnderstanding.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Assistant/SearchGrounding.tsx +0 -0
- /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages/Group}/Tool/Inspector/Settings.tsx +0 -0
- /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages/Group}/Tool/Render/Arguments/ObjectEntity.tsx +0 -0
- /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages/Group}/Tool/Render/Arguments/ValueCell.tsx +0 -0
- /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages/Group}/Tool/Render/ErrorResponse.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/Supervisor/TodoList.tsx +0 -0
- /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages}/Tool/Inspector/BuiltinPluginTitle.tsx +0 -0
- /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages}/Tool/Inspector/Debug.tsx +0 -0
- /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages}/Tool/Render/Arguments/index.tsx +0 -0
- /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages}/Tool/Render/KeyValueEditor.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/BelowMessage.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/FileListViewer/Item.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/FileListViewer/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/ImageFileListViewer.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/MarkdownRender/ContentPreview.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/MarkdownRender/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/MessageContent.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/Messages/User/VideoFileListViewer.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/BackBottom/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/BackBottom/style.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/PdfPreview.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/style.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/template.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/usePdfGeneration.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/ExtraContainer.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/TTS/FilePlayer.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/TTS/Player.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/TTS/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/Translate.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/ModelCard.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/TokenProgress.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/pricing.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/tokens.test.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/History/HistoryDivider.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/History/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/OTPInput.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareImage/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareImage/style.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareImage/type.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/Preview.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/template.test.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/template.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/type.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/style.ts +0 -0
- /package/src/features/{Conversation → ChatList}/components/ThreadDivider/index.tsx +0 -0
- /package/src/features/{Conversation → ChatList}/context/InPortalThreadContext.ts +0 -0
- /package/src/features/{Conversation → ChatList}/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/types/index.ts +0 -0
- /package/src/features/{Conversation → ChatList}/utils/markdown.test.ts +0 -0
- /package/src/features/{Conversation → ChatList}/utils/markdown.ts +0 -0
- /package/src/features/{FileManager/FileList/ToolBar → KnowledgeBaseModal/AssignKnowledgeBase}/ViewSwitcher.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/ChunkList/ChunkItem.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/ChunkList/index.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/Content.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/Loading/index.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/SimilaritySearchList/Item.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/SimilaritySearchList/index.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/index.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/EmptyStatus.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/FileListItem/ChunkTag.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/FileListItem/DropdownMenu.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/FileSkeleton.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/MasonryFileItem/MasonryItemWrapper.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/MasonrySkeleton.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/ToolBar/Config.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/ToolBar/MultiSelectActions.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/ToolBar/index.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/useCheckTaskStatus.ts +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/Header/UploadFileButton.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/UploadDock/Item.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/UploadDock/index.tsx +0 -0
- /package/{packages/utils/src → src/utils/server}/__snapshots__/parseModels.test.ts.snap +0 -0
- /package/{packages/utils/src → src/utils/server}/parseModels.test.ts +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,3411 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 2.0.0-next.150](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.149...v2.0.0-next.150)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2025-12-03**</sup>
|
|
8
|
+
|
|
9
|
+
#### 🐛 Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **misc**: Better-auth add apple sso icon and label.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### What's fixed
|
|
19
|
+
|
|
20
|
+
- **misc**: Better-auth add apple sso icon and label, closes [#10570](https://github.com/lobehub/lobe-chat/issues/10570) ([17facd5](https://github.com/lobehub/lobe-chat/commit/17facd5))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
## [Version 2.0.0-next.149](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.148...v2.0.0-next.149)
|
|
31
|
+
|
|
32
|
+
<sup>Released on **2025-12-03**</sup>
|
|
33
|
+
|
|
34
|
+
#### 🐛 Bug Fixes
|
|
35
|
+
|
|
36
|
+
- **desktop**: Add token refresh retry mechanism.
|
|
37
|
+
|
|
38
|
+
<br/>
|
|
39
|
+
|
|
40
|
+
<details>
|
|
41
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
42
|
+
|
|
43
|
+
#### What's fixed
|
|
44
|
+
|
|
45
|
+
- **desktop**: Add token refresh retry mechanism, closes [#10575](https://github.com/lobehub/lobe-chat/issues/10575) ([83fc2e8](https://github.com/lobehub/lobe-chat/commit/83fc2e8))
|
|
46
|
+
|
|
47
|
+
</details>
|
|
48
|
+
|
|
49
|
+
<div align="right">
|
|
50
|
+
|
|
51
|
+
[](#readme-top)
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
|
|
55
|
+
## [Version 2.0.0-next.148](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.147...v2.0.0-next.148)
|
|
56
|
+
|
|
57
|
+
<sup>Released on **2025-12-03**</sup>
|
|
58
|
+
|
|
59
|
+
#### 🐛 Bug Fixes
|
|
60
|
+
|
|
61
|
+
- **misc**: Remove apiMode param from Azure and Cloudflare provider requests, when desktop use contextMenu not work.
|
|
62
|
+
|
|
63
|
+
<br/>
|
|
64
|
+
|
|
65
|
+
<details>
|
|
66
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
67
|
+
|
|
68
|
+
#### What's fixed
|
|
69
|
+
|
|
70
|
+
- **misc**: Remove apiMode param from Azure and Cloudflare provider requests, closes [#10571](https://github.com/lobehub/lobe-chat/issues/10571) ([7e44faa](https://github.com/lobehub/lobe-chat/commit/7e44faa))
|
|
71
|
+
- **misc**: When desktop use contextMenu not work, closes [#10545](https://github.com/lobehub/lobe-chat/issues/10545) ([43c4db7](https://github.com/lobehub/lobe-chat/commit/43c4db7))
|
|
72
|
+
|
|
73
|
+
</details>
|
|
74
|
+
|
|
75
|
+
<div align="right">
|
|
76
|
+
|
|
77
|
+
[](#readme-top)
|
|
78
|
+
|
|
79
|
+
</div>
|
|
80
|
+
|
|
81
|
+
## [Version 2.0.0-next.147](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.146...v2.0.0-next.147)
|
|
82
|
+
|
|
83
|
+
<sup>Released on **2025-12-02**</sup>
|
|
84
|
+
|
|
85
|
+
#### ✨ Features
|
|
86
|
+
|
|
87
|
+
- **misc**: Support apple sso auth.
|
|
88
|
+
|
|
89
|
+
<br/>
|
|
90
|
+
|
|
91
|
+
<details>
|
|
92
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
93
|
+
|
|
94
|
+
#### What's improved
|
|
95
|
+
|
|
96
|
+
- **misc**: Support apple sso auth, closes [#10563](https://github.com/lobehub/lobe-chat/issues/10563) ([2e50313](https://github.com/lobehub/lobe-chat/commit/2e50313))
|
|
97
|
+
|
|
98
|
+
</details>
|
|
99
|
+
|
|
100
|
+
<div align="right">
|
|
101
|
+
|
|
102
|
+
[](#readme-top)
|
|
103
|
+
|
|
104
|
+
</div>
|
|
105
|
+
|
|
106
|
+
## [Version 2.0.0-next.146](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.145...v2.0.0-next.146)
|
|
107
|
+
|
|
108
|
+
<sup>Released on **2025-12-02**</sup>
|
|
109
|
+
|
|
110
|
+
#### ♻ Code Refactoring
|
|
111
|
+
|
|
112
|
+
- **misc**: Refactor agent slug schema.
|
|
113
|
+
|
|
114
|
+
<br/>
|
|
115
|
+
|
|
116
|
+
<details>
|
|
117
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
118
|
+
|
|
119
|
+
#### Code refactoring
|
|
120
|
+
|
|
121
|
+
- **misc**: Refactor agent slug schema, closes [#10561](https://github.com/lobehub/lobe-chat/issues/10561) ([0d609d1](https://github.com/lobehub/lobe-chat/commit/0d609d1))
|
|
122
|
+
|
|
123
|
+
</details>
|
|
124
|
+
|
|
125
|
+
<div align="right">
|
|
126
|
+
|
|
127
|
+
[](#readme-top)
|
|
128
|
+
|
|
129
|
+
</div>
|
|
130
|
+
|
|
131
|
+
## [Version 2.0.0-next.145](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.144...v2.0.0-next.145)
|
|
132
|
+
|
|
133
|
+
<sup>Released on **2025-12-02**</sup>
|
|
134
|
+
|
|
135
|
+
#### ✨ Features
|
|
136
|
+
|
|
137
|
+
- **misc**: Email provider support resend.
|
|
138
|
+
|
|
139
|
+
<br/>
|
|
140
|
+
|
|
141
|
+
<details>
|
|
142
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
143
|
+
|
|
144
|
+
#### What's improved
|
|
145
|
+
|
|
146
|
+
- **misc**: Email provider support resend, closes [#10557](https://github.com/lobehub/lobe-chat/issues/10557) ([7449b29](https://github.com/lobehub/lobe-chat/commit/7449b29))
|
|
147
|
+
|
|
148
|
+
</details>
|
|
149
|
+
|
|
150
|
+
<div align="right">
|
|
151
|
+
|
|
152
|
+
[](#readme-top)
|
|
153
|
+
|
|
154
|
+
</div>
|
|
155
|
+
|
|
156
|
+
## [Version 2.0.0-next.144](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.143...v2.0.0-next.144)
|
|
157
|
+
|
|
158
|
+
<sup>Released on **2025-12-02**</sup>
|
|
159
|
+
|
|
160
|
+
#### 🐛 Bug Fixes
|
|
161
|
+
|
|
162
|
+
- **misc**: User email unique migration error.
|
|
163
|
+
|
|
164
|
+
<br/>
|
|
165
|
+
|
|
166
|
+
<details>
|
|
167
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
168
|
+
|
|
169
|
+
#### What's fixed
|
|
170
|
+
|
|
171
|
+
- **misc**: User email unique migration error, closes [#10548](https://github.com/lobehub/lobe-chat/issues/10548) ([ca2a1a2](https://github.com/lobehub/lobe-chat/commit/ca2a1a2))
|
|
172
|
+
|
|
173
|
+
</details>
|
|
174
|
+
|
|
175
|
+
<div align="right">
|
|
176
|
+
|
|
177
|
+
[](#readme-top)
|
|
178
|
+
|
|
179
|
+
</div>
|
|
180
|
+
|
|
181
|
+
## [Version 2.0.0-next.143](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.142...v2.0.0-next.143)
|
|
182
|
+
|
|
183
|
+
<sup>Released on **2025-12-02**</sup>
|
|
184
|
+
|
|
185
|
+
#### ✨ Features
|
|
186
|
+
|
|
187
|
+
- **misc**: Support market cloud endpoint mcp.
|
|
188
|
+
|
|
189
|
+
<br/>
|
|
190
|
+
|
|
191
|
+
<details>
|
|
192
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
193
|
+
|
|
194
|
+
#### What's improved
|
|
195
|
+
|
|
196
|
+
- **misc**: Support market cloud endpoint mcp, closes [#10484](https://github.com/lobehub/lobe-chat/issues/10484) ([9c7ce44](https://github.com/lobehub/lobe-chat/commit/9c7ce44))
|
|
197
|
+
|
|
198
|
+
</details>
|
|
199
|
+
|
|
200
|
+
<div align="right">
|
|
201
|
+
|
|
202
|
+
[](#readme-top)
|
|
203
|
+
|
|
204
|
+
</div>
|
|
205
|
+
|
|
206
|
+
## [Version 2.0.0-next.142](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.141...v2.0.0-next.142)
|
|
207
|
+
|
|
208
|
+
<sup>Released on **2025-12-01**</sup>
|
|
209
|
+
|
|
210
|
+
#### 🐛 Bug Fixes
|
|
211
|
+
|
|
212
|
+
- **misc**: Remove internal apiMode param from chat completion API requests.
|
|
213
|
+
|
|
214
|
+
<br/>
|
|
215
|
+
|
|
216
|
+
<details>
|
|
217
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
218
|
+
|
|
219
|
+
#### What's fixed
|
|
220
|
+
|
|
221
|
+
- **misc**: Remove internal apiMode param from chat completion API requests, closes [#10539](https://github.com/lobehub/lobe-chat/issues/10539) ([9498cc6](https://github.com/lobehub/lobe-chat/commit/9498cc6))
|
|
222
|
+
|
|
223
|
+
</details>
|
|
224
|
+
|
|
225
|
+
<div align="right">
|
|
226
|
+
|
|
227
|
+
[](#readme-top)
|
|
228
|
+
|
|
229
|
+
</div>
|
|
230
|
+
|
|
231
|
+
## [Version 2.0.0-next.141](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.140...v2.0.0-next.141)
|
|
232
|
+
|
|
233
|
+
<sup>Released on **2025-12-01**</sup>
|
|
234
|
+
|
|
235
|
+
#### 🐛 Bug Fixes
|
|
236
|
+
|
|
237
|
+
- **misc**: Drop user.phoneNumber and reuse user.phone.
|
|
238
|
+
|
|
239
|
+
<br/>
|
|
240
|
+
|
|
241
|
+
<details>
|
|
242
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
243
|
+
|
|
244
|
+
#### What's fixed
|
|
245
|
+
|
|
246
|
+
- **misc**: Drop user.phoneNumber and reuse user.phone, closes [#10531](https://github.com/lobehub/lobe-chat/issues/10531) ([2ab88c5](https://github.com/lobehub/lobe-chat/commit/2ab88c5))
|
|
247
|
+
|
|
248
|
+
</details>
|
|
249
|
+
|
|
250
|
+
<div align="right">
|
|
251
|
+
|
|
252
|
+
[](#readme-top)
|
|
253
|
+
|
|
254
|
+
</div>
|
|
255
|
+
|
|
256
|
+
## [Version 2.0.0-next.140](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.139...v2.0.0-next.140)
|
|
257
|
+
|
|
258
|
+
<sup>Released on **2025-12-01**</sup>
|
|
259
|
+
|
|
260
|
+
#### ✨ Features
|
|
261
|
+
|
|
262
|
+
- **misc**: Integrate better-auth admin plugin.
|
|
263
|
+
|
|
264
|
+
<br/>
|
|
265
|
+
|
|
266
|
+
<details>
|
|
267
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
268
|
+
|
|
269
|
+
#### What's improved
|
|
270
|
+
|
|
271
|
+
- **misc**: Integrate better-auth admin plugin, closes [#10512](https://github.com/lobehub/lobe-chat/issues/10512) ([3be78f0](https://github.com/lobehub/lobe-chat/commit/3be78f0))
|
|
272
|
+
|
|
273
|
+
</details>
|
|
274
|
+
|
|
275
|
+
<div align="right">
|
|
276
|
+
|
|
277
|
+
[](#readme-top)
|
|
278
|
+
|
|
279
|
+
</div>
|
|
280
|
+
|
|
281
|
+
## [Version 2.0.0-next.139](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.138...v2.0.0-next.139)
|
|
282
|
+
|
|
283
|
+
<sup>Released on **2025-12-01**</sup>
|
|
284
|
+
|
|
285
|
+
#### 💄 Styles
|
|
286
|
+
|
|
287
|
+
- **misc**: Update i18n.
|
|
288
|
+
|
|
289
|
+
<br/>
|
|
290
|
+
|
|
291
|
+
<details>
|
|
292
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
293
|
+
|
|
294
|
+
#### Styles
|
|
295
|
+
|
|
296
|
+
- **misc**: Update i18n, closes [#10519](https://github.com/lobehub/lobe-chat/issues/10519) ([bd9a38c](https://github.com/lobehub/lobe-chat/commit/bd9a38c))
|
|
297
|
+
|
|
298
|
+
</details>
|
|
299
|
+
|
|
300
|
+
<div align="right">
|
|
301
|
+
|
|
302
|
+
[](#readme-top)
|
|
303
|
+
|
|
304
|
+
</div>
|
|
305
|
+
|
|
306
|
+
## [Version 2.0.0-next.138](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.137...v2.0.0-next.138)
|
|
307
|
+
|
|
308
|
+
<sup>Released on **2025-11-30**</sup>
|
|
309
|
+
|
|
310
|
+
#### 🐛 Bug Fixes
|
|
311
|
+
|
|
312
|
+
- **conversation-flow**: Support optimistic update for activeBranchIndex.
|
|
313
|
+
|
|
314
|
+
<br/>
|
|
315
|
+
|
|
316
|
+
<details>
|
|
317
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
318
|
+
|
|
319
|
+
#### What's fixed
|
|
320
|
+
|
|
321
|
+
- **conversation-flow**: Support optimistic update for activeBranchIndex, closes [#10517](https://github.com/lobehub/lobe-chat/issues/10517) ([9b5b234](https://github.com/lobehub/lobe-chat/commit/9b5b234))
|
|
322
|
+
|
|
323
|
+
</details>
|
|
324
|
+
|
|
325
|
+
<div align="right">
|
|
326
|
+
|
|
327
|
+
[](#readme-top)
|
|
328
|
+
|
|
329
|
+
</div>
|
|
330
|
+
|
|
331
|
+
## [Version 2.0.0-next.137](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.136...v2.0.0-next.137)
|
|
332
|
+
|
|
333
|
+
<sup>Released on **2025-11-30**</sup>
|
|
334
|
+
|
|
335
|
+
#### 🐛 Bug Fixes
|
|
336
|
+
|
|
337
|
+
- **misc**: Update apiMode handling in ChatService to prioritize user preferences.
|
|
338
|
+
|
|
339
|
+
<br/>
|
|
340
|
+
|
|
341
|
+
<details>
|
|
342
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
343
|
+
|
|
344
|
+
#### What's fixed
|
|
345
|
+
|
|
346
|
+
- **misc**: Update apiMode handling in ChatService to prioritize user preferences, closes [#10487](https://github.com/lobehub/lobe-chat/issues/10487) ([5483d91](https://github.com/lobehub/lobe-chat/commit/5483d91))
|
|
347
|
+
|
|
348
|
+
</details>
|
|
349
|
+
|
|
350
|
+
<div align="right">
|
|
351
|
+
|
|
352
|
+
[](#readme-top)
|
|
353
|
+
|
|
354
|
+
</div>
|
|
355
|
+
|
|
356
|
+
## [Version 2.0.0-next.136](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.135...v2.0.0-next.136)
|
|
357
|
+
|
|
358
|
+
<sup>Released on **2025-11-30**</sup>
|
|
359
|
+
|
|
360
|
+
#### 🐛 Bug Fixes
|
|
361
|
+
|
|
362
|
+
- **misc**: Refresh custom AI provider on selection.
|
|
363
|
+
|
|
364
|
+
<br/>
|
|
365
|
+
|
|
366
|
+
<details>
|
|
367
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
368
|
+
|
|
369
|
+
#### What's fixed
|
|
370
|
+
|
|
371
|
+
- **misc**: Refresh custom AI provider on selection, closes [#10506](https://github.com/lobehub/lobe-chat/issues/10506) ([d7db99e](https://github.com/lobehub/lobe-chat/commit/d7db99e))
|
|
372
|
+
|
|
373
|
+
</details>
|
|
374
|
+
|
|
375
|
+
<div align="right">
|
|
376
|
+
|
|
377
|
+
[](#readme-top)
|
|
378
|
+
|
|
379
|
+
</div>
|
|
380
|
+
|
|
381
|
+
## [Version 2.0.0-next.135](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.134...v2.0.0-next.135)
|
|
382
|
+
|
|
383
|
+
<sup>Released on **2025-11-30**</sup>
|
|
384
|
+
|
|
385
|
+
#### 🐛 Bug Fixes
|
|
386
|
+
|
|
387
|
+
- **misc**: Fix BetterAuth `Unable to link account - untrusted provider`.
|
|
388
|
+
|
|
389
|
+
<br/>
|
|
390
|
+
|
|
391
|
+
<details>
|
|
392
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
393
|
+
|
|
394
|
+
#### What's fixed
|
|
395
|
+
|
|
396
|
+
- **misc**: Fix BetterAuth `Unable to link account - untrusted provider`, closes [#10505](https://github.com/lobehub/lobe-chat/issues/10505) ([d845451](https://github.com/lobehub/lobe-chat/commit/d845451))
|
|
397
|
+
|
|
398
|
+
</details>
|
|
399
|
+
|
|
400
|
+
<div align="right">
|
|
401
|
+
|
|
402
|
+
[](#readme-top)
|
|
403
|
+
|
|
404
|
+
</div>
|
|
405
|
+
|
|
406
|
+
## [Version 2.0.0-next.134](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.133...v2.0.0-next.134)
|
|
407
|
+
|
|
408
|
+
<sup>Released on **2025-11-29**</sup>
|
|
409
|
+
|
|
410
|
+
#### 🐛 Bug Fixes
|
|
411
|
+
|
|
412
|
+
- **misc**: Betterauth public url auto detect from VERCEL_URL.
|
|
413
|
+
|
|
414
|
+
<br/>
|
|
415
|
+
|
|
416
|
+
<details>
|
|
417
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
418
|
+
|
|
419
|
+
#### What's fixed
|
|
420
|
+
|
|
421
|
+
- **misc**: Betterauth public url auto detect from VERCEL_URL, closes [#10493](https://github.com/lobehub/lobe-chat/issues/10493) ([b5bf8ad](https://github.com/lobehub/lobe-chat/commit/b5bf8ad))
|
|
422
|
+
|
|
423
|
+
</details>
|
|
424
|
+
|
|
425
|
+
<div align="right">
|
|
426
|
+
|
|
427
|
+
[](#readme-top)
|
|
428
|
+
|
|
429
|
+
</div>
|
|
430
|
+
|
|
431
|
+
## [Version 2.0.0-next.133](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.132...v2.0.0-next.133)
|
|
432
|
+
|
|
433
|
+
<sup>Released on **2025-11-29**</sup>
|
|
434
|
+
|
|
435
|
+
#### 🐛 Bug Fixes
|
|
436
|
+
|
|
437
|
+
- **misc**: Betterauth name should mapped to fullName.
|
|
438
|
+
|
|
439
|
+
<br/>
|
|
440
|
+
|
|
441
|
+
<details>
|
|
442
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
443
|
+
|
|
444
|
+
#### What's fixed
|
|
445
|
+
|
|
446
|
+
- **misc**: Betterauth name should mapped to fullName, closes [#10490](https://github.com/lobehub/lobe-chat/issues/10490) ([7babdc1](https://github.com/lobehub/lobe-chat/commit/7babdc1))
|
|
447
|
+
|
|
448
|
+
</details>
|
|
449
|
+
|
|
450
|
+
<div align="right">
|
|
451
|
+
|
|
452
|
+
[](#readme-top)
|
|
453
|
+
|
|
454
|
+
</div>
|
|
455
|
+
|
|
456
|
+
## [Version 2.0.0-next.132](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.131...v2.0.0-next.132)
|
|
457
|
+
|
|
458
|
+
<sup>Released on **2025-11-29**</sup>
|
|
459
|
+
|
|
460
|
+
#### 🐛 Bug Fixes
|
|
461
|
+
|
|
462
|
+
- **misc**: Unable to switch to default topic.
|
|
463
|
+
|
|
464
|
+
<br/>
|
|
465
|
+
|
|
466
|
+
<details>
|
|
467
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
468
|
+
|
|
469
|
+
#### What's fixed
|
|
470
|
+
|
|
471
|
+
- **misc**: Unable to switch to default topic, closes [#10472](https://github.com/lobehub/lobe-chat/issues/10472) ([d181f71](https://github.com/lobehub/lobe-chat/commit/d181f71))
|
|
472
|
+
|
|
473
|
+
</details>
|
|
474
|
+
|
|
475
|
+
<div align="right">
|
|
476
|
+
|
|
477
|
+
[](#readme-top)
|
|
478
|
+
|
|
479
|
+
</div>
|
|
480
|
+
|
|
481
|
+
## [Version 2.0.0-next.131](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.130...v2.0.0-next.131)
|
|
482
|
+
|
|
483
|
+
<sup>Released on **2025-11-28**</sup>
|
|
484
|
+
|
|
485
|
+
#### 🐛 Bug Fixes
|
|
486
|
+
|
|
487
|
+
- **misc**: Implement uniform callback URL for SSO providers.
|
|
488
|
+
|
|
489
|
+
<br/>
|
|
490
|
+
|
|
491
|
+
<details>
|
|
492
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
493
|
+
|
|
494
|
+
#### What's fixed
|
|
495
|
+
|
|
496
|
+
- **misc**: Implement uniform callback URL for SSO providers, closes [#10479](https://github.com/lobehub/lobe-chat/issues/10479) ([74554c6](https://github.com/lobehub/lobe-chat/commit/74554c6))
|
|
497
|
+
|
|
498
|
+
</details>
|
|
499
|
+
|
|
500
|
+
<div align="right">
|
|
501
|
+
|
|
502
|
+
[](#readme-top)
|
|
503
|
+
|
|
504
|
+
</div>
|
|
505
|
+
|
|
506
|
+
## [Version 2.0.0-next.130](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.129...v2.0.0-next.130)
|
|
507
|
+
|
|
508
|
+
<sup>Released on **2025-11-28**</sup>
|
|
509
|
+
|
|
510
|
+
#### 🐛 Bug Fixes
|
|
511
|
+
|
|
512
|
+
- **misc**: Add handling for `content_part` and `reasoning_part` events in fetchSSE.
|
|
513
|
+
|
|
514
|
+
<br/>
|
|
515
|
+
|
|
516
|
+
<details>
|
|
517
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
518
|
+
|
|
519
|
+
#### What's fixed
|
|
520
|
+
|
|
521
|
+
- **misc**: Add handling for `content_part` and `reasoning_part` events in fetchSSE, closes [#10470](https://github.com/lobehub/lobe-chat/issues/10470) ([8aff3ab](https://github.com/lobehub/lobe-chat/commit/8aff3ab))
|
|
522
|
+
|
|
523
|
+
</details>
|
|
524
|
+
|
|
525
|
+
<div align="right">
|
|
526
|
+
|
|
527
|
+
[](#readme-top)
|
|
528
|
+
|
|
529
|
+
</div>
|
|
530
|
+
|
|
531
|
+
## [Version 2.0.0-next.129](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.128...v2.0.0-next.129)
|
|
532
|
+
|
|
533
|
+
<sup>Released on **2025-11-28**</sup>
|
|
534
|
+
|
|
535
|
+
#### 🐛 Bug Fixes
|
|
536
|
+
|
|
537
|
+
- **misc**: Filter out file with `sourceType` = `file`.
|
|
538
|
+
|
|
539
|
+
<br/>
|
|
540
|
+
|
|
541
|
+
<details>
|
|
542
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
543
|
+
|
|
544
|
+
#### What's fixed
|
|
545
|
+
|
|
546
|
+
- **misc**: Filter out file with `sourceType` = `file`, closes [#10474](https://github.com/lobehub/lobe-chat/issues/10474) ([e1c99a0](https://github.com/lobehub/lobe-chat/commit/e1c99a0))
|
|
547
|
+
|
|
548
|
+
</details>
|
|
549
|
+
|
|
550
|
+
<div align="right">
|
|
551
|
+
|
|
552
|
+
[](#readme-top)
|
|
553
|
+
|
|
554
|
+
</div>
|
|
555
|
+
|
|
556
|
+
## [Version 2.0.0-next.128](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.127...v2.0.0-next.128)
|
|
557
|
+
|
|
558
|
+
<sup>Released on **2025-11-28**</sup>
|
|
559
|
+
|
|
560
|
+
#### 💄 Styles
|
|
561
|
+
|
|
562
|
+
- **misc**: Update i18n.
|
|
563
|
+
|
|
564
|
+
<br/>
|
|
565
|
+
|
|
566
|
+
<details>
|
|
567
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
568
|
+
|
|
569
|
+
#### Styles
|
|
570
|
+
|
|
571
|
+
- **misc**: Update i18n, closes [#10466](https://github.com/lobehub/lobe-chat/issues/10466) ([37bd67a](https://github.com/lobehub/lobe-chat/commit/37bd67a))
|
|
572
|
+
|
|
573
|
+
</details>
|
|
574
|
+
|
|
575
|
+
<div align="right">
|
|
576
|
+
|
|
577
|
+
[](#readme-top)
|
|
578
|
+
|
|
579
|
+
</div>
|
|
580
|
+
|
|
581
|
+
## [Version 2.0.0-next.127](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.126...v2.0.0-next.127)
|
|
582
|
+
|
|
583
|
+
<sup>Released on **2025-11-27**</sup>
|
|
584
|
+
|
|
585
|
+
#### 🐛 Bug Fixes
|
|
586
|
+
|
|
587
|
+
- **misc**: Better-auth fallback next-auth providers env.
|
|
588
|
+
|
|
589
|
+
<br/>
|
|
590
|
+
|
|
591
|
+
<details>
|
|
592
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
593
|
+
|
|
594
|
+
#### What's fixed
|
|
595
|
+
|
|
596
|
+
- **misc**: Better-auth fallback next-auth providers env, closes [#10459](https://github.com/lobehub/lobe-chat/issues/10459) ([e167075](https://github.com/lobehub/lobe-chat/commit/e167075))
|
|
597
|
+
|
|
598
|
+
</details>
|
|
599
|
+
|
|
600
|
+
<div align="right">
|
|
601
|
+
|
|
602
|
+
[](#readme-top)
|
|
603
|
+
|
|
604
|
+
</div>
|
|
605
|
+
|
|
606
|
+
## [Version 2.0.0-next.126](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.125...v2.0.0-next.126)
|
|
607
|
+
|
|
608
|
+
<sup>Released on **2025-11-27**</sup>
|
|
609
|
+
|
|
610
|
+
#### 🐛 Bug Fixes
|
|
611
|
+
|
|
612
|
+
- **misc**: Align docker auth defaults and better-auth docs.
|
|
613
|
+
|
|
614
|
+
<br/>
|
|
615
|
+
|
|
616
|
+
<details>
|
|
617
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
618
|
+
|
|
619
|
+
#### What's fixed
|
|
620
|
+
|
|
621
|
+
- **misc**: Align docker auth defaults and better-auth docs, closes [#10457](https://github.com/lobehub/lobe-chat/issues/10457) ([1375314](https://github.com/lobehub/lobe-chat/commit/1375314))
|
|
622
|
+
|
|
623
|
+
</details>
|
|
624
|
+
|
|
625
|
+
<div align="right">
|
|
626
|
+
|
|
627
|
+
[](#readme-top)
|
|
628
|
+
|
|
629
|
+
</div>
|
|
630
|
+
|
|
631
|
+
## [Version 2.0.0-next.125](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.124...v2.0.0-next.125)
|
|
632
|
+
|
|
633
|
+
<sup>Released on **2025-11-27**</sup>
|
|
634
|
+
|
|
635
|
+
#### ✨ Features
|
|
636
|
+
|
|
637
|
+
- **misc**: Support better-auth.
|
|
638
|
+
|
|
639
|
+
<br/>
|
|
640
|
+
|
|
641
|
+
<details>
|
|
642
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
643
|
+
|
|
644
|
+
#### What's improved
|
|
645
|
+
|
|
646
|
+
- **misc**: Support better-auth, closes [#10215](https://github.com/lobehub/lobe-chat/issues/10215) ([dc62cc9](https://github.com/lobehub/lobe-chat/commit/dc62cc9))
|
|
647
|
+
|
|
648
|
+
</details>
|
|
649
|
+
|
|
650
|
+
<div align="right">
|
|
651
|
+
|
|
652
|
+
[](#readme-top)
|
|
653
|
+
|
|
654
|
+
</div>
|
|
655
|
+
|
|
656
|
+
## [Version 2.0.0-next.124](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.123...v2.0.0-next.124)
|
|
657
|
+
|
|
658
|
+
<sup>Released on **2025-11-27**</sup>
|
|
659
|
+
|
|
660
|
+
#### 🐛 Bug Fixes
|
|
661
|
+
|
|
662
|
+
- **misc**: Fixed the agent settings plugins pages error problem, improve topic item interaction and editing behavior.
|
|
663
|
+
|
|
664
|
+
<br/>
|
|
665
|
+
|
|
666
|
+
<details>
|
|
667
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
668
|
+
|
|
669
|
+
#### What's fixed
|
|
670
|
+
|
|
671
|
+
- **misc**: Fixed the agent settings plugins pages error problem, closes [#10437](https://github.com/lobehub/lobe-chat/issues/10437) ([c58f37a](https://github.com/lobehub/lobe-chat/commit/c58f37a))
|
|
672
|
+
- **misc**: Improve topic item interaction and editing behavior, closes [#10409](https://github.com/lobehub/lobe-chat/issues/10409) ([85b45cb](https://github.com/lobehub/lobe-chat/commit/85b45cb))
|
|
673
|
+
|
|
674
|
+
</details>
|
|
675
|
+
|
|
676
|
+
<div align="right">
|
|
677
|
+
|
|
678
|
+
[](#readme-top)
|
|
679
|
+
|
|
680
|
+
</div>
|
|
681
|
+
|
|
682
|
+
## [Version 2.0.0-next.123](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.122...v2.0.0-next.123)
|
|
683
|
+
|
|
684
|
+
<sup>Released on **2025-11-27**</sup>
|
|
685
|
+
|
|
686
|
+
#### 💄 Styles
|
|
687
|
+
|
|
688
|
+
- **misc**: Update i18n.
|
|
689
|
+
|
|
690
|
+
<br/>
|
|
691
|
+
|
|
692
|
+
<details>
|
|
693
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
694
|
+
|
|
695
|
+
#### Styles
|
|
696
|
+
|
|
697
|
+
- **misc**: Update i18n, closes [#10445](https://github.com/lobehub/lobe-chat/issues/10445) ([4942bc9](https://github.com/lobehub/lobe-chat/commit/4942bc9))
|
|
698
|
+
|
|
699
|
+
</details>
|
|
700
|
+
|
|
701
|
+
<div align="right">
|
|
702
|
+
|
|
703
|
+
[](#readme-top)
|
|
704
|
+
|
|
705
|
+
</div>
|
|
706
|
+
|
|
707
|
+
## [Version 2.0.0-next.122](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.121...v2.0.0-next.122)
|
|
708
|
+
|
|
709
|
+
<sup>Released on **2025-11-26**</sup>
|
|
710
|
+
|
|
711
|
+
#### 🐛 Bug Fixes
|
|
712
|
+
|
|
713
|
+
- **misc**: Slove the publish to market the agent config error.
|
|
714
|
+
|
|
715
|
+
<br/>
|
|
716
|
+
|
|
717
|
+
<details>
|
|
718
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
719
|
+
|
|
720
|
+
#### What's fixed
|
|
721
|
+
|
|
722
|
+
- **misc**: Slove the publish to market the agent config error, closes [#10440](https://github.com/lobehub/lobe-chat/issues/10440) ([fda8119](https://github.com/lobehub/lobe-chat/commit/fda8119))
|
|
723
|
+
|
|
724
|
+
</details>
|
|
725
|
+
|
|
726
|
+
<div align="right">
|
|
727
|
+
|
|
728
|
+
[](#readme-top)
|
|
729
|
+
|
|
730
|
+
</div>
|
|
731
|
+
|
|
732
|
+
## [Version 2.0.0-next.121](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.120...v2.0.0-next.121)
|
|
733
|
+
|
|
734
|
+
<sup>Released on **2025-11-26**</sup>
|
|
735
|
+
|
|
736
|
+
#### 💄 Styles
|
|
737
|
+
|
|
738
|
+
- **misc**: Add image aspect ratio and resolution settings for Nano Banana Pro.
|
|
739
|
+
|
|
740
|
+
<br/>
|
|
741
|
+
|
|
742
|
+
<details>
|
|
743
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
744
|
+
|
|
745
|
+
#### Styles
|
|
746
|
+
|
|
747
|
+
- **misc**: Add image aspect ratio and resolution settings for Nano Banana Pro, closes [#10430](https://github.com/lobehub/lobe-chat/issues/10430) ([a197b4b](https://github.com/lobehub/lobe-chat/commit/a197b4b))
|
|
748
|
+
|
|
749
|
+
</details>
|
|
750
|
+
|
|
751
|
+
<div align="right">
|
|
752
|
+
|
|
753
|
+
[](#readme-top)
|
|
754
|
+
|
|
755
|
+
</div>
|
|
756
|
+
|
|
757
|
+
## [Version 2.0.0-next.120](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.119...v2.0.0-next.120)
|
|
758
|
+
|
|
759
|
+
<sup>Released on **2025-11-26**</sup>
|
|
760
|
+
|
|
761
|
+
#### 🐛 Bug Fixes
|
|
762
|
+
|
|
763
|
+
- **misc**: Try to fix “TypeError: Response body object should not be disturbed or locked”.
|
|
764
|
+
|
|
765
|
+
<br/>
|
|
766
|
+
|
|
767
|
+
<details>
|
|
768
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
769
|
+
|
|
770
|
+
#### What's fixed
|
|
771
|
+
|
|
772
|
+
- **misc**: Try to fix “TypeError: Response body object should not be disturbed or locked”, closes [#10321](https://github.com/lobehub/lobe-chat/issues/10321) ([a547e9e](https://github.com/lobehub/lobe-chat/commit/a547e9e))
|
|
773
|
+
|
|
774
|
+
</details>
|
|
775
|
+
|
|
776
|
+
<div align="right">
|
|
777
|
+
|
|
778
|
+
[](#readme-top)
|
|
779
|
+
|
|
780
|
+
</div>
|
|
781
|
+
|
|
782
|
+
## [Version 2.0.0-next.119](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.118...v2.0.0-next.119)
|
|
783
|
+
|
|
784
|
+
<sup>Released on **2025-11-26**</sup>
|
|
785
|
+
|
|
786
|
+
#### 💄 Styles
|
|
787
|
+
|
|
788
|
+
- **misc**: Update i18n.
|
|
789
|
+
|
|
790
|
+
<br/>
|
|
791
|
+
|
|
792
|
+
<details>
|
|
793
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
794
|
+
|
|
795
|
+
#### Styles
|
|
796
|
+
|
|
797
|
+
- **misc**: Update i18n, closes [#10405](https://github.com/lobehub/lobe-chat/issues/10405) ([fb8f977](https://github.com/lobehub/lobe-chat/commit/fb8f977))
|
|
798
|
+
|
|
799
|
+
</details>
|
|
800
|
+
|
|
801
|
+
<div align="right">
|
|
802
|
+
|
|
803
|
+
[](#readme-top)
|
|
804
|
+
|
|
805
|
+
</div>
|
|
806
|
+
|
|
807
|
+
## [Version 2.0.0-next.118](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.117...v2.0.0-next.118)
|
|
808
|
+
|
|
809
|
+
<sup>Released on **2025-11-26**</sup>
|
|
810
|
+
|
|
811
|
+
#### 🐛 Bug Fixes
|
|
812
|
+
|
|
813
|
+
- **misc**: Showing compatibility with both new and old versions of Plugins.
|
|
814
|
+
|
|
815
|
+
<br/>
|
|
816
|
+
|
|
817
|
+
<details>
|
|
818
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
819
|
+
|
|
820
|
+
#### What's fixed
|
|
821
|
+
|
|
822
|
+
- **misc**: Showing compatibility with both new and old versions of Plugins, closes [#10418](https://github.com/lobehub/lobe-chat/issues/10418) ([64af7b1](https://github.com/lobehub/lobe-chat/commit/64af7b1))
|
|
823
|
+
|
|
824
|
+
</details>
|
|
825
|
+
|
|
826
|
+
<div align="right">
|
|
827
|
+
|
|
828
|
+
[](#readme-top)
|
|
829
|
+
|
|
830
|
+
</div>
|
|
831
|
+
|
|
832
|
+
## [Version 2.0.0-next.117](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.116...v2.0.0-next.117)
|
|
833
|
+
|
|
834
|
+
<sup>Released on **2025-11-25**</sup>
|
|
835
|
+
|
|
836
|
+
#### ✨ Features
|
|
837
|
+
|
|
838
|
+
- **misc**: Bedrock claude model thinking support.
|
|
839
|
+
|
|
840
|
+
<br/>
|
|
841
|
+
|
|
842
|
+
<details>
|
|
843
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
844
|
+
|
|
845
|
+
#### What's improved
|
|
846
|
+
|
|
847
|
+
- **misc**: Bedrock claude model thinking support, closes [#10422](https://github.com/lobehub/lobe-chat/issues/10422) ([8b41638](https://github.com/lobehub/lobe-chat/commit/8b41638))
|
|
848
|
+
|
|
849
|
+
</details>
|
|
850
|
+
|
|
851
|
+
<div align="right">
|
|
852
|
+
|
|
853
|
+
[](#readme-top)
|
|
854
|
+
|
|
855
|
+
</div>
|
|
856
|
+
|
|
857
|
+
## [Version 2.0.0-next.116](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.115...v2.0.0-next.116)
|
|
858
|
+
|
|
859
|
+
<sup>Released on **2025-11-25**</sup>
|
|
860
|
+
|
|
861
|
+
#### ✨ Features
|
|
862
|
+
|
|
863
|
+
- **misc**: Support nano banana pro.
|
|
864
|
+
|
|
865
|
+
<br/>
|
|
866
|
+
|
|
867
|
+
<details>
|
|
868
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
869
|
+
|
|
870
|
+
#### What's improved
|
|
871
|
+
|
|
872
|
+
- **misc**: Support nano banana pro, closes [#10413](https://github.com/lobehub/lobe-chat/issues/10413) ([a93cfcd](https://github.com/lobehub/lobe-chat/commit/a93cfcd))
|
|
873
|
+
|
|
874
|
+
</details>
|
|
875
|
+
|
|
876
|
+
<div align="right">
|
|
877
|
+
|
|
878
|
+
[](#readme-top)
|
|
879
|
+
|
|
880
|
+
</div>
|
|
881
|
+
|
|
882
|
+
## [Version 2.0.0-next.115](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.114...v2.0.0-next.115)
|
|
883
|
+
|
|
884
|
+
<sup>Released on **2025-11-25**</sup>
|
|
885
|
+
|
|
886
|
+
#### ✨ Features
|
|
887
|
+
|
|
888
|
+
- **misc**: Add Claude Opus 4.5 model.
|
|
889
|
+
|
|
890
|
+
<br/>
|
|
891
|
+
|
|
892
|
+
<details>
|
|
893
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
894
|
+
|
|
895
|
+
#### What's improved
|
|
896
|
+
|
|
897
|
+
- **misc**: Add Claude Opus 4.5 model, closes [#10406](https://github.com/lobehub/lobe-chat/issues/10406) ([042005a](https://github.com/lobehub/lobe-chat/commit/042005a))
|
|
898
|
+
|
|
899
|
+
</details>
|
|
900
|
+
|
|
901
|
+
<div align="right">
|
|
902
|
+
|
|
903
|
+
[](#readme-top)
|
|
904
|
+
|
|
905
|
+
</div>
|
|
906
|
+
|
|
907
|
+
## [Version 2.0.0-next.114](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.113...v2.0.0-next.114)
|
|
908
|
+
|
|
909
|
+
<sup>Released on **2025-11-25**</sup>
|
|
910
|
+
|
|
911
|
+
#### 🐛 Bug Fixes
|
|
912
|
+
|
|
913
|
+
- **misc**: Fixed the topic link dropdown error.
|
|
914
|
+
|
|
915
|
+
<br/>
|
|
916
|
+
|
|
917
|
+
<details>
|
|
918
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
919
|
+
|
|
920
|
+
#### What's fixed
|
|
921
|
+
|
|
922
|
+
- **misc**: Fixed the topic link dropdown error, closes [#10408](https://github.com/lobehub/lobe-chat/issues/10408) ([864e3d5](https://github.com/lobehub/lobe-chat/commit/864e3d5))
|
|
923
|
+
|
|
924
|
+
</details>
|
|
925
|
+
|
|
926
|
+
<div align="right">
|
|
927
|
+
|
|
928
|
+
[](#readme-top)
|
|
929
|
+
|
|
930
|
+
</div>
|
|
931
|
+
|
|
932
|
+
## [Version 2.0.0-next.113](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.112...v2.0.0-next.113)
|
|
933
|
+
|
|
934
|
+
<sup>Released on **2025-11-25**</sup>
|
|
935
|
+
|
|
936
|
+
#### 🐛 Bug Fixes
|
|
937
|
+
|
|
938
|
+
- **misc**: Fixed when desktop userId was change manytimes the aimodel not right.
|
|
939
|
+
|
|
940
|
+
<br/>
|
|
941
|
+
|
|
942
|
+
<details>
|
|
943
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
944
|
+
|
|
945
|
+
#### What's fixed
|
|
946
|
+
|
|
947
|
+
- **misc**: Fixed when desktop userId was change manytimes the aimodel not right, closes [#10389](https://github.com/lobehub/lobe-chat/issues/10389) ([3ed8153](https://github.com/lobehub/lobe-chat/commit/3ed8153))
|
|
948
|
+
|
|
949
|
+
</details>
|
|
950
|
+
|
|
951
|
+
<div align="right">
|
|
952
|
+
|
|
953
|
+
[](#readme-top)
|
|
954
|
+
|
|
955
|
+
</div>
|
|
956
|
+
|
|
957
|
+
## [Version 2.0.0-next.112](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.111...v2.0.0-next.112)
|
|
958
|
+
|
|
959
|
+
<sup>Released on **2025-11-24**</sup>
|
|
960
|
+
|
|
961
|
+
#### ♻ Code Refactoring
|
|
962
|
+
|
|
963
|
+
- **misc**: Optimize files schema definition.
|
|
964
|
+
|
|
965
|
+
#### 💄 Styles
|
|
966
|
+
|
|
967
|
+
- **misc**: Add Kimi K2 Thinking to Qwen Provider.
|
|
968
|
+
|
|
969
|
+
<br/>
|
|
970
|
+
|
|
971
|
+
<details>
|
|
972
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
973
|
+
|
|
974
|
+
#### Code refactoring
|
|
975
|
+
|
|
976
|
+
- **misc**: Optimize files schema definition, closes [#10403](https://github.com/lobehub/lobe-chat/issues/10403) ([cf28c87](https://github.com/lobehub/lobe-chat/commit/cf28c87))
|
|
977
|
+
|
|
978
|
+
#### Styles
|
|
979
|
+
|
|
980
|
+
- **misc**: Add Kimi K2 Thinking to Qwen Provider, closes [#10287](https://github.com/lobehub/lobe-chat/issues/10287) ([bd2e838](https://github.com/lobehub/lobe-chat/commit/bd2e838))
|
|
981
|
+
|
|
982
|
+
</details>
|
|
983
|
+
|
|
984
|
+
<div align="right">
|
|
985
|
+
|
|
986
|
+
[](#readme-top)
|
|
987
|
+
|
|
988
|
+
</div>
|
|
989
|
+
|
|
990
|
+
## [Version 2.0.0-next.111](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.110...v2.0.0-next.111)
|
|
991
|
+
|
|
992
|
+
<sup>Released on **2025-11-24**</sup>
|
|
993
|
+
|
|
994
|
+
#### 🐛 Bug Fixes
|
|
995
|
+
|
|
996
|
+
- **misc**: Fix db migration snapshot not align with db schema, Separate agent file injection from knowledge base RAG search.
|
|
997
|
+
|
|
998
|
+
<br/>
|
|
999
|
+
|
|
1000
|
+
<details>
|
|
1001
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1002
|
+
|
|
1003
|
+
#### What's fixed
|
|
1004
|
+
|
|
1005
|
+
- **misc**: Fix db migration snapshot not align with db schema, closes [#10399](https://github.com/lobehub/lobe-chat/issues/10399) ([760105a](https://github.com/lobehub/lobe-chat/commit/760105a))
|
|
1006
|
+
- **misc**: Separate agent file injection from knowledge base RAG search, closes [#10398](https://github.com/lobehub/lobe-chat/issues/10398) ([e1c813a](https://github.com/lobehub/lobe-chat/commit/e1c813a))
|
|
1007
|
+
|
|
1008
|
+
</details>
|
|
1009
|
+
|
|
1010
|
+
<div align="right">
|
|
1011
|
+
|
|
1012
|
+
[](#readme-top)
|
|
1013
|
+
|
|
1014
|
+
</div>
|
|
1015
|
+
|
|
1016
|
+
## [Version 2.0.0-next.110](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.109...v2.0.0-next.110)
|
|
1017
|
+
|
|
1018
|
+
<sup>Released on **2025-11-24**</sup>
|
|
1019
|
+
|
|
1020
|
+
#### 💄 Styles
|
|
1021
|
+
|
|
1022
|
+
- **misc**: Add hyperlink to each topic & pinned agent, support ContextMenu on ChatItem.
|
|
1023
|
+
|
|
1024
|
+
<br/>
|
|
1025
|
+
|
|
1026
|
+
<details>
|
|
1027
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1028
|
+
|
|
1029
|
+
#### Styles
|
|
1030
|
+
|
|
1031
|
+
- **misc**: Add hyperlink to each topic & pinned agent, closes [#10367](https://github.com/lobehub/lobe-chat/issues/10367) ([63e4b3d](https://github.com/lobehub/lobe-chat/commit/63e4b3d))
|
|
1032
|
+
- **misc**: Support ContextMenu on ChatItem, closes [#9034](https://github.com/lobehub/lobe-chat/issues/9034) ([27c1154](https://github.com/lobehub/lobe-chat/commit/27c1154))
|
|
1033
|
+
|
|
1034
|
+
</details>
|
|
1035
|
+
|
|
1036
|
+
<div align="right">
|
|
1037
|
+
|
|
1038
|
+
[](#readme-top)
|
|
1039
|
+
|
|
1040
|
+
</div>
|
|
1041
|
+
|
|
1042
|
+
## [Version 2.0.0-next.109](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.108...v2.0.0-next.109)
|
|
1043
|
+
|
|
1044
|
+
<sup>Released on **2025-11-24**</sup>
|
|
1045
|
+
|
|
1046
|
+
#### 🐛 Bug Fixes
|
|
1047
|
+
|
|
1048
|
+
- **misc**: Fixed the knowledge files cant open error.
|
|
1049
|
+
|
|
1050
|
+
#### 💄 Styles
|
|
1051
|
+
|
|
1052
|
+
- **misc**: Update i18n.
|
|
1053
|
+
|
|
1054
|
+
<br/>
|
|
1055
|
+
|
|
1056
|
+
<details>
|
|
1057
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1058
|
+
|
|
1059
|
+
#### What's fixed
|
|
1060
|
+
|
|
1061
|
+
- **misc**: Fixed the knowledge files cant open error, closes [#10386](https://github.com/lobehub/lobe-chat/issues/10386) ([8104c77](https://github.com/lobehub/lobe-chat/commit/8104c77))
|
|
1062
|
+
|
|
1063
|
+
#### Styles
|
|
1064
|
+
|
|
1065
|
+
- **misc**: Update i18n, closes [#10368](https://github.com/lobehub/lobe-chat/issues/10368) ([ed707af](https://github.com/lobehub/lobe-chat/commit/ed707af))
|
|
1066
|
+
|
|
1067
|
+
</details>
|
|
1068
|
+
|
|
1069
|
+
<div align="right">
|
|
1070
|
+
|
|
1071
|
+
[](#readme-top)
|
|
1072
|
+
|
|
1073
|
+
</div>
|
|
1074
|
+
|
|
1075
|
+
## [Version 2.0.0-next.108](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.107...v2.0.0-next.108)
|
|
1076
|
+
|
|
1077
|
+
<sup>Released on **2025-11-24**</sup>
|
|
1078
|
+
|
|
1079
|
+
#### 🐛 Bug Fixes
|
|
1080
|
+
|
|
1081
|
+
- **misc**: Fixed the pinned session not work.
|
|
1082
|
+
|
|
1083
|
+
<br/>
|
|
1084
|
+
|
|
1085
|
+
<details>
|
|
1086
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1087
|
+
|
|
1088
|
+
#### What's fixed
|
|
1089
|
+
|
|
1090
|
+
- **misc**: Fixed the pinned session not work, closes [#10323](https://github.com/lobehub/lobe-chat/issues/10323) ([224f999](https://github.com/lobehub/lobe-chat/commit/224f999))
|
|
1091
|
+
|
|
1092
|
+
</details>
|
|
1093
|
+
|
|
1094
|
+
<div align="right">
|
|
1095
|
+
|
|
1096
|
+
[](#readme-top)
|
|
1097
|
+
|
|
1098
|
+
</div>
|
|
1099
|
+
|
|
1100
|
+
## [Version 2.0.0-next.107](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.106...v2.0.0-next.107)
|
|
1101
|
+
|
|
1102
|
+
<sup>Released on **2025-11-23**</sup>
|
|
1103
|
+
|
|
1104
|
+
#### 💄 Styles
|
|
1105
|
+
|
|
1106
|
+
- **misc**: Optimize nana banana pro error message.
|
|
1107
|
+
|
|
1108
|
+
<br/>
|
|
1109
|
+
|
|
1110
|
+
<details>
|
|
1111
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1112
|
+
|
|
1113
|
+
#### Styles
|
|
1114
|
+
|
|
1115
|
+
- **misc**: Optimize nana banana pro error message, closes [#10378](https://github.com/lobehub/lobe-chat/issues/10378) ([cb34757](https://github.com/lobehub/lobe-chat/commit/cb34757))
|
|
1116
|
+
|
|
1117
|
+
</details>
|
|
1118
|
+
|
|
1119
|
+
<div align="right">
|
|
1120
|
+
|
|
1121
|
+
[](#readme-top)
|
|
1122
|
+
|
|
1123
|
+
</div>
|
|
1124
|
+
|
|
1125
|
+
## [Version 2.0.0-next.106](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.105...v2.0.0-next.106)
|
|
1126
|
+
|
|
1127
|
+
<sup>Released on **2025-11-23**</sup>
|
|
1128
|
+
|
|
1129
|
+
#### ✨ Features
|
|
1130
|
+
|
|
1131
|
+
- **misc**: Add nano-banana-pro model support and optimization.
|
|
1132
|
+
|
|
1133
|
+
<br/>
|
|
1134
|
+
|
|
1135
|
+
<details>
|
|
1136
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1137
|
+
|
|
1138
|
+
#### What's improved
|
|
1139
|
+
|
|
1140
|
+
- **misc**: Add nano-banana-pro model support and optimization, closes [#10376](https://github.com/lobehub/lobe-chat/issues/10376) ([5349bdc](https://github.com/lobehub/lobe-chat/commit/5349bdc))
|
|
1141
|
+
|
|
1142
|
+
</details>
|
|
1143
|
+
|
|
1144
|
+
<div align="right">
|
|
1145
|
+
|
|
1146
|
+
[](#readme-top)
|
|
1147
|
+
|
|
1148
|
+
</div>
|
|
1149
|
+
|
|
1150
|
+
## [Version 2.0.0-next.105](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.104...v2.0.0-next.105)
|
|
1151
|
+
|
|
1152
|
+
<sup>Released on **2025-11-23**</sup>
|
|
1153
|
+
|
|
1154
|
+
#### 🐛 Bug Fixes
|
|
1155
|
+
|
|
1156
|
+
- **operation**: Isolate loading state to current active topic.
|
|
1157
|
+
|
|
1158
|
+
<br/>
|
|
1159
|
+
|
|
1160
|
+
<details>
|
|
1161
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1162
|
+
|
|
1163
|
+
#### What's fixed
|
|
1164
|
+
|
|
1165
|
+
- **operation**: Isolate loading state to current active topic, closes [#10360](https://github.com/lobehub/lobe-chat/issues/10360) ([c568369](https://github.com/lobehub/lobe-chat/commit/c568369))
|
|
1166
|
+
|
|
1167
|
+
</details>
|
|
1168
|
+
|
|
1169
|
+
<div align="right">
|
|
1170
|
+
|
|
1171
|
+
[](#readme-top)
|
|
1172
|
+
|
|
1173
|
+
</div>
|
|
1174
|
+
|
|
1175
|
+
## [Version 2.0.0-next.104](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.103...v2.0.0-next.104)
|
|
1176
|
+
|
|
1177
|
+
<sup>Released on **2025-11-22**</sup>
|
|
1178
|
+
|
|
1179
|
+
#### 💄 Styles
|
|
1180
|
+
|
|
1181
|
+
- **misc**: Update i18n.
|
|
1182
|
+
|
|
1183
|
+
<br/>
|
|
1184
|
+
|
|
1185
|
+
<details>
|
|
1186
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1187
|
+
|
|
1188
|
+
#### Styles
|
|
1189
|
+
|
|
1190
|
+
- **misc**: Update i18n, closes [#10349](https://github.com/lobehub/lobe-chat/issues/10349) ([3482d38](https://github.com/lobehub/lobe-chat/commit/3482d38))
|
|
1191
|
+
|
|
1192
|
+
</details>
|
|
1193
|
+
|
|
1194
|
+
<div align="right">
|
|
1195
|
+
|
|
1196
|
+
[](#readme-top)
|
|
1197
|
+
|
|
1198
|
+
</div>
|
|
1199
|
+
|
|
1200
|
+
## [Version 2.0.0-next.103](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.102...v2.0.0-next.103)
|
|
1201
|
+
|
|
1202
|
+
<sup>Released on **2025-11-22**</sup>
|
|
1203
|
+
|
|
1204
|
+
#### 🐛 Bug Fixes
|
|
1205
|
+
|
|
1206
|
+
- **misc**: Hide ai image config item in settings category.
|
|
1207
|
+
|
|
1208
|
+
<br/>
|
|
1209
|
+
|
|
1210
|
+
<details>
|
|
1211
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1212
|
+
|
|
1213
|
+
#### What's fixed
|
|
1214
|
+
|
|
1215
|
+
- **misc**: Hide ai image config item in settings category, closes [#10066](https://github.com/lobehub/lobe-chat/issues/10066) ([90354eb](https://github.com/lobehub/lobe-chat/commit/90354eb))
|
|
1216
|
+
|
|
1217
|
+
</details>
|
|
1218
|
+
|
|
1219
|
+
<div align="right">
|
|
1220
|
+
|
|
1221
|
+
[](#readme-top)
|
|
1222
|
+
|
|
1223
|
+
</div>
|
|
1224
|
+
|
|
1225
|
+
## [Version 2.0.0-next.102](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.101...v2.0.0-next.102)
|
|
1226
|
+
|
|
1227
|
+
<sup>Released on **2025-11-22**</sup>
|
|
1228
|
+
|
|
1229
|
+
#### ✨ Features
|
|
1230
|
+
|
|
1231
|
+
- **misc**: Add new provider ZenMux & Gemini 3 Pro Image Preview.
|
|
1232
|
+
|
|
1233
|
+
<br/>
|
|
1234
|
+
|
|
1235
|
+
<details>
|
|
1236
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1237
|
+
|
|
1238
|
+
#### What's improved
|
|
1239
|
+
|
|
1240
|
+
- **misc**: Add new provider ZenMux & Gemini 3 Pro Image Preview, closes [#10310](https://github.com/lobehub/lobe-chat/issues/10310) ([f2291e4](https://github.com/lobehub/lobe-chat/commit/f2291e4))
|
|
1241
|
+
|
|
1242
|
+
</details>
|
|
1243
|
+
|
|
1244
|
+
<div align="right">
|
|
1245
|
+
|
|
1246
|
+
[](#readme-top)
|
|
1247
|
+
|
|
1248
|
+
</div>
|
|
1249
|
+
|
|
1250
|
+
## [Version 2.0.0-next.101](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.100...v2.0.0-next.101)
|
|
1251
|
+
|
|
1252
|
+
<sup>Released on **2025-11-22**</sup>
|
|
1253
|
+
|
|
1254
|
+
#### ✨ Features
|
|
1255
|
+
|
|
1256
|
+
- **misc**: Support bedrok prompt cache and usage compute.
|
|
1257
|
+
|
|
1258
|
+
<br/>
|
|
1259
|
+
|
|
1260
|
+
<details>
|
|
1261
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1262
|
+
|
|
1263
|
+
#### What's improved
|
|
1264
|
+
|
|
1265
|
+
- **misc**: Support bedrok prompt cache and usage compute, closes [#10337](https://github.com/lobehub/lobe-chat/issues/10337) ([beb9471](https://github.com/lobehub/lobe-chat/commit/beb9471))
|
|
1266
|
+
|
|
1267
|
+
</details>
|
|
1268
|
+
|
|
1269
|
+
<div align="right">
|
|
1270
|
+
|
|
1271
|
+
[](#readme-top)
|
|
1272
|
+
|
|
1273
|
+
</div>
|
|
1274
|
+
|
|
1275
|
+
## [Version 2.0.0-next.100](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.99...v2.0.0-next.100)
|
|
1276
|
+
|
|
1277
|
+
<sup>Released on **2025-11-21**</sup>
|
|
1278
|
+
|
|
1279
|
+
#### 🐛 Bug Fixes
|
|
1280
|
+
|
|
1281
|
+
- **misc**: Gemini 3 Pro does not display thought summaries.
|
|
1282
|
+
|
|
1283
|
+
<br/>
|
|
1284
|
+
|
|
1285
|
+
<details>
|
|
1286
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1287
|
+
|
|
1288
|
+
#### What's fixed
|
|
1289
|
+
|
|
1290
|
+
- **misc**: Gemini 3 Pro does not display thought summaries, closes [#10345](https://github.com/lobehub/lobe-chat/issues/10345) ([89e296a](https://github.com/lobehub/lobe-chat/commit/89e296a))
|
|
1291
|
+
|
|
1292
|
+
</details>
|
|
1293
|
+
|
|
1294
|
+
<div align="right">
|
|
1295
|
+
|
|
1296
|
+
[](#readme-top)
|
|
1297
|
+
|
|
1298
|
+
</div>
|
|
1299
|
+
|
|
1300
|
+
## [Version 2.0.0-next.99](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.98...v2.0.0-next.99)
|
|
1301
|
+
|
|
1302
|
+
<sup>Released on **2025-11-21**</sup>
|
|
1303
|
+
|
|
1304
|
+
#### ✨ Features
|
|
1305
|
+
|
|
1306
|
+
- **misc**: Refactor to use kb search tool.
|
|
1307
|
+
|
|
1308
|
+
<br/>
|
|
1309
|
+
|
|
1310
|
+
<details>
|
|
1311
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1312
|
+
|
|
1313
|
+
#### What's improved
|
|
1314
|
+
|
|
1315
|
+
- **misc**: Refactor to use kb search tool, closes [#10340](https://github.com/lobehub/lobe-chat/issues/10340) ([291ff3c](https://github.com/lobehub/lobe-chat/commit/291ff3c))
|
|
1316
|
+
|
|
1317
|
+
</details>
|
|
1318
|
+
|
|
1319
|
+
<div align="right">
|
|
1320
|
+
|
|
1321
|
+
[](#readme-top)
|
|
1322
|
+
|
|
1323
|
+
</div>
|
|
1324
|
+
|
|
1325
|
+
## [Version 2.0.0-next.98](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.97...v2.0.0-next.98)
|
|
1326
|
+
|
|
1327
|
+
<sup>Released on **2025-11-21**</sup>
|
|
1328
|
+
|
|
1329
|
+
#### 🐛 Bug Fixes
|
|
1330
|
+
|
|
1331
|
+
- **misc**: Fixed changelog pages and open again.
|
|
1332
|
+
|
|
1333
|
+
#### 💄 Styles
|
|
1334
|
+
|
|
1335
|
+
- **misc**: Fix some translations.
|
|
1336
|
+
|
|
1337
|
+
<br/>
|
|
1338
|
+
|
|
1339
|
+
<details>
|
|
1340
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1341
|
+
|
|
1342
|
+
#### What's fixed
|
|
1343
|
+
|
|
1344
|
+
- **misc**: Fixed changelog pages and open again, closes [#10285](https://github.com/lobehub/lobe-chat/issues/10285) ([871d141](https://github.com/lobehub/lobe-chat/commit/871d141))
|
|
1345
|
+
|
|
1346
|
+
#### Styles
|
|
1347
|
+
|
|
1348
|
+
- **misc**: Fix some translations, closes [#10343](https://github.com/lobehub/lobe-chat/issues/10343) ([ed193e0](https://github.com/lobehub/lobe-chat/commit/ed193e0))
|
|
1349
|
+
|
|
1350
|
+
</details>
|
|
1351
|
+
|
|
1352
|
+
<div align="right">
|
|
1353
|
+
|
|
1354
|
+
[](#readme-top)
|
|
1355
|
+
|
|
1356
|
+
</div>
|
|
1357
|
+
|
|
1358
|
+
## [Version 2.0.0-next.97](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.96...v2.0.0-next.97)
|
|
1359
|
+
|
|
1360
|
+
<sup>Released on **2025-11-21**</sup>
|
|
1361
|
+
|
|
1362
|
+
#### ♻ Code Refactoring
|
|
1363
|
+
|
|
1364
|
+
- **misc**: Refactor Conversation to ChatList.
|
|
1365
|
+
|
|
1366
|
+
#### 💄 Styles
|
|
1367
|
+
|
|
1368
|
+
- **misc**: Update i18n.
|
|
1369
|
+
|
|
1370
|
+
<br/>
|
|
1371
|
+
|
|
1372
|
+
<details>
|
|
1373
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1374
|
+
|
|
1375
|
+
#### Code refactoring
|
|
1376
|
+
|
|
1377
|
+
- **misc**: Refactor Conversation to ChatList, closes [#10330](https://github.com/lobehub/lobe-chat/issues/10330) ([bca70e2](https://github.com/lobehub/lobe-chat/commit/bca70e2))
|
|
1378
|
+
|
|
1379
|
+
#### Styles
|
|
1380
|
+
|
|
1381
|
+
- **misc**: Update i18n, closes [#10338](https://github.com/lobehub/lobe-chat/issues/10338) ([9c8cf81](https://github.com/lobehub/lobe-chat/commit/9c8cf81))
|
|
1382
|
+
|
|
1383
|
+
</details>
|
|
1384
|
+
|
|
1385
|
+
<div align="right">
|
|
1386
|
+
|
|
1387
|
+
[](#readme-top)
|
|
1388
|
+
|
|
1389
|
+
</div>
|
|
1390
|
+
|
|
1391
|
+
## [Version 2.0.0-next.96](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.95...v2.0.0-next.96)
|
|
1392
|
+
|
|
1393
|
+
<sup>Released on **2025-11-20**</sup>
|
|
1394
|
+
|
|
1395
|
+
#### ✨ Features
|
|
1396
|
+
|
|
1397
|
+
- **misc**: Support Command Menu (CMD + J).
|
|
1398
|
+
|
|
1399
|
+
<br/>
|
|
1400
|
+
|
|
1401
|
+
<details>
|
|
1402
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1403
|
+
|
|
1404
|
+
#### What's improved
|
|
1405
|
+
|
|
1406
|
+
- **misc**: Support Command Menu (CMD + J), closes [#10271](https://github.com/lobehub/lobe-chat/issues/10271) ([a9aed0b](https://github.com/lobehub/lobe-chat/commit/a9aed0b))
|
|
1407
|
+
|
|
1408
|
+
</details>
|
|
1409
|
+
|
|
1410
|
+
<div align="right">
|
|
1411
|
+
|
|
1412
|
+
[](#readme-top)
|
|
1413
|
+
|
|
1414
|
+
</div>
|
|
1415
|
+
|
|
1416
|
+
## [Version 2.0.0-next.95](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.94...v2.0.0-next.95)
|
|
1417
|
+
|
|
1418
|
+
<sup>Released on **2025-11-20**</sup>
|
|
1419
|
+
|
|
1420
|
+
#### ✨ Features
|
|
1421
|
+
|
|
1422
|
+
- **misc**: Add Security Blacklist for agent runtime.
|
|
1423
|
+
|
|
1424
|
+
<br/>
|
|
1425
|
+
|
|
1426
|
+
<details>
|
|
1427
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1428
|
+
|
|
1429
|
+
#### What's improved
|
|
1430
|
+
|
|
1431
|
+
- **misc**: Add Security Blacklist for agent runtime, closes [#10325](https://github.com/lobehub/lobe-chat/issues/10325) ([deab4d0](https://github.com/lobehub/lobe-chat/commit/deab4d0))
|
|
1432
|
+
|
|
1433
|
+
</details>
|
|
1434
|
+
|
|
1435
|
+
<div align="right">
|
|
1436
|
+
|
|
1437
|
+
[](#readme-top)
|
|
1438
|
+
|
|
1439
|
+
</div>
|
|
1440
|
+
|
|
1441
|
+
## [Version 2.0.0-next.94](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.93...v2.0.0-next.94)
|
|
1442
|
+
|
|
1443
|
+
<sup>Released on **2025-11-20**</sup>
|
|
1444
|
+
|
|
1445
|
+
#### 🐛 Bug Fixes
|
|
1446
|
+
|
|
1447
|
+
- **misc**: Provider settings button unable to redirect.
|
|
1448
|
+
|
|
1449
|
+
<br/>
|
|
1450
|
+
|
|
1451
|
+
<details>
|
|
1452
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1453
|
+
|
|
1454
|
+
#### What's fixed
|
|
1455
|
+
|
|
1456
|
+
- **misc**: Provider settings button unable to redirect, closes [#10319](https://github.com/lobehub/lobe-chat/issues/10319) ([e025fec](https://github.com/lobehub/lobe-chat/commit/e025fec))
|
|
1457
|
+
|
|
1458
|
+
</details>
|
|
1459
|
+
|
|
1460
|
+
<div align="right">
|
|
1461
|
+
|
|
1462
|
+
[](#readme-top)
|
|
1463
|
+
|
|
1464
|
+
</div>
|
|
1465
|
+
|
|
1466
|
+
## [Version 2.0.0-next.93](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.92...v2.0.0-next.93)
|
|
1467
|
+
|
|
1468
|
+
<sup>Released on **2025-11-20**</sup>
|
|
1469
|
+
|
|
1470
|
+
#### 💄 Styles
|
|
1471
|
+
|
|
1472
|
+
- **misc**: Update i18n.
|
|
1473
|
+
|
|
1474
|
+
<br/>
|
|
1475
|
+
|
|
1476
|
+
<details>
|
|
1477
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1478
|
+
|
|
1479
|
+
#### Styles
|
|
1480
|
+
|
|
1481
|
+
- **misc**: Update i18n, closes [#10317](https://github.com/lobehub/lobe-chat/issues/10317) ([8fb9890](https://github.com/lobehub/lobe-chat/commit/8fb9890))
|
|
1482
|
+
|
|
1483
|
+
</details>
|
|
1484
|
+
|
|
1485
|
+
<div align="right">
|
|
1486
|
+
|
|
1487
|
+
[](#readme-top)
|
|
1488
|
+
|
|
1489
|
+
</div>
|
|
1490
|
+
|
|
1491
|
+
## [Version 2.0.0-next.92](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.91...v2.0.0-next.92)
|
|
1492
|
+
|
|
1493
|
+
<sup>Released on **2025-11-19**</sup>
|
|
1494
|
+
|
|
1495
|
+
#### 💄 Styles
|
|
1496
|
+
|
|
1497
|
+
- **misc**: Remove debug console logs and add loading state.
|
|
1498
|
+
|
|
1499
|
+
<br/>
|
|
1500
|
+
|
|
1501
|
+
<details>
|
|
1502
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1503
|
+
|
|
1504
|
+
#### Styles
|
|
1505
|
+
|
|
1506
|
+
- **misc**: Remove debug console logs and add loading state, closes [#10314](https://github.com/lobehub/lobe-chat/issues/10314) ([094cdff](https://github.com/lobehub/lobe-chat/commit/094cdff))
|
|
1507
|
+
|
|
1508
|
+
</details>
|
|
1509
|
+
|
|
1510
|
+
<div align="right">
|
|
1511
|
+
|
|
1512
|
+
[](#readme-top)
|
|
1513
|
+
|
|
1514
|
+
</div>
|
|
1515
|
+
|
|
1516
|
+
## [Version 2.0.0-next.91](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.90...v2.0.0-next.91)
|
|
1517
|
+
|
|
1518
|
+
<sup>Released on **2025-11-19**</sup>
|
|
1519
|
+
|
|
1520
|
+
#### 🐛 Bug Fixes
|
|
1521
|
+
|
|
1522
|
+
- **misc**: Fixed the hydrated false problem.
|
|
1523
|
+
|
|
1524
|
+
<br/>
|
|
1525
|
+
|
|
1526
|
+
<details>
|
|
1527
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1528
|
+
|
|
1529
|
+
#### What's fixed
|
|
1530
|
+
|
|
1531
|
+
- **misc**: Fixed the hydrated false problem, closes [#10308](https://github.com/lobehub/lobe-chat/issues/10308) ([340aa2a](https://github.com/lobehub/lobe-chat/commit/340aa2a))
|
|
1532
|
+
|
|
1533
|
+
</details>
|
|
1534
|
+
|
|
1535
|
+
<div align="right">
|
|
1536
|
+
|
|
1537
|
+
[](#readme-top)
|
|
1538
|
+
|
|
1539
|
+
</div>
|
|
1540
|
+
|
|
1541
|
+
## [Version 2.0.0-next.90](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.89...v2.0.0-next.90)
|
|
1542
|
+
|
|
1543
|
+
<sup>Released on **2025-11-19**</sup>
|
|
1544
|
+
|
|
1545
|
+
#### 💄 Styles
|
|
1546
|
+
|
|
1547
|
+
- **misc**: Extract StatusIndicator component and improve tools display.
|
|
1548
|
+
|
|
1549
|
+
<br/>
|
|
1550
|
+
|
|
1551
|
+
<details>
|
|
1552
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1553
|
+
|
|
1554
|
+
#### Styles
|
|
1555
|
+
|
|
1556
|
+
- **misc**: Extract StatusIndicator component and improve tools display, closes [#10311](https://github.com/lobehub/lobe-chat/issues/10311) ([b5ae53a](https://github.com/lobehub/lobe-chat/commit/b5ae53a))
|
|
1557
|
+
|
|
1558
|
+
</details>
|
|
1559
|
+
|
|
1560
|
+
<div align="right">
|
|
1561
|
+
|
|
1562
|
+
[](#readme-top)
|
|
1563
|
+
|
|
1564
|
+
</div>
|
|
1565
|
+
|
|
1566
|
+
## [Version 2.0.0-next.89](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.88...v2.0.0-next.89)
|
|
1567
|
+
|
|
1568
|
+
<sup>Released on **2025-11-19**</sup>
|
|
1569
|
+
|
|
1570
|
+
#### ✨ Features
|
|
1571
|
+
|
|
1572
|
+
- **misc**: Support gemini 3.0 tools calling.
|
|
1573
|
+
|
|
1574
|
+
<br/>
|
|
1575
|
+
|
|
1576
|
+
<details>
|
|
1577
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1578
|
+
|
|
1579
|
+
#### What's improved
|
|
1580
|
+
|
|
1581
|
+
- **misc**: Support gemini 3.0 tools calling, closes [#10301](https://github.com/lobehub/lobe-chat/issues/10301) ([7114fc1](https://github.com/lobehub/lobe-chat/commit/7114fc1))
|
|
1582
|
+
|
|
1583
|
+
</details>
|
|
1584
|
+
|
|
1585
|
+
<div align="right">
|
|
1586
|
+
|
|
1587
|
+
[](#readme-top)
|
|
1588
|
+
|
|
1589
|
+
</div>
|
|
1590
|
+
|
|
1591
|
+
## [Version 2.0.0-next.88](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.87...v2.0.0-next.88)
|
|
1592
|
+
|
|
1593
|
+
<sup>Released on **2025-11-19**</sup>
|
|
1594
|
+
|
|
1595
|
+
#### 💄 Styles
|
|
1596
|
+
|
|
1597
|
+
- **misc**: Fully support Gemini 3.0 model.
|
|
1598
|
+
|
|
1599
|
+
<br/>
|
|
1600
|
+
|
|
1601
|
+
<details>
|
|
1602
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1603
|
+
|
|
1604
|
+
#### Styles
|
|
1605
|
+
|
|
1606
|
+
- **misc**: Fully support Gemini 3.0 model, closes [#10292](https://github.com/lobehub/lobe-chat/issues/10292) ([6545ef8](https://github.com/lobehub/lobe-chat/commit/6545ef8))
|
|
1607
|
+
|
|
1608
|
+
</details>
|
|
1609
|
+
|
|
1610
|
+
<div align="right">
|
|
1611
|
+
|
|
1612
|
+
[](#readme-top)
|
|
1613
|
+
|
|
1614
|
+
</div>
|
|
1615
|
+
|
|
1616
|
+
## [Version 2.0.0-next.87](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.86...v2.0.0-next.87)
|
|
1617
|
+
|
|
1618
|
+
<sup>Released on **2025-11-19**</sup>
|
|
1619
|
+
|
|
1620
|
+
#### ♻ Code Refactoring
|
|
1621
|
+
|
|
1622
|
+
- **misc**: Refactor chat selectors.
|
|
1623
|
+
|
|
1624
|
+
<br/>
|
|
1625
|
+
|
|
1626
|
+
<details>
|
|
1627
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1628
|
+
|
|
1629
|
+
#### Code refactoring
|
|
1630
|
+
|
|
1631
|
+
- **misc**: Refactor chat selectors, closes [#10274](https://github.com/lobehub/lobe-chat/issues/10274) ([0a056f3](https://github.com/lobehub/lobe-chat/commit/0a056f3))
|
|
1632
|
+
|
|
1633
|
+
</details>
|
|
1634
|
+
|
|
1635
|
+
<div align="right">
|
|
1636
|
+
|
|
1637
|
+
[](#readme-top)
|
|
1638
|
+
|
|
1639
|
+
</div>
|
|
1640
|
+
|
|
1641
|
+
## [Version 2.0.0-next.86](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.85...v2.0.0-next.86)
|
|
1642
|
+
|
|
1643
|
+
<sup>Released on **2025-11-19**</sup>
|
|
1644
|
+
|
|
1645
|
+
#### ✨ Features
|
|
1646
|
+
|
|
1647
|
+
- **misc**: Support user abort in the agent runtime.
|
|
1648
|
+
|
|
1649
|
+
<br/>
|
|
1650
|
+
|
|
1651
|
+
<details>
|
|
1652
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1653
|
+
|
|
1654
|
+
#### What's improved
|
|
1655
|
+
|
|
1656
|
+
- **misc**: Support user abort in the agent runtime, closes [#10289](https://github.com/lobehub/lobe-chat/issues/10289) ([0925069](https://github.com/lobehub/lobe-chat/commit/0925069))
|
|
1657
|
+
|
|
1658
|
+
</details>
|
|
1659
|
+
|
|
1660
|
+
<div align="right">
|
|
1661
|
+
|
|
1662
|
+
[](#readme-top)
|
|
1663
|
+
|
|
1664
|
+
</div>
|
|
1665
|
+
|
|
1666
|
+
## [Version 2.0.0-next.85](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.84...v2.0.0-next.85)
|
|
1667
|
+
|
|
1668
|
+
<sup>Released on **2025-11-19**</sup>
|
|
1669
|
+
|
|
1670
|
+
#### 🐛 Bug Fixes
|
|
1671
|
+
|
|
1672
|
+
- **misc**: Slove discover pagination router.
|
|
1673
|
+
|
|
1674
|
+
<br/>
|
|
1675
|
+
|
|
1676
|
+
<details>
|
|
1677
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1678
|
+
|
|
1679
|
+
#### What's fixed
|
|
1680
|
+
|
|
1681
|
+
- **misc**: Slove discover pagination router, closes [#10294](https://github.com/lobehub/lobe-chat/issues/10294) ([fcda0b5](https://github.com/lobehub/lobe-chat/commit/fcda0b5))
|
|
1682
|
+
|
|
1683
|
+
</details>
|
|
1684
|
+
|
|
1685
|
+
<div align="right">
|
|
1686
|
+
|
|
1687
|
+
[](#readme-top)
|
|
1688
|
+
|
|
1689
|
+
</div>
|
|
1690
|
+
|
|
1691
|
+
## [Version 2.0.0-next.84](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.83...v2.0.0-next.84)
|
|
1692
|
+
|
|
1693
|
+
<sup>Released on **2025-11-19**</sup>
|
|
1694
|
+
|
|
1695
|
+
#### 💄 Styles
|
|
1696
|
+
|
|
1697
|
+
- **misc**: Add Gemini 3.0 Pro Preview to Google Provider.
|
|
1698
|
+
|
|
1699
|
+
<br/>
|
|
1700
|
+
|
|
1701
|
+
<details>
|
|
1702
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1703
|
+
|
|
1704
|
+
#### Styles
|
|
1705
|
+
|
|
1706
|
+
- **misc**: Add Gemini 3.0 Pro Preview to Google Provider, closes [#10290](https://github.com/lobehub/lobe-chat/issues/10290) ([25c4358](https://github.com/lobehub/lobe-chat/commit/25c4358))
|
|
1707
|
+
|
|
1708
|
+
</details>
|
|
1709
|
+
|
|
1710
|
+
<div align="right">
|
|
1711
|
+
|
|
1712
|
+
[](#readme-top)
|
|
1713
|
+
|
|
1714
|
+
</div>
|
|
1715
|
+
|
|
1716
|
+
## [Version 2.0.0-next.83](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.82...v2.0.0-next.83)
|
|
1717
|
+
|
|
1718
|
+
<sup>Released on **2025-11-19**</sup>
|
|
1719
|
+
|
|
1720
|
+
#### ✨ Features
|
|
1721
|
+
|
|
1722
|
+
- **misc**: New API support switch Responses API mode.
|
|
1723
|
+
|
|
1724
|
+
#### 💄 Styles
|
|
1725
|
+
|
|
1726
|
+
- **misc**: Update i18n.
|
|
1727
|
+
|
|
1728
|
+
<br/>
|
|
1729
|
+
|
|
1730
|
+
<details>
|
|
1731
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1732
|
+
|
|
1733
|
+
#### What's improved
|
|
1734
|
+
|
|
1735
|
+
- **misc**: New API support switch Responses API mode, closes [#9776](https://github.com/lobehub/lobe-chat/issues/9776) [#9916](https://github.com/lobehub/lobe-chat/issues/9916) [#9997](https://github.com/lobehub/lobe-chat/issues/9997) [#9916](https://github.com/lobehub/lobe-chat/issues/9916) ([d0ee3df](https://github.com/lobehub/lobe-chat/commit/d0ee3df))
|
|
1736
|
+
|
|
1737
|
+
#### Styles
|
|
1738
|
+
|
|
1739
|
+
- **misc**: Update i18n, closes [#10291](https://github.com/lobehub/lobe-chat/issues/10291) ([1c9f0d9](https://github.com/lobehub/lobe-chat/commit/1c9f0d9))
|
|
1740
|
+
|
|
1741
|
+
</details>
|
|
1742
|
+
|
|
1743
|
+
<div align="right">
|
|
1744
|
+
|
|
1745
|
+
[](#readme-top)
|
|
1746
|
+
|
|
1747
|
+
</div>
|
|
1748
|
+
|
|
1749
|
+
## [Version 2.0.0-next.82](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.81...v2.0.0-next.82)
|
|
1750
|
+
|
|
1751
|
+
<sup>Released on **2025-11-18**</sup>
|
|
1752
|
+
|
|
1753
|
+
#### 🐛 Bug Fixes
|
|
1754
|
+
|
|
1755
|
+
- **misc**: Fix noisy error notification.
|
|
1756
|
+
|
|
1757
|
+
<br/>
|
|
1758
|
+
|
|
1759
|
+
<details>
|
|
1760
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1761
|
+
|
|
1762
|
+
#### What's fixed
|
|
1763
|
+
|
|
1764
|
+
- **misc**: Fix noisy error notification, closes [#10286](https://github.com/lobehub/lobe-chat/issues/10286) ([9ea680c](https://github.com/lobehub/lobe-chat/commit/9ea680c))
|
|
1765
|
+
|
|
1766
|
+
</details>
|
|
1767
|
+
|
|
1768
|
+
<div align="right">
|
|
1769
|
+
|
|
1770
|
+
[](#readme-top)
|
|
1771
|
+
|
|
1772
|
+
</div>
|
|
1773
|
+
|
|
1774
|
+
## [Version 2.0.0-next.81](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.80...v2.0.0-next.81)
|
|
1775
|
+
|
|
1776
|
+
<sup>Released on **2025-11-18**</sup>
|
|
1777
|
+
|
|
1778
|
+
#### 🐛 Bug Fixes
|
|
1779
|
+
|
|
1780
|
+
- **misc**: Slove when logout always show loading.
|
|
1781
|
+
|
|
1782
|
+
<br/>
|
|
1783
|
+
|
|
1784
|
+
<details>
|
|
1785
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1786
|
+
|
|
1787
|
+
#### What's fixed
|
|
1788
|
+
|
|
1789
|
+
- **misc**: Slove when logout always show loading, closes [#10284](https://github.com/lobehub/lobe-chat/issues/10284) ([d91fb73](https://github.com/lobehub/lobe-chat/commit/d91fb73))
|
|
1790
|
+
|
|
1791
|
+
</details>
|
|
1792
|
+
|
|
1793
|
+
<div align="right">
|
|
1794
|
+
|
|
1795
|
+
[](#readme-top)
|
|
1796
|
+
|
|
1797
|
+
</div>
|
|
1798
|
+
|
|
1799
|
+
## [Version 2.0.0-next.80](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.79...v2.0.0-next.80)
|
|
1800
|
+
|
|
1801
|
+
<sup>Released on **2025-11-18**</sup>
|
|
1802
|
+
|
|
1803
|
+
<br/>
|
|
1804
|
+
|
|
1805
|
+
<details>
|
|
1806
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1807
|
+
|
|
1808
|
+
</details>
|
|
1809
|
+
|
|
1810
|
+
<div align="right">
|
|
1811
|
+
|
|
1812
|
+
[](#readme-top)
|
|
1813
|
+
|
|
1814
|
+
</div>
|
|
1815
|
+
|
|
1816
|
+
## [Version 2.0.0-next.79](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.78...v2.0.0-next.79)
|
|
1817
|
+
|
|
1818
|
+
<sup>Released on **2025-11-18**</sup>
|
|
1819
|
+
|
|
1820
|
+
#### 🐛 Bug Fixes
|
|
1821
|
+
|
|
1822
|
+
- **misc**: Fixed the discover page categray sider link error.
|
|
1823
|
+
|
|
1824
|
+
<br/>
|
|
1825
|
+
|
|
1826
|
+
<details>
|
|
1827
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1828
|
+
|
|
1829
|
+
#### What's fixed
|
|
1830
|
+
|
|
1831
|
+
- **misc**: Fixed the discover page categray sider link error, closes [#10282](https://github.com/lobehub/lobe-chat/issues/10282) ([39e8819](https://github.com/lobehub/lobe-chat/commit/39e8819))
|
|
1832
|
+
|
|
1833
|
+
</details>
|
|
1834
|
+
|
|
1835
|
+
<div align="right">
|
|
1836
|
+
|
|
1837
|
+
[](#readme-top)
|
|
1838
|
+
|
|
1839
|
+
</div>
|
|
1840
|
+
|
|
1841
|
+
## [Version 2.0.0-next.78](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.77...v2.0.0-next.78)
|
|
1842
|
+
|
|
1843
|
+
<sup>Released on **2025-11-18**</sup>
|
|
1844
|
+
|
|
1845
|
+
<br/>
|
|
1846
|
+
|
|
1847
|
+
<details>
|
|
1848
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1849
|
+
|
|
1850
|
+
</details>
|
|
1851
|
+
|
|
1852
|
+
<div align="right">
|
|
1853
|
+
|
|
1854
|
+
[](#readme-top)
|
|
1855
|
+
|
|
1856
|
+
</div>
|
|
1857
|
+
|
|
1858
|
+
## [Version 2.0.0-next.77](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.76...v2.0.0-next.77)
|
|
1859
|
+
|
|
1860
|
+
<sup>Released on **2025-11-18**</sup>
|
|
1861
|
+
|
|
1862
|
+
#### ♻ Code Refactoring
|
|
1863
|
+
|
|
1864
|
+
- **misc**: Delete /settings/newapi pages in nextjs build.
|
|
1865
|
+
|
|
1866
|
+
<br/>
|
|
1867
|
+
|
|
1868
|
+
<details>
|
|
1869
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1870
|
+
|
|
1871
|
+
#### Code refactoring
|
|
1872
|
+
|
|
1873
|
+
- **misc**: Delete /settings/newapi pages in nextjs build, closes [#10278](https://github.com/lobehub/lobe-chat/issues/10278) ([9d06753](https://github.com/lobehub/lobe-chat/commit/9d06753))
|
|
1874
|
+
|
|
1875
|
+
</details>
|
|
1876
|
+
|
|
1877
|
+
<div align="right">
|
|
1878
|
+
|
|
1879
|
+
[](#readme-top)
|
|
1880
|
+
|
|
1881
|
+
</div>
|
|
1882
|
+
|
|
1883
|
+
## [Version 2.0.0-next.76](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.75...v2.0.0-next.76)
|
|
1884
|
+
|
|
1885
|
+
<sup>Released on **2025-11-18**</sup>
|
|
1886
|
+
|
|
1887
|
+
#### ✨ Features
|
|
1888
|
+
|
|
1889
|
+
- **misc**: Support Interleaved thinking in MiniMax.
|
|
1890
|
+
|
|
1891
|
+
<br/>
|
|
1892
|
+
|
|
1893
|
+
<details>
|
|
1894
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1895
|
+
|
|
1896
|
+
#### What's improved
|
|
1897
|
+
|
|
1898
|
+
- **misc**: Support Interleaved thinking in MiniMax, closes [#10255](https://github.com/lobehub/lobe-chat/issues/10255) ([13ca8e1](https://github.com/lobehub/lobe-chat/commit/13ca8e1))
|
|
1899
|
+
|
|
1900
|
+
</details>
|
|
1901
|
+
|
|
1902
|
+
<div align="right">
|
|
1903
|
+
|
|
1904
|
+
[](#readme-top)
|
|
1905
|
+
|
|
1906
|
+
</div>
|
|
1907
|
+
|
|
1908
|
+
## [Version 2.0.0-next.75](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.74...v2.0.0-next.75)
|
|
1909
|
+
|
|
1910
|
+
<sup>Released on **2025-11-18**</sup>
|
|
1911
|
+
|
|
1912
|
+
#### 💄 Styles
|
|
1913
|
+
|
|
1914
|
+
- **misc**: Update i18n.
|
|
1915
|
+
|
|
1916
|
+
<br/>
|
|
1917
|
+
|
|
1918
|
+
<details>
|
|
1919
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1920
|
+
|
|
1921
|
+
#### Styles
|
|
1922
|
+
|
|
1923
|
+
- **misc**: Update i18n, closes [#10277](https://github.com/lobehub/lobe-chat/issues/10277) ([7563b62](https://github.com/lobehub/lobe-chat/commit/7563b62))
|
|
1924
|
+
|
|
1925
|
+
</details>
|
|
1926
|
+
|
|
1927
|
+
<div align="right">
|
|
1928
|
+
|
|
1929
|
+
[](#readme-top)
|
|
1930
|
+
|
|
1931
|
+
</div>
|
|
1932
|
+
|
|
1933
|
+
## [Version 2.0.0-next.74](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.73...v2.0.0-next.74)
|
|
1934
|
+
|
|
1935
|
+
<sup>Released on **2025-11-17**</sup>
|
|
1936
|
+
|
|
1937
|
+
#### ✨ Features
|
|
1938
|
+
|
|
1939
|
+
- **misc**: Edit local file render & intervention.
|
|
1940
|
+
|
|
1941
|
+
<br/>
|
|
1942
|
+
|
|
1943
|
+
<details>
|
|
1944
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1945
|
+
|
|
1946
|
+
#### What's improved
|
|
1947
|
+
|
|
1948
|
+
- **misc**: Edit local file render & intervention, closes [#10269](https://github.com/lobehub/lobe-chat/issues/10269) ([3785a71](https://github.com/lobehub/lobe-chat/commit/3785a71))
|
|
1949
|
+
|
|
1950
|
+
</details>
|
|
1951
|
+
|
|
1952
|
+
<div align="right">
|
|
1953
|
+
|
|
1954
|
+
[](#readme-top)
|
|
1955
|
+
|
|
1956
|
+
</div>
|
|
1957
|
+
|
|
1958
|
+
## [Version 2.0.0-next.73](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.72...v2.0.0-next.73)
|
|
1959
|
+
|
|
1960
|
+
<sup>Released on **2025-11-17**</sup>
|
|
1961
|
+
|
|
1962
|
+
#### ✨ Features
|
|
1963
|
+
|
|
1964
|
+
- **misc**: Support parallel topic agent runtime.
|
|
1965
|
+
|
|
1966
|
+
<br/>
|
|
1967
|
+
|
|
1968
|
+
<details>
|
|
1969
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1970
|
+
|
|
1971
|
+
#### What's improved
|
|
1972
|
+
|
|
1973
|
+
- **misc**: Support parallel topic agent runtime, closes [#10273](https://github.com/lobehub/lobe-chat/issues/10273) ([02eba3c](https://github.com/lobehub/lobe-chat/commit/02eba3c))
|
|
1974
|
+
|
|
1975
|
+
</details>
|
|
1976
|
+
|
|
1977
|
+
<div align="right">
|
|
1978
|
+
|
|
1979
|
+
[](#readme-top)
|
|
1980
|
+
|
|
1981
|
+
</div>
|
|
1982
|
+
|
|
1983
|
+
## [Version 2.0.0-next.72](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.71...v2.0.0-next.72)
|
|
1984
|
+
|
|
1985
|
+
<sup>Released on **2025-11-17**</sup>
|
|
1986
|
+
|
|
1987
|
+
#### 💄 Styles
|
|
1988
|
+
|
|
1989
|
+
- **misc**: Add model information for the Qiniu provider.
|
|
1990
|
+
|
|
1991
|
+
<br/>
|
|
1992
|
+
|
|
1993
|
+
<details>
|
|
1994
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
1995
|
+
|
|
1996
|
+
#### Styles
|
|
1997
|
+
|
|
1998
|
+
- **misc**: Add model information for the Qiniu provider, closes [#10270](https://github.com/lobehub/lobe-chat/issues/10270) ([06af793](https://github.com/lobehub/lobe-chat/commit/06af793))
|
|
1999
|
+
|
|
2000
|
+
</details>
|
|
2001
|
+
|
|
2002
|
+
<div align="right">
|
|
2003
|
+
|
|
2004
|
+
[](#readme-top)
|
|
2005
|
+
|
|
2006
|
+
</div>
|
|
2007
|
+
|
|
2008
|
+
## [Version 2.0.0-next.71](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.70...v2.0.0-next.71)
|
|
2009
|
+
|
|
2010
|
+
<sup>Released on **2025-11-17**</sup>
|
|
2011
|
+
|
|
2012
|
+
#### 🐛 Bug Fixes
|
|
2013
|
+
|
|
2014
|
+
- **misc**: Fix desktop user panel.
|
|
2015
|
+
|
|
2016
|
+
<br/>
|
|
2017
|
+
|
|
2018
|
+
<details>
|
|
2019
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2020
|
+
|
|
2021
|
+
#### What's fixed
|
|
2022
|
+
|
|
2023
|
+
- **misc**: Fix desktop user panel, closes [#10272](https://github.com/lobehub/lobe-chat/issues/10272) ([6a374d2](https://github.com/lobehub/lobe-chat/commit/6a374d2))
|
|
2024
|
+
|
|
2025
|
+
</details>
|
|
2026
|
+
|
|
2027
|
+
<div align="right">
|
|
2028
|
+
|
|
2029
|
+
[](#readme-top)
|
|
2030
|
+
|
|
2031
|
+
</div>
|
|
2032
|
+
|
|
2033
|
+
## [Version 2.0.0-next.70](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.69...v2.0.0-next.70)
|
|
2034
|
+
|
|
2035
|
+
<sup>Released on **2025-11-17**</sup>
|
|
2036
|
+
|
|
2037
|
+
<br/>
|
|
2038
|
+
|
|
2039
|
+
<details>
|
|
2040
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2041
|
+
|
|
2042
|
+
</details>
|
|
2043
|
+
|
|
2044
|
+
<div align="right">
|
|
2045
|
+
|
|
2046
|
+
[](#readme-top)
|
|
2047
|
+
|
|
2048
|
+
</div>
|
|
2049
|
+
|
|
2050
|
+
## [Version 2.0.0-next.69](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.68...v2.0.0-next.69)
|
|
2051
|
+
|
|
2052
|
+
<sup>Released on **2025-11-17**</sup>
|
|
2053
|
+
|
|
2054
|
+
#### ♻ Code Refactoring
|
|
2055
|
+
|
|
2056
|
+
- **misc**: Remove `language_model_settings` and remove isDeprecatedEdition.
|
|
2057
|
+
|
|
2058
|
+
<br/>
|
|
2059
|
+
|
|
2060
|
+
<details>
|
|
2061
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2062
|
+
|
|
2063
|
+
#### Code refactoring
|
|
2064
|
+
|
|
2065
|
+
- **misc**: Remove `language_model_settings` and remove isDeprecatedEdition, closes [#10264](https://github.com/lobehub/lobe-chat/issues/10264) ([ae613c7](https://github.com/lobehub/lobe-chat/commit/ae613c7))
|
|
2066
|
+
|
|
2067
|
+
</details>
|
|
2068
|
+
|
|
2069
|
+
<div align="right">
|
|
2070
|
+
|
|
2071
|
+
[](#readme-top)
|
|
2072
|
+
|
|
2073
|
+
</div>
|
|
2074
|
+
|
|
2075
|
+
## [Version 2.0.0-next.68](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.67...v2.0.0-next.68)
|
|
2076
|
+
|
|
2077
|
+
<sup>Released on **2025-11-16**</sup>
|
|
2078
|
+
|
|
2079
|
+
#### 🐛 Bug Fixes
|
|
2080
|
+
|
|
2081
|
+
- **misc**: The tool to fail execution on ollama when a message contains b….
|
|
2082
|
+
|
|
2083
|
+
<br/>
|
|
2084
|
+
|
|
2085
|
+
<details>
|
|
2086
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2087
|
+
|
|
2088
|
+
#### What's fixed
|
|
2089
|
+
|
|
2090
|
+
- **misc**: The tool to fail execution on ollama when a message contains b…, closes [#10259](https://github.com/lobehub/lobe-chat/issues/10259) ([1ad8080](https://github.com/lobehub/lobe-chat/commit/1ad8080))
|
|
2091
|
+
|
|
2092
|
+
</details>
|
|
2093
|
+
|
|
2094
|
+
<div align="right">
|
|
2095
|
+
|
|
2096
|
+
[](#readme-top)
|
|
2097
|
+
|
|
2098
|
+
</div>
|
|
2099
|
+
|
|
2100
|
+
## [Version 2.0.0-next.67](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.66...v2.0.0-next.67)
|
|
2101
|
+
|
|
2102
|
+
<sup>Released on **2025-11-16**</sup>
|
|
2103
|
+
|
|
2104
|
+
#### ♻ Code Refactoring
|
|
2105
|
+
|
|
2106
|
+
- **misc**: Refactor to virtua.
|
|
2107
|
+
|
|
2108
|
+
<br/>
|
|
2109
|
+
|
|
2110
|
+
<details>
|
|
2111
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2112
|
+
|
|
2113
|
+
#### Code refactoring
|
|
2114
|
+
|
|
2115
|
+
- **misc**: Refactor to virtua, closes [#10151](https://github.com/lobehub/lobe-chat/issues/10151) ([9ffb689](https://github.com/lobehub/lobe-chat/commit/9ffb689))
|
|
2116
|
+
|
|
2117
|
+
</details>
|
|
2118
|
+
|
|
2119
|
+
<div align="right">
|
|
2120
|
+
|
|
2121
|
+
[](#readme-top)
|
|
2122
|
+
|
|
2123
|
+
</div>
|
|
2124
|
+
|
|
2125
|
+
## [Version 2.0.0-next.66](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.65...v2.0.0-next.66)
|
|
2126
|
+
|
|
2127
|
+
<sup>Released on **2025-11-16**</sup>
|
|
2128
|
+
|
|
2129
|
+
#### ✨ Features
|
|
2130
|
+
|
|
2131
|
+
- **misc**: Support to collapse message.
|
|
2132
|
+
|
|
2133
|
+
<br/>
|
|
2134
|
+
|
|
2135
|
+
<details>
|
|
2136
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2137
|
+
|
|
2138
|
+
#### What's improved
|
|
2139
|
+
|
|
2140
|
+
- **misc**: Support to collapse message, closes [#10234](https://github.com/lobehub/lobe-chat/issues/10234) ([4cd6347](https://github.com/lobehub/lobe-chat/commit/4cd6347))
|
|
2141
|
+
|
|
2142
|
+
</details>
|
|
2143
|
+
|
|
2144
|
+
<div align="right">
|
|
2145
|
+
|
|
2146
|
+
[](#readme-top)
|
|
2147
|
+
|
|
2148
|
+
</div>
|
|
2149
|
+
|
|
2150
|
+
## [Version 2.0.0-next.65](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.64...v2.0.0-next.65)
|
|
2151
|
+
|
|
2152
|
+
<sup>Released on **2025-11-16**</sup>
|
|
2153
|
+
|
|
2154
|
+
#### 💄 Styles
|
|
2155
|
+
|
|
2156
|
+
- **misc**: Update i18n.
|
|
2157
|
+
|
|
2158
|
+
<br/>
|
|
2159
|
+
|
|
2160
|
+
<details>
|
|
2161
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2162
|
+
|
|
2163
|
+
#### Styles
|
|
2164
|
+
|
|
2165
|
+
- **misc**: Update i18n, closes [#10235](https://github.com/lobehub/lobe-chat/issues/10235) ([a52c9e5](https://github.com/lobehub/lobe-chat/commit/a52c9e5))
|
|
2166
|
+
|
|
2167
|
+
</details>
|
|
2168
|
+
|
|
2169
|
+
<div align="right">
|
|
2170
|
+
|
|
2171
|
+
[](#readme-top)
|
|
2172
|
+
|
|
2173
|
+
</div>
|
|
2174
|
+
|
|
2175
|
+
## [Version 2.0.0-next.64](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.63...v2.0.0-next.64)
|
|
2176
|
+
|
|
2177
|
+
<sup>Released on **2025-11-15**</sup>
|
|
2178
|
+
|
|
2179
|
+
#### ♻ Code Refactoring
|
|
2180
|
+
|
|
2181
|
+
- **misc**: Refactor package types.
|
|
2182
|
+
|
|
2183
|
+
<br/>
|
|
2184
|
+
|
|
2185
|
+
<details>
|
|
2186
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2187
|
+
|
|
2188
|
+
#### Code refactoring
|
|
2189
|
+
|
|
2190
|
+
- **misc**: Refactor package types, closes [#10233](https://github.com/lobehub/lobe-chat/issues/10233) ([9872409](https://github.com/lobehub/lobe-chat/commit/9872409))
|
|
2191
|
+
|
|
2192
|
+
</details>
|
|
2193
|
+
|
|
2194
|
+
<div align="right">
|
|
2195
|
+
|
|
2196
|
+
[](#readme-top)
|
|
2197
|
+
|
|
2198
|
+
</div>
|
|
2199
|
+
|
|
2200
|
+
## [Version 2.0.0-next.63](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.62...v2.0.0-next.63)
|
|
2201
|
+
|
|
2202
|
+
<sup>Released on **2025-11-15**</sup>
|
|
2203
|
+
|
|
2204
|
+
#### ✨ Features
|
|
2205
|
+
|
|
2206
|
+
- **misc**: Show orphaned tool message and support delete tool message.
|
|
2207
|
+
|
|
2208
|
+
<br/>
|
|
2209
|
+
|
|
2210
|
+
<details>
|
|
2211
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2212
|
+
|
|
2213
|
+
#### What's improved
|
|
2214
|
+
|
|
2215
|
+
- **misc**: Show orphaned tool message and support delete tool message, closes [#10232](https://github.com/lobehub/lobe-chat/issues/10232) ([38cfd26](https://github.com/lobehub/lobe-chat/commit/38cfd26))
|
|
2216
|
+
|
|
2217
|
+
</details>
|
|
2218
|
+
|
|
2219
|
+
<div align="right">
|
|
2220
|
+
|
|
2221
|
+
[](#readme-top)
|
|
2222
|
+
|
|
2223
|
+
</div>
|
|
2224
|
+
|
|
2225
|
+
## [Version 2.0.0-next.62](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.61...v2.0.0-next.62)
|
|
2226
|
+
|
|
2227
|
+
<sup>Released on **2025-11-15**</sup>
|
|
2228
|
+
|
|
2229
|
+
#### 🐛 Bug Fixes
|
|
2230
|
+
|
|
2231
|
+
- **next16**: Resolve 'Response body object should not be disturbed or locked' error.
|
|
2232
|
+
|
|
2233
|
+
<br/>
|
|
2234
|
+
|
|
2235
|
+
<details>
|
|
2236
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2237
|
+
|
|
2238
|
+
#### What's fixed
|
|
2239
|
+
|
|
2240
|
+
- **next16**: Resolve 'Response body object should not be disturbed or locked' error, closes [#10226](https://github.com/lobehub/lobe-chat/issues/10226) ([caa9c78](https://github.com/lobehub/lobe-chat/commit/caa9c78))
|
|
2241
|
+
|
|
2242
|
+
</details>
|
|
2243
|
+
|
|
2244
|
+
<div align="right">
|
|
2245
|
+
|
|
2246
|
+
[](#readme-top)
|
|
2247
|
+
|
|
2248
|
+
</div>
|
|
2249
|
+
|
|
2250
|
+
## [Version 2.0.0-next.61](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.60...v2.0.0-next.61)
|
|
2251
|
+
|
|
2252
|
+
<sup>Released on **2025-11-15**</sup>
|
|
2253
|
+
|
|
2254
|
+
#### 💄 Styles
|
|
2255
|
+
|
|
2256
|
+
- **misc**: Update i18n.
|
|
2257
|
+
|
|
2258
|
+
<br/>
|
|
2259
|
+
|
|
2260
|
+
<details>
|
|
2261
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2262
|
+
|
|
2263
|
+
#### Styles
|
|
2264
|
+
|
|
2265
|
+
- **misc**: Update i18n, closes [#10224](https://github.com/lobehub/lobe-chat/issues/10224) ([ca7551f](https://github.com/lobehub/lobe-chat/commit/ca7551f))
|
|
2266
|
+
|
|
2267
|
+
</details>
|
|
2268
|
+
|
|
2269
|
+
<div align="right">
|
|
2270
|
+
|
|
2271
|
+
[](#readme-top)
|
|
2272
|
+
|
|
2273
|
+
</div>
|
|
2274
|
+
|
|
2275
|
+
## [Version 2.0.0-next.60](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.59...v2.0.0-next.60)
|
|
2276
|
+
|
|
2277
|
+
<sup>Released on **2025-11-14**</sup>
|
|
2278
|
+
|
|
2279
|
+
#### 🐛 Bug Fixes
|
|
2280
|
+
|
|
2281
|
+
- **misc**: Reduce threshold.
|
|
2282
|
+
|
|
2283
|
+
<br/>
|
|
2284
|
+
|
|
2285
|
+
<details>
|
|
2286
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2287
|
+
|
|
2288
|
+
#### What's fixed
|
|
2289
|
+
|
|
2290
|
+
- **misc**: Reduce threshold, closes [#10222](https://github.com/lobehub/lobe-chat/issues/10222) ([abdfd06](https://github.com/lobehub/lobe-chat/commit/abdfd06))
|
|
2291
|
+
|
|
2292
|
+
</details>
|
|
2293
|
+
|
|
2294
|
+
<div align="right">
|
|
2295
|
+
|
|
2296
|
+
[](#readme-top)
|
|
2297
|
+
|
|
2298
|
+
</div>
|
|
2299
|
+
|
|
2300
|
+
## [Version 2.0.0-next.59](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.58...v2.0.0-next.59)
|
|
2301
|
+
|
|
2302
|
+
<sup>Released on **2025-11-14**</sup>
|
|
2303
|
+
|
|
2304
|
+
#### 💄 Styles
|
|
2305
|
+
|
|
2306
|
+
- **misc**: Update i18n.
|
|
2307
|
+
|
|
2308
|
+
<br/>
|
|
2309
|
+
|
|
2310
|
+
<details>
|
|
2311
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2312
|
+
|
|
2313
|
+
#### Styles
|
|
2314
|
+
|
|
2315
|
+
- **misc**: Update i18n, closes [#10205](https://github.com/lobehub/lobe-chat/issues/10205) ([fc57d2a](https://github.com/lobehub/lobe-chat/commit/fc57d2a))
|
|
2316
|
+
|
|
2317
|
+
</details>
|
|
2318
|
+
|
|
2319
|
+
<div align="right">
|
|
2320
|
+
|
|
2321
|
+
[](#readme-top)
|
|
2322
|
+
|
|
2323
|
+
</div>
|
|
2324
|
+
|
|
2325
|
+
## [Version 2.0.0-next.58](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.57...v2.0.0-next.58)
|
|
2326
|
+
|
|
2327
|
+
<sup>Released on **2025-11-14**</sup>
|
|
2328
|
+
|
|
2329
|
+
#### ✨ Features
|
|
2330
|
+
|
|
2331
|
+
- **misc**: Support DeepSeek Interleaved thinking.
|
|
2332
|
+
|
|
2333
|
+
<br/>
|
|
2334
|
+
|
|
2335
|
+
<details>
|
|
2336
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2337
|
+
|
|
2338
|
+
#### What's improved
|
|
2339
|
+
|
|
2340
|
+
- **misc**: Support DeepSeek Interleaved thinking, closes [#10219](https://github.com/lobehub/lobe-chat/issues/10219) ([3736a85](https://github.com/lobehub/lobe-chat/commit/3736a85))
|
|
2341
|
+
|
|
2342
|
+
</details>
|
|
2343
|
+
|
|
2344
|
+
<div align="right">
|
|
2345
|
+
|
|
2346
|
+
[](#readme-top)
|
|
2347
|
+
|
|
2348
|
+
</div>
|
|
2349
|
+
|
|
2350
|
+
## [Version 2.0.0-next.57](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.56...v2.0.0-next.57)
|
|
2351
|
+
|
|
2352
|
+
<sup>Released on **2025-11-14**</sup>
|
|
2353
|
+
|
|
2354
|
+
#### 💄 Styles
|
|
2355
|
+
|
|
2356
|
+
- **misc**: Revert background style.
|
|
2357
|
+
|
|
2358
|
+
<br/>
|
|
2359
|
+
|
|
2360
|
+
<details>
|
|
2361
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2362
|
+
|
|
2363
|
+
#### Styles
|
|
2364
|
+
|
|
2365
|
+
- **misc**: Revert background style, closes [#10218](https://github.com/lobehub/lobe-chat/issues/10218) ([97b0413](https://github.com/lobehub/lobe-chat/commit/97b0413))
|
|
2366
|
+
|
|
2367
|
+
</details>
|
|
2368
|
+
|
|
2369
|
+
<div align="right">
|
|
2370
|
+
|
|
2371
|
+
[](#readme-top)
|
|
2372
|
+
|
|
2373
|
+
</div>
|
|
2374
|
+
|
|
2375
|
+
## [Version 2.0.0-next.56](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.55...v2.0.0-next.56)
|
|
2376
|
+
|
|
2377
|
+
<sup>Released on **2025-11-14**</sup>
|
|
2378
|
+
|
|
2379
|
+
#### ✨ Features
|
|
2380
|
+
|
|
2381
|
+
- **misc**: Add folder creation UI and clean up debug code.
|
|
2382
|
+
|
|
2383
|
+
<br/>
|
|
2384
|
+
|
|
2385
|
+
<details>
|
|
2386
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2387
|
+
|
|
2388
|
+
#### What's improved
|
|
2389
|
+
|
|
2390
|
+
- **misc**: Add folder creation UI and clean up debug code ([d5ecd0a](https://github.com/lobehub/lobe-chat/commit/d5ecd0a))
|
|
2391
|
+
|
|
2392
|
+
</details>
|
|
2393
|
+
|
|
2394
|
+
<div align="right">
|
|
2395
|
+
|
|
2396
|
+
[](#readme-top)
|
|
2397
|
+
|
|
2398
|
+
</div>
|
|
2399
|
+
|
|
2400
|
+
## [Version 2.0.0-next.55](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.54...v2.0.0-next.55)
|
|
2401
|
+
|
|
2402
|
+
<sup>Released on **2025-11-14**</sup>
|
|
2403
|
+
|
|
2404
|
+
#### ✨ Features
|
|
2405
|
+
|
|
2406
|
+
- **image**: Image model show price.
|
|
2407
|
+
- **misc**: Create Pages in Knowledge Base.
|
|
2408
|
+
|
|
2409
|
+
<br/>
|
|
2410
|
+
|
|
2411
|
+
<details>
|
|
2412
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2413
|
+
|
|
2414
|
+
#### What's improved
|
|
2415
|
+
|
|
2416
|
+
- **image**: Image model show price, closes [#10198](https://github.com/lobehub/lobe-chat/issues/10198) ([b87e0e4](https://github.com/lobehub/lobe-chat/commit/b87e0e4))
|
|
2417
|
+
- **misc**: Create Pages in Knowledge Base, closes [#9895](https://github.com/lobehub/lobe-chat/issues/9895) ([f46edeb](https://github.com/lobehub/lobe-chat/commit/f46edeb))
|
|
2418
|
+
|
|
2419
|
+
</details>
|
|
2420
|
+
|
|
2421
|
+
<div align="right">
|
|
2422
|
+
|
|
2423
|
+
[](#readme-top)
|
|
2424
|
+
|
|
2425
|
+
</div>
|
|
2426
|
+
|
|
2427
|
+
## [Version 2.0.0-next.54](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.53...v2.0.0-next.54)
|
|
2428
|
+
|
|
2429
|
+
<sup>Released on **2025-11-14**</sup>
|
|
2430
|
+
|
|
2431
|
+
#### 💄 Styles
|
|
2432
|
+
|
|
2433
|
+
- **misc**: Refactor and support move locale file intervention.
|
|
2434
|
+
|
|
2435
|
+
<br/>
|
|
2436
|
+
|
|
2437
|
+
<details>
|
|
2438
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2439
|
+
|
|
2440
|
+
#### Styles
|
|
2441
|
+
|
|
2442
|
+
- **misc**: Refactor and support move locale file intervention, closes [#10213](https://github.com/lobehub/lobe-chat/issues/10213) ([63cac81](https://github.com/lobehub/lobe-chat/commit/63cac81))
|
|
2443
|
+
|
|
2444
|
+
</details>
|
|
2445
|
+
|
|
2446
|
+
<div align="right">
|
|
2447
|
+
|
|
2448
|
+
[](#readme-top)
|
|
2449
|
+
|
|
2450
|
+
</div>
|
|
2451
|
+
|
|
2452
|
+
## [Version 2.0.0-next.53](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.52...v2.0.0-next.53)
|
|
2453
|
+
|
|
2454
|
+
<sup>Released on **2025-11-14**</sup>
|
|
2455
|
+
|
|
2456
|
+
#### ✨ Features
|
|
2457
|
+
|
|
2458
|
+
- **misc**: Add GPT-5.1 models.
|
|
2459
|
+
|
|
2460
|
+
#### 💄 Styles
|
|
2461
|
+
|
|
2462
|
+
- **misc**: Fix approving render and improve Conversation style.
|
|
2463
|
+
|
|
2464
|
+
<br/>
|
|
2465
|
+
|
|
2466
|
+
<details>
|
|
2467
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2468
|
+
|
|
2469
|
+
#### What's improved
|
|
2470
|
+
|
|
2471
|
+
- **misc**: Add GPT-5.1 models, closes [#10206](https://github.com/lobehub/lobe-chat/issues/10206) ([afd3a47](https://github.com/lobehub/lobe-chat/commit/afd3a47))
|
|
2472
|
+
|
|
2473
|
+
#### Styles
|
|
2474
|
+
|
|
2475
|
+
- **misc**: Fix approving render and improve Conversation style, closes [#10210](https://github.com/lobehub/lobe-chat/issues/10210) ([841b7f1](https://github.com/lobehub/lobe-chat/commit/841b7f1))
|
|
2476
|
+
|
|
2477
|
+
</details>
|
|
2478
|
+
|
|
2479
|
+
<div align="right">
|
|
2480
|
+
|
|
2481
|
+
[](#readme-top)
|
|
2482
|
+
|
|
2483
|
+
</div>
|
|
2484
|
+
|
|
2485
|
+
## [Version 2.0.0-next.52](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.51...v2.0.0-next.52)
|
|
2486
|
+
|
|
2487
|
+
<sup>Released on **2025-11-13**</sup>
|
|
2488
|
+
|
|
2489
|
+
#### 🐛 Bug Fixes
|
|
2490
|
+
|
|
2491
|
+
- **misc**: Filter out reasoning fields from messages in ChatCompletion API.
|
|
2492
|
+
|
|
2493
|
+
<br/>
|
|
2494
|
+
|
|
2495
|
+
<details>
|
|
2496
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2497
|
+
|
|
2498
|
+
#### What's fixed
|
|
2499
|
+
|
|
2500
|
+
- **misc**: Filter out reasoning fields from messages in ChatCompletion API, closes [#10203](https://github.com/lobehub/lobe-chat/issues/10203) [#10193](https://github.com/lobehub/lobe-chat/issues/10193) ([5f28b2c](https://github.com/lobehub/lobe-chat/commit/5f28b2c))
|
|
2501
|
+
|
|
2502
|
+
</details>
|
|
2503
|
+
|
|
2504
|
+
<div align="right">
|
|
2505
|
+
|
|
2506
|
+
[](#readme-top)
|
|
2507
|
+
|
|
2508
|
+
</div>
|
|
2509
|
+
|
|
2510
|
+
## [Version 2.0.0-next.51](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.50...v2.0.0-next.51)
|
|
2511
|
+
|
|
2512
|
+
<sup>Released on **2025-11-13**</sup>
|
|
2513
|
+
|
|
2514
|
+
#### 💄 Styles
|
|
2515
|
+
|
|
2516
|
+
- **misc**: Update ERNIE-5.0-Thinking-Preview model.
|
|
2517
|
+
|
|
2518
|
+
<br/>
|
|
2519
|
+
|
|
2520
|
+
<details>
|
|
2521
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2522
|
+
|
|
2523
|
+
#### Styles
|
|
2524
|
+
|
|
2525
|
+
- **misc**: Update ERNIE-5.0-Thinking-Preview model, closes [#10196](https://github.com/lobehub/lobe-chat/issues/10196) ([89f3eed](https://github.com/lobehub/lobe-chat/commit/89f3eed))
|
|
2526
|
+
|
|
2527
|
+
</details>
|
|
2528
|
+
|
|
2529
|
+
<div align="right">
|
|
2530
|
+
|
|
2531
|
+
[](#readme-top)
|
|
2532
|
+
|
|
2533
|
+
</div>
|
|
2534
|
+
|
|
2535
|
+
## [Version 2.0.0-next.50](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.49...v2.0.0-next.50)
|
|
2536
|
+
|
|
2537
|
+
<sup>Released on **2025-11-13**</sup>
|
|
2538
|
+
|
|
2539
|
+
#### 🐛 Bug Fixes
|
|
2540
|
+
|
|
2541
|
+
- **misc**: Fix oidc accountId mismatch.
|
|
2542
|
+
|
|
2543
|
+
<br/>
|
|
2544
|
+
|
|
2545
|
+
<details>
|
|
2546
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2547
|
+
|
|
2548
|
+
#### What's fixed
|
|
2549
|
+
|
|
2550
|
+
- **misc**: Fix oidc accountId mismatch, closes [#10058](https://github.com/lobehub/lobe-chat/issues/10058) ([0692ba7](https://github.com/lobehub/lobe-chat/commit/0692ba7))
|
|
2551
|
+
|
|
2552
|
+
</details>
|
|
2553
|
+
|
|
2554
|
+
<div align="right">
|
|
2555
|
+
|
|
2556
|
+
[](#readme-top)
|
|
2557
|
+
|
|
2558
|
+
</div>
|
|
2559
|
+
|
|
2560
|
+
## [Version 2.0.0-next.49](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.48...v2.0.0-next.49)
|
|
2561
|
+
|
|
2562
|
+
<sup>Released on **2025-11-13**</sup>
|
|
2563
|
+
|
|
2564
|
+
#### ✨ Features
|
|
2565
|
+
|
|
2566
|
+
- **misc**: Support tool invention.
|
|
2567
|
+
|
|
2568
|
+
#### 🐛 Bug Fixes
|
|
2569
|
+
|
|
2570
|
+
- **misc**: Update lost i18n files.
|
|
2571
|
+
|
|
2572
|
+
<br/>
|
|
2573
|
+
|
|
2574
|
+
<details>
|
|
2575
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2576
|
+
|
|
2577
|
+
#### What's improved
|
|
2578
|
+
|
|
2579
|
+
- **misc**: Support tool invention, closes [#10182](https://github.com/lobehub/lobe-chat/issues/10182) ([4dca708](https://github.com/lobehub/lobe-chat/commit/4dca708))
|
|
2580
|
+
|
|
2581
|
+
#### What's fixed
|
|
2582
|
+
|
|
2583
|
+
- **misc**: Update lost i18n files, closes [#10179](https://github.com/lobehub/lobe-chat/issues/10179) ([b69c7ff](https://github.com/lobehub/lobe-chat/commit/b69c7ff))
|
|
2584
|
+
|
|
2585
|
+
</details>
|
|
2586
|
+
|
|
2587
|
+
<div align="right">
|
|
2588
|
+
|
|
2589
|
+
[](#readme-top)
|
|
2590
|
+
|
|
2591
|
+
</div>
|
|
2592
|
+
|
|
2593
|
+
## [Version 2.0.0-next.48](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.47...v2.0.0-next.48)
|
|
2594
|
+
|
|
2595
|
+
<sup>Released on **2025-11-12**</sup>
|
|
2596
|
+
|
|
2597
|
+
<br/>
|
|
2598
|
+
|
|
2599
|
+
<details>
|
|
2600
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2601
|
+
|
|
2602
|
+
</details>
|
|
2603
|
+
|
|
2604
|
+
<div align="right">
|
|
2605
|
+
|
|
2606
|
+
[](#readme-top)
|
|
2607
|
+
|
|
2608
|
+
</div>
|
|
2609
|
+
|
|
2610
|
+
## [Version 2.0.0-next.47](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.46...v2.0.0-next.47)
|
|
2611
|
+
|
|
2612
|
+
<sup>Released on **2025-11-11**</sup>
|
|
2613
|
+
|
|
2614
|
+
#### 🐛 Bug Fixes
|
|
2615
|
+
|
|
2616
|
+
- **misc**: Fix mcp server return image error.
|
|
2617
|
+
|
|
2618
|
+
<br/>
|
|
2619
|
+
|
|
2620
|
+
<details>
|
|
2621
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2622
|
+
|
|
2623
|
+
#### What's fixed
|
|
2624
|
+
|
|
2625
|
+
- **misc**: Fix mcp server return image error, closes [#10113](https://github.com/lobehub/lobe-chat/issues/10113) ([e5640d4](https://github.com/lobehub/lobe-chat/commit/e5640d4))
|
|
2626
|
+
|
|
2627
|
+
</details>
|
|
2628
|
+
|
|
2629
|
+
<div align="right">
|
|
2630
|
+
|
|
2631
|
+
[](#readme-top)
|
|
2632
|
+
|
|
2633
|
+
</div>
|
|
2634
|
+
|
|
2635
|
+
## [Version 2.0.0-next.46](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.45...v2.0.0-next.46)
|
|
2636
|
+
|
|
2637
|
+
<sup>Released on **2025-11-11**</sup>
|
|
2638
|
+
|
|
2639
|
+
#### ♻ Code Refactoring
|
|
2640
|
+
|
|
2641
|
+
- **misc**: Fix thread display.
|
|
2642
|
+
|
|
2643
|
+
<br/>
|
|
2644
|
+
|
|
2645
|
+
<details>
|
|
2646
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2647
|
+
|
|
2648
|
+
#### Code refactoring
|
|
2649
|
+
|
|
2650
|
+
- **misc**: Fix thread display, closes [#10153](https://github.com/lobehub/lobe-chat/issues/10153) ([8fda83e](https://github.com/lobehub/lobe-chat/commit/8fda83e))
|
|
2651
|
+
|
|
2652
|
+
</details>
|
|
2653
|
+
|
|
2654
|
+
<div align="right">
|
|
2655
|
+
|
|
2656
|
+
[](#readme-top)
|
|
2657
|
+
|
|
2658
|
+
</div>
|
|
2659
|
+
|
|
2660
|
+
## [Version 2.0.0-next.45](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.44...v2.0.0-next.45)
|
|
2661
|
+
|
|
2662
|
+
<sup>Released on **2025-11-10**</sup>
|
|
2663
|
+
|
|
2664
|
+
#### ♻ Code Refactoring
|
|
2665
|
+
|
|
2666
|
+
- **misc**: Edge to node runtime.
|
|
2667
|
+
|
|
2668
|
+
<br/>
|
|
2669
|
+
|
|
2670
|
+
<details>
|
|
2671
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2672
|
+
|
|
2673
|
+
#### Code refactoring
|
|
2674
|
+
|
|
2675
|
+
- **misc**: Edge to node runtime, closes [#10149](https://github.com/lobehub/lobe-chat/issues/10149) ([2f4c25d](https://github.com/lobehub/lobe-chat/commit/2f4c25d))
|
|
2676
|
+
|
|
2677
|
+
</details>
|
|
2678
|
+
|
|
2679
|
+
<div align="right">
|
|
2680
|
+
|
|
2681
|
+
[](#readme-top)
|
|
2682
|
+
|
|
2683
|
+
</div>
|
|
2684
|
+
|
|
2685
|
+
## [Version 2.0.0-next.44](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.43...v2.0.0-next.44)
|
|
2686
|
+
|
|
2687
|
+
<sup>Released on **2025-11-10**</sup>
|
|
2688
|
+
|
|
2689
|
+
#### 🐛 Bug Fixes
|
|
2690
|
+
|
|
2691
|
+
- **misc**: Fix reasoning issue with claude and Response API thinking.
|
|
2692
|
+
|
|
2693
|
+
<br/>
|
|
2694
|
+
|
|
2695
|
+
<details>
|
|
2696
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2697
|
+
|
|
2698
|
+
#### What's fixed
|
|
2699
|
+
|
|
2700
|
+
- **misc**: Fix reasoning issue with claude and Response API thinking, closes [#10147](https://github.com/lobehub/lobe-chat/issues/10147) ([cf6bd53](https://github.com/lobehub/lobe-chat/commit/cf6bd53))
|
|
2701
|
+
|
|
2702
|
+
</details>
|
|
2703
|
+
|
|
2704
|
+
<div align="right">
|
|
2705
|
+
|
|
2706
|
+
[](#readme-top)
|
|
2707
|
+
|
|
2708
|
+
</div>
|
|
2709
|
+
|
|
2710
|
+
## [Version 2.0.0-next.43](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.42...v2.0.0-next.43)
|
|
2711
|
+
|
|
2712
|
+
<sup>Released on **2025-11-09**</sup>
|
|
2713
|
+
|
|
2714
|
+
#### 🐛 Bug Fixes
|
|
2715
|
+
|
|
2716
|
+
- **misc**: Abnormal animation of tokens.
|
|
2717
|
+
|
|
2718
|
+
<br/>
|
|
2719
|
+
|
|
2720
|
+
<details>
|
|
2721
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2722
|
+
|
|
2723
|
+
#### What's fixed
|
|
2724
|
+
|
|
2725
|
+
- **misc**: Abnormal animation of tokens, closes [#10106](https://github.com/lobehub/lobe-chat/issues/10106) ([129df7b](https://github.com/lobehub/lobe-chat/commit/129df7b))
|
|
2726
|
+
|
|
2727
|
+
</details>
|
|
2728
|
+
|
|
2729
|
+
<div align="right">
|
|
2730
|
+
|
|
2731
|
+
[](#readme-top)
|
|
2732
|
+
|
|
2733
|
+
</div>
|
|
2734
|
+
|
|
2735
|
+
## [Version 2.0.0-next.42](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.41...v2.0.0-next.42)
|
|
2736
|
+
|
|
2737
|
+
<sup>Released on **2025-11-09**</sup>
|
|
2738
|
+
|
|
2739
|
+
#### 🐛 Bug Fixes
|
|
2740
|
+
|
|
2741
|
+
- **misc**: Fix missing messages when finish runtime.
|
|
2742
|
+
|
|
2743
|
+
<br/>
|
|
2744
|
+
|
|
2745
|
+
<details>
|
|
2746
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2747
|
+
|
|
2748
|
+
#### What's fixed
|
|
2749
|
+
|
|
2750
|
+
- **misc**: Fix missing messages when finish runtime, closes [#10138](https://github.com/lobehub/lobe-chat/issues/10138) ([b94d477](https://github.com/lobehub/lobe-chat/commit/b94d477))
|
|
2751
|
+
|
|
2752
|
+
</details>
|
|
2753
|
+
|
|
2754
|
+
<div align="right">
|
|
2755
|
+
|
|
2756
|
+
[](#readme-top)
|
|
2757
|
+
|
|
2758
|
+
</div>
|
|
2759
|
+
|
|
2760
|
+
## [Version 2.0.0-next.41](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.40...v2.0.0-next.41)
|
|
2761
|
+
|
|
2762
|
+
<sup>Released on **2025-11-09**</sup>
|
|
2763
|
+
|
|
2764
|
+
#### 💄 Styles
|
|
2765
|
+
|
|
2766
|
+
- **misc**: Update i18n.
|
|
2767
|
+
|
|
2768
|
+
<br/>
|
|
2769
|
+
|
|
2770
|
+
<details>
|
|
2771
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2772
|
+
|
|
2773
|
+
#### Styles
|
|
2774
|
+
|
|
2775
|
+
- **misc**: Update i18n, closes [#10116](https://github.com/lobehub/lobe-chat/issues/10116) ([766772e](https://github.com/lobehub/lobe-chat/commit/766772e))
|
|
2776
|
+
|
|
2777
|
+
</details>
|
|
2778
|
+
|
|
2779
|
+
<div align="right">
|
|
2780
|
+
|
|
2781
|
+
[](#readme-top)
|
|
2782
|
+
|
|
2783
|
+
</div>
|
|
2784
|
+
|
|
2785
|
+
## [Version 2.0.0-next.40](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.39...v2.0.0-next.40)
|
|
2786
|
+
|
|
2787
|
+
<sup>Released on **2025-11-08**</sup>
|
|
2788
|
+
|
|
2789
|
+
#### 🐛 Bug Fixes
|
|
2790
|
+
|
|
2791
|
+
- **database**: Fix deleteMessagesBySession incorrectly deleting all messages.
|
|
2792
|
+
|
|
2793
|
+
<br/>
|
|
2794
|
+
|
|
2795
|
+
<details>
|
|
2796
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2797
|
+
|
|
2798
|
+
#### What's fixed
|
|
2799
|
+
|
|
2800
|
+
- **database**: Fix deleteMessagesBySession incorrectly deleting all messages, closes [#10110](https://github.com/lobehub/lobe-chat/issues/10110) ([1d7f67d](https://github.com/lobehub/lobe-chat/commit/1d7f67d))
|
|
2801
|
+
|
|
2802
|
+
</details>
|
|
2803
|
+
|
|
2804
|
+
<div align="right">
|
|
2805
|
+
|
|
2806
|
+
[](#readme-top)
|
|
2807
|
+
|
|
2808
|
+
</div>
|
|
2809
|
+
|
|
2810
|
+
## [Version 2.0.0-next.39](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.38...v2.0.0-next.39)
|
|
2811
|
+
|
|
2812
|
+
<sup>Released on **2025-11-08**</sup>
|
|
2813
|
+
|
|
2814
|
+
<br/>
|
|
2815
|
+
|
|
2816
|
+
<details>
|
|
2817
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2818
|
+
|
|
2819
|
+
</details>
|
|
2820
|
+
|
|
2821
|
+
<div align="right">
|
|
2822
|
+
|
|
2823
|
+
[](#readme-top)
|
|
2824
|
+
|
|
2825
|
+
</div>
|
|
2826
|
+
|
|
2827
|
+
## [Version 2.0.0-next.38](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.37...v2.0.0-next.38)
|
|
2828
|
+
|
|
2829
|
+
<sup>Released on **2025-11-08**</sup>
|
|
2830
|
+
|
|
2831
|
+
#### 🐛 Bug Fixes
|
|
2832
|
+
|
|
2833
|
+
- **TokenUsage**: Prevent animation when toggling between token and credit display.
|
|
2834
|
+
|
|
2835
|
+
#### 💄 Styles
|
|
2836
|
+
|
|
2837
|
+
- **misc**: Update i18n.
|
|
2838
|
+
|
|
2839
|
+
<br/>
|
|
2840
|
+
|
|
2841
|
+
<details>
|
|
2842
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2843
|
+
|
|
2844
|
+
#### What's fixed
|
|
2845
|
+
|
|
2846
|
+
- **TokenUsage**: Prevent animation when toggling between token and credit display, closes [#10098](https://github.com/lobehub/lobe-chat/issues/10098) ([f20a910](https://github.com/lobehub/lobe-chat/commit/f20a910))
|
|
2847
|
+
|
|
2848
|
+
#### Styles
|
|
2849
|
+
|
|
2850
|
+
- **misc**: Update i18n, closes [#10100](https://github.com/lobehub/lobe-chat/issues/10100) ([deb6b5e](https://github.com/lobehub/lobe-chat/commit/deb6b5e))
|
|
2851
|
+
|
|
2852
|
+
</details>
|
|
2853
|
+
|
|
2854
|
+
<div align="right">
|
|
2855
|
+
|
|
2856
|
+
[](#readme-top)
|
|
2857
|
+
|
|
2858
|
+
</div>
|
|
2859
|
+
|
|
2860
|
+
## [Version 2.0.0-next.37](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.36...v2.0.0-next.37)
|
|
2861
|
+
|
|
2862
|
+
<sup>Released on **2025-11-07**</sup>
|
|
2863
|
+
|
|
2864
|
+
#### 🐛 Bug Fixes
|
|
2865
|
+
|
|
2866
|
+
- **misc**: Don't include runtimeProvider in JWT for non-image operations.
|
|
2867
|
+
|
|
2868
|
+
<br/>
|
|
2869
|
+
|
|
2870
|
+
<details>
|
|
2871
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2872
|
+
|
|
2873
|
+
#### What's fixed
|
|
2874
|
+
|
|
2875
|
+
- **misc**: Don't include runtimeProvider in JWT for non-image operations, closes [#9959](https://github.com/lobehub/lobe-chat/issues/9959) [#9569](https://github.com/lobehub/lobe-chat/issues/9569) ([b8f25de](https://github.com/lobehub/lobe-chat/commit/b8f25de))
|
|
2876
|
+
|
|
2877
|
+
</details>
|
|
2878
|
+
|
|
2879
|
+
<div align="right">
|
|
2880
|
+
|
|
2881
|
+
[](#readme-top)
|
|
2882
|
+
|
|
2883
|
+
</div>
|
|
2884
|
+
|
|
2885
|
+
## [Version 2.0.0-next.36](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.35...v2.0.0-next.36)
|
|
2886
|
+
|
|
2887
|
+
<sup>Released on **2025-11-07**</sup>
|
|
2888
|
+
|
|
2889
|
+
#### ✨ Features
|
|
2890
|
+
|
|
2891
|
+
- **misc**: Refactor to use agent runtime as the generation core and support branch mode.
|
|
2892
|
+
|
|
2893
|
+
<br/>
|
|
2894
|
+
|
|
2895
|
+
<details>
|
|
2896
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2897
|
+
|
|
2898
|
+
#### What's improved
|
|
2899
|
+
|
|
2900
|
+
- **misc**: Refactor to use agent runtime as the generation core and support branch mode, closes [#10080](https://github.com/lobehub/lobe-chat/issues/10080) ([b95e741](https://github.com/lobehub/lobe-chat/commit/b95e741))
|
|
2901
|
+
|
|
2902
|
+
</details>
|
|
2903
|
+
|
|
2904
|
+
<div align="right">
|
|
2905
|
+
|
|
2906
|
+
[](#readme-top)
|
|
2907
|
+
|
|
2908
|
+
</div>
|
|
2909
|
+
|
|
2910
|
+
## [Version 2.0.0-next.35](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.34...v2.0.0-next.35)
|
|
2911
|
+
|
|
2912
|
+
<sup>Released on **2025-11-07**</sup>
|
|
2913
|
+
|
|
2914
|
+
#### ♻ Code Refactoring
|
|
2915
|
+
|
|
2916
|
+
- **misc**: Use react-router-dom change /chat page to spa mode.
|
|
2917
|
+
|
|
2918
|
+
<br/>
|
|
2919
|
+
|
|
2920
|
+
<details>
|
|
2921
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2922
|
+
|
|
2923
|
+
#### Code refactoring
|
|
2924
|
+
|
|
2925
|
+
- **misc**: Use react-router-dom change /chat page to spa mode, closes [#10077](https://github.com/lobehub/lobe-chat/issues/10077) ([9154606](https://github.com/lobehub/lobe-chat/commit/9154606))
|
|
2926
|
+
|
|
2927
|
+
</details>
|
|
2928
|
+
|
|
2929
|
+
<div align="right">
|
|
2930
|
+
|
|
2931
|
+
[](#readme-top)
|
|
2932
|
+
|
|
2933
|
+
</div>
|
|
2934
|
+
|
|
2935
|
+
## [Version 2.0.0-next.34](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.33...v2.0.0-next.34)
|
|
2936
|
+
|
|
2937
|
+
<sup>Released on **2025-11-07**</sup>
|
|
2938
|
+
|
|
2939
|
+
#### 💄 Styles
|
|
2940
|
+
|
|
2941
|
+
- **misc**: Add sorting functionality for disabled models and model providers with tooltip support.
|
|
2942
|
+
|
|
2943
|
+
<br/>
|
|
2944
|
+
|
|
2945
|
+
<details>
|
|
2946
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2947
|
+
|
|
2948
|
+
#### Styles
|
|
2949
|
+
|
|
2950
|
+
- **misc**: Add sorting functionality for disabled models and model providers with tooltip support, closes [#10000](https://github.com/lobehub/lobe-chat/issues/10000) ([68e98b1](https://github.com/lobehub/lobe-chat/commit/68e98b1))
|
|
2951
|
+
|
|
2952
|
+
</details>
|
|
2953
|
+
|
|
2954
|
+
<div align="right">
|
|
2955
|
+
|
|
2956
|
+
[](#readme-top)
|
|
2957
|
+
|
|
2958
|
+
</div>
|
|
2959
|
+
|
|
2960
|
+
## [Version 2.0.0-next.33](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.32...v2.0.0-next.33)
|
|
2961
|
+
|
|
2962
|
+
<sup>Released on **2025-11-06**</sup>
|
|
2963
|
+
|
|
2964
|
+
#### ♻ Code Refactoring
|
|
2965
|
+
|
|
2966
|
+
- **misc**: Refactor message create name.
|
|
2967
|
+
|
|
2968
|
+
#### 🐛 Bug Fixes
|
|
2969
|
+
|
|
2970
|
+
- **misc**: Model name display in the assistant panel disappears.
|
|
2971
|
+
|
|
2972
|
+
<br/>
|
|
2973
|
+
|
|
2974
|
+
<details>
|
|
2975
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
2976
|
+
|
|
2977
|
+
#### Code refactoring
|
|
2978
|
+
|
|
2979
|
+
- **misc**: Refactor message create name, closes [#10074](https://github.com/lobehub/lobe-chat/issues/10074) ([08ec29f](https://github.com/lobehub/lobe-chat/commit/08ec29f))
|
|
2980
|
+
|
|
2981
|
+
#### What's fixed
|
|
2982
|
+
|
|
2983
|
+
- **misc**: Model name display in the assistant panel disappears, closes [#9830](https://github.com/lobehub/lobe-chat/issues/9830) ([54f4e18](https://github.com/lobehub/lobe-chat/commit/54f4e18))
|
|
2984
|
+
|
|
2985
|
+
</details>
|
|
2986
|
+
|
|
2987
|
+
<div align="right">
|
|
2988
|
+
|
|
2989
|
+
[](#readme-top)
|
|
2990
|
+
|
|
2991
|
+
</div>
|
|
2992
|
+
|
|
2993
|
+
## [Version 2.0.0-next.32](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.31...v2.0.0-next.32)
|
|
2994
|
+
|
|
2995
|
+
<sup>Released on **2025-11-05**</sup>
|
|
2996
|
+
|
|
2997
|
+
#### 🐛 Bug Fixes
|
|
2998
|
+
|
|
2999
|
+
- **misc**: Should install new version after quit this instance.
|
|
3000
|
+
|
|
3001
|
+
<br/>
|
|
3002
|
+
|
|
3003
|
+
<details>
|
|
3004
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3005
|
+
|
|
3006
|
+
#### What's fixed
|
|
3007
|
+
|
|
3008
|
+
- **misc**: Should install new version after quit this instance, closes [#10064](https://github.com/lobehub/lobe-chat/issues/10064) ([9ab77b2](https://github.com/lobehub/lobe-chat/commit/9ab77b2))
|
|
3009
|
+
|
|
3010
|
+
</details>
|
|
3011
|
+
|
|
3012
|
+
<div align="right">
|
|
3013
|
+
|
|
3014
|
+
[](#readme-top)
|
|
3015
|
+
|
|
3016
|
+
</div>
|
|
3017
|
+
|
|
3018
|
+
## [Version 2.0.0-next.31](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.30...v2.0.0-next.31)
|
|
3019
|
+
|
|
3020
|
+
<sup>Released on **2025-11-05**</sup>
|
|
3021
|
+
|
|
3022
|
+
<br/>
|
|
3023
|
+
|
|
3024
|
+
<details>
|
|
3025
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3026
|
+
|
|
3027
|
+
</details>
|
|
3028
|
+
|
|
3029
|
+
<div align="right">
|
|
3030
|
+
|
|
3031
|
+
[](#readme-top)
|
|
3032
|
+
|
|
3033
|
+
</div>
|
|
3034
|
+
|
|
3035
|
+
## [Version 2.0.0-next.30](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.29...v2.0.0-next.30)
|
|
3036
|
+
|
|
3037
|
+
<sup>Released on **2025-11-05**</sup>
|
|
3038
|
+
|
|
3039
|
+
#### ♻ Code Refactoring
|
|
3040
|
+
|
|
3041
|
+
- **misc**: Enhance message router with service layer and comprehensive tests.
|
|
3042
|
+
|
|
3043
|
+
<br/>
|
|
3044
|
+
|
|
3045
|
+
<details>
|
|
3046
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3047
|
+
|
|
3048
|
+
#### Code refactoring
|
|
3049
|
+
|
|
3050
|
+
- **misc**: Enhance message router with service layer and comprehensive tests, closes [#10056](https://github.com/lobehub/lobe-chat/issues/10056) ([62110e0](https://github.com/lobehub/lobe-chat/commit/62110e0))
|
|
3051
|
+
|
|
3052
|
+
</details>
|
|
3053
|
+
|
|
3054
|
+
<div align="right">
|
|
3055
|
+
|
|
3056
|
+
[](#readme-top)
|
|
3057
|
+
|
|
3058
|
+
</div>
|
|
3059
|
+
|
|
3060
|
+
## [Version 2.0.0-next.29](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.28...v2.0.0-next.29)
|
|
3061
|
+
|
|
3062
|
+
<sup>Released on **2025-11-04**</sup>
|
|
3063
|
+
|
|
3064
|
+
#### ♻ Code Refactoring
|
|
3065
|
+
|
|
3066
|
+
- **misc**: Refactor chat message model to speed up.
|
|
3067
|
+
|
|
3068
|
+
<br/>
|
|
3069
|
+
|
|
3070
|
+
<details>
|
|
3071
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3072
|
+
|
|
3073
|
+
#### Code refactoring
|
|
3074
|
+
|
|
3075
|
+
- **misc**: Refactor chat message model to speed up, closes [#10053](https://github.com/lobehub/lobe-chat/issues/10053) ([035994f](https://github.com/lobehub/lobe-chat/commit/035994f))
|
|
3076
|
+
|
|
3077
|
+
</details>
|
|
3078
|
+
|
|
3079
|
+
<div align="right">
|
|
3080
|
+
|
|
3081
|
+
[](#readme-top)
|
|
3082
|
+
|
|
3083
|
+
</div>
|
|
3084
|
+
|
|
3085
|
+
## [Version 2.0.0-next.28](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.27...v2.0.0-next.28)
|
|
3086
|
+
|
|
3087
|
+
<sup>Released on **2025-11-04**</sup>
|
|
3088
|
+
|
|
3089
|
+
#### ✨ Features
|
|
3090
|
+
|
|
3091
|
+
- **misc**: Support install sreamable http mcp server on web.
|
|
3092
|
+
|
|
3093
|
+
<br/>
|
|
3094
|
+
|
|
3095
|
+
<details>
|
|
3096
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3097
|
+
|
|
3098
|
+
#### What's improved
|
|
3099
|
+
|
|
3100
|
+
- **misc**: Support install sreamable http mcp server on web, closes [#10044](https://github.com/lobehub/lobe-chat/issues/10044) [#9916](https://github.com/lobehub/lobe-chat/issues/9916) ([85454c5](https://github.com/lobehub/lobe-chat/commit/85454c5))
|
|
3101
|
+
|
|
3102
|
+
</details>
|
|
3103
|
+
|
|
3104
|
+
<div align="right">
|
|
3105
|
+
|
|
3106
|
+
[](#readme-top)
|
|
3107
|
+
|
|
3108
|
+
</div>
|
|
3109
|
+
|
|
3110
|
+
## [Version 2.0.0-next.27](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.26...v2.0.0-next.27)
|
|
3111
|
+
|
|
3112
|
+
<sup>Released on **2025-11-04**</sup>
|
|
3113
|
+
|
|
3114
|
+
#### ♻ Code Refactoring
|
|
3115
|
+
|
|
3116
|
+
- **misc**: Refactor services to a more clean structure.
|
|
3117
|
+
|
|
3118
|
+
<br/>
|
|
3119
|
+
|
|
3120
|
+
<details>
|
|
3121
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3122
|
+
|
|
3123
|
+
#### Code refactoring
|
|
3124
|
+
|
|
3125
|
+
- **misc**: Refactor services to a more clean structure, closes [#10050](https://github.com/lobehub/lobe-chat/issues/10050) ([de61dfa](https://github.com/lobehub/lobe-chat/commit/de61dfa))
|
|
3126
|
+
|
|
3127
|
+
</details>
|
|
3128
|
+
|
|
3129
|
+
<div align="right">
|
|
3130
|
+
|
|
3131
|
+
[](#readme-top)
|
|
3132
|
+
|
|
3133
|
+
</div>
|
|
3134
|
+
|
|
3135
|
+
## [Version 2.0.0-next.26](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.25...v2.0.0-next.26)
|
|
3136
|
+
|
|
3137
|
+
<sup>Released on **2025-11-04**</sup>
|
|
3138
|
+
|
|
3139
|
+
#### ♻ Code Refactoring
|
|
3140
|
+
|
|
3141
|
+
- **misc**: Add settings (jsonb) column to `ai_models` table.
|
|
3142
|
+
|
|
3143
|
+
<br/>
|
|
3144
|
+
|
|
3145
|
+
<details>
|
|
3146
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3147
|
+
|
|
3148
|
+
#### Code refactoring
|
|
3149
|
+
|
|
3150
|
+
- **misc**: Add settings (jsonb) column to `ai_models` table, closes [#10042](https://github.com/lobehub/lobe-chat/issues/10042) ([7e1dd02](https://github.com/lobehub/lobe-chat/commit/7e1dd02))
|
|
3151
|
+
|
|
3152
|
+
</details>
|
|
3153
|
+
|
|
3154
|
+
<div align="right">
|
|
3155
|
+
|
|
3156
|
+
[](#readme-top)
|
|
3157
|
+
|
|
3158
|
+
</div>
|
|
3159
|
+
|
|
3160
|
+
## [Version 2.0.0-next.25](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.24...v2.0.0-next.25)
|
|
3161
|
+
|
|
3162
|
+
<sup>Released on **2025-11-04**</sup>
|
|
3163
|
+
|
|
3164
|
+
#### ✨ Features
|
|
3165
|
+
|
|
3166
|
+
- **misc**: Display assistant message in group.
|
|
3167
|
+
|
|
3168
|
+
<br/>
|
|
3169
|
+
|
|
3170
|
+
<details>
|
|
3171
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3172
|
+
|
|
3173
|
+
#### What's improved
|
|
3174
|
+
|
|
3175
|
+
- **misc**: Display assistant message in group, closes [#9941](https://github.com/lobehub/lobe-chat/issues/9941) ([59b6ac3](https://github.com/lobehub/lobe-chat/commit/59b6ac3))
|
|
3176
|
+
|
|
3177
|
+
</details>
|
|
3178
|
+
|
|
3179
|
+
<div align="right">
|
|
3180
|
+
|
|
3181
|
+
[](#readme-top)
|
|
3182
|
+
|
|
3183
|
+
</div>
|
|
3184
|
+
|
|
3185
|
+
## [Version 2.0.0-next.24](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.23...v2.0.0-next.24)
|
|
3186
|
+
|
|
3187
|
+
<sup>Released on **2025-11-04**</sup>
|
|
3188
|
+
|
|
3189
|
+
#### 💄 Styles
|
|
3190
|
+
|
|
3191
|
+
- **misc**: Improve lab style.
|
|
3192
|
+
|
|
3193
|
+
<br/>
|
|
3194
|
+
|
|
3195
|
+
<details>
|
|
3196
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3197
|
+
|
|
3198
|
+
#### Styles
|
|
3199
|
+
|
|
3200
|
+
- **misc**: Improve lab style, closes [#10040](https://github.com/lobehub/lobe-chat/issues/10040) ([bbf1c0b](https://github.com/lobehub/lobe-chat/commit/bbf1c0b))
|
|
3201
|
+
|
|
3202
|
+
</details>
|
|
3203
|
+
|
|
3204
|
+
<div align="right">
|
|
3205
|
+
|
|
3206
|
+
[](#readme-top)
|
|
3207
|
+
|
|
3208
|
+
</div>
|
|
3209
|
+
|
|
3210
|
+
## [Version 2.0.0-next.23](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.22...v2.0.0-next.23)
|
|
3211
|
+
|
|
3212
|
+
<sup>Released on **2025-11-04**</sup>
|
|
3213
|
+
|
|
3214
|
+
#### 🐛 Bug Fixes
|
|
3215
|
+
|
|
3216
|
+
- **misc**: Fix send message.
|
|
3217
|
+
|
|
3218
|
+
<br/>
|
|
3219
|
+
|
|
3220
|
+
<details>
|
|
3221
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3222
|
+
|
|
3223
|
+
#### What's fixed
|
|
3224
|
+
|
|
3225
|
+
- **misc**: Fix send message, closes [#10041](https://github.com/lobehub/lobe-chat/issues/10041) [#9984](https://github.com/lobehub/lobe-chat/issues/9984) ([7cca60f](https://github.com/lobehub/lobe-chat/commit/7cca60f))
|
|
3226
|
+
|
|
3227
|
+
</details>
|
|
3228
|
+
|
|
3229
|
+
<div align="right">
|
|
3230
|
+
|
|
3231
|
+
[](#readme-top)
|
|
3232
|
+
|
|
3233
|
+
</div>
|
|
3234
|
+
|
|
3235
|
+
## [Version 2.0.0-next.22](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.21...v2.0.0-next.22)
|
|
3236
|
+
|
|
3237
|
+
<sup>Released on **2025-11-04**</sup>
|
|
3238
|
+
|
|
3239
|
+
<br/>
|
|
3240
|
+
|
|
3241
|
+
<details>
|
|
3242
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3243
|
+
|
|
3244
|
+
</details>
|
|
3245
|
+
|
|
3246
|
+
<div align="right">
|
|
3247
|
+
|
|
3248
|
+
[](#readme-top)
|
|
3249
|
+
|
|
3250
|
+
</div>
|
|
3251
|
+
|
|
3252
|
+
## [Version 2.0.0-next.21](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.20...v2.0.0-next.21)
|
|
3253
|
+
|
|
3254
|
+
<sup>Released on **2025-11-04**</sup>
|
|
3255
|
+
|
|
3256
|
+
#### 🐛 Bug Fixes
|
|
3257
|
+
|
|
3258
|
+
- **misc**: Fix oidc auth timeout issue on the desktop.
|
|
3259
|
+
|
|
3260
|
+
<br/>
|
|
3261
|
+
|
|
3262
|
+
<details>
|
|
3263
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3264
|
+
|
|
3265
|
+
#### What's fixed
|
|
3266
|
+
|
|
3267
|
+
- **misc**: Fix oidc auth timeout issue on the desktop, closes [#10025](https://github.com/lobehub/lobe-chat/issues/10025) ([20666db](https://github.com/lobehub/lobe-chat/commit/20666db))
|
|
3268
|
+
|
|
3269
|
+
</details>
|
|
3270
|
+
|
|
3271
|
+
<div align="right">
|
|
3272
|
+
|
|
3273
|
+
[](#readme-top)
|
|
3274
|
+
|
|
3275
|
+
</div>
|
|
3276
|
+
|
|
3277
|
+
## [Version 2.0.0-next.20](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.19...v2.0.0-next.20)
|
|
3278
|
+
|
|
3279
|
+
<sup>Released on **2025-11-03**</sup>
|
|
3280
|
+
|
|
3281
|
+
#### 💄 Styles
|
|
3282
|
+
|
|
3283
|
+
- **misc**: Improve oidc layout style.
|
|
3284
|
+
|
|
3285
|
+
<br/>
|
|
3286
|
+
|
|
3287
|
+
<details>
|
|
3288
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3289
|
+
|
|
3290
|
+
#### Styles
|
|
3291
|
+
|
|
3292
|
+
- **misc**: Improve oidc layout style, closes [#10023](https://github.com/lobehub/lobe-chat/issues/10023) ([5008be7](https://github.com/lobehub/lobe-chat/commit/5008be7))
|
|
3293
|
+
|
|
3294
|
+
</details>
|
|
3295
|
+
|
|
3296
|
+
<div align="right">
|
|
3297
|
+
|
|
3298
|
+
[](#readme-top)
|
|
3299
|
+
|
|
3300
|
+
</div>
|
|
3301
|
+
|
|
3302
|
+
## [Version 2.0.0-next.19](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.18...v2.0.0-next.19)
|
|
3303
|
+
|
|
3304
|
+
<sup>Released on **2025-11-03**</sup>
|
|
3305
|
+
|
|
3306
|
+
#### ♻ Code Refactoring
|
|
3307
|
+
|
|
3308
|
+
- **misc**: Remove `NEXT_PUBLIC_SERVICE_MODE` env and use server by default.
|
|
3309
|
+
|
|
3310
|
+
<br/>
|
|
3311
|
+
|
|
3312
|
+
<details>
|
|
3313
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3314
|
+
|
|
3315
|
+
#### Code refactoring
|
|
3316
|
+
|
|
3317
|
+
- **misc**: Remove `NEXT_PUBLIC_SERVICE_MODE` env and use server by default, closes [#10017](https://github.com/lobehub/lobe-chat/issues/10017) ([f2ab2fc](https://github.com/lobehub/lobe-chat/commit/f2ab2fc))
|
|
3318
|
+
|
|
3319
|
+
</details>
|
|
3320
|
+
|
|
3321
|
+
<div align="right">
|
|
3322
|
+
|
|
3323
|
+
[](#readme-top)
|
|
3324
|
+
|
|
3325
|
+
</div>
|
|
3326
|
+
|
|
3327
|
+
## [Version 2.0.0-next.18](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.17...v2.0.0-next.18)
|
|
3328
|
+
|
|
3329
|
+
<sup>Released on **2025-11-03**</sup>
|
|
3330
|
+
|
|
3331
|
+
#### ♻ Code Refactoring
|
|
3332
|
+
|
|
3333
|
+
- **misc**: Refactor trpc request to use zod schema.
|
|
3334
|
+
|
|
3335
|
+
#### 💄 Styles
|
|
3336
|
+
|
|
3337
|
+
- **misc**: Improve built-in client OIDC user flow.
|
|
3338
|
+
|
|
3339
|
+
<br/>
|
|
3340
|
+
|
|
3341
|
+
<details>
|
|
3342
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3343
|
+
|
|
3344
|
+
#### Code refactoring
|
|
3345
|
+
|
|
3346
|
+
- **misc**: Refactor trpc request to use zod schema, closes [#10016](https://github.com/lobehub/lobe-chat/issues/10016) ([1a84f2c](https://github.com/lobehub/lobe-chat/commit/1a84f2c))
|
|
3347
|
+
|
|
3348
|
+
#### Styles
|
|
3349
|
+
|
|
3350
|
+
- **misc**: Improve built-in client OIDC user flow, closes [#10020](https://github.com/lobehub/lobe-chat/issues/10020) ([80202ed](https://github.com/lobehub/lobe-chat/commit/80202ed))
|
|
3351
|
+
|
|
3352
|
+
</details>
|
|
3353
|
+
|
|
3354
|
+
<div align="right">
|
|
3355
|
+
|
|
3356
|
+
[](#readme-top)
|
|
3357
|
+
|
|
3358
|
+
</div>
|
|
3359
|
+
|
|
3360
|
+
## [Version 2.0.0-next.17](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.16...v2.0.0-next.17)
|
|
3361
|
+
|
|
3362
|
+
<sup>Released on **2025-11-03**</sup>
|
|
3363
|
+
|
|
3364
|
+
#### 🐛 Bug Fixes
|
|
3365
|
+
|
|
3366
|
+
- **misc**: Fix regex ReDoS.
|
|
3367
|
+
|
|
3368
|
+
<br/>
|
|
3369
|
+
|
|
3370
|
+
<details>
|
|
3371
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3372
|
+
|
|
3373
|
+
#### What's fixed
|
|
3374
|
+
|
|
3375
|
+
- **misc**: Fix regex ReDoS, closes [#10012](https://github.com/lobehub/lobe-chat/issues/10012) ([1d8d5cd](https://github.com/lobehub/lobe-chat/commit/1d8d5cd))
|
|
3376
|
+
|
|
3377
|
+
</details>
|
|
3378
|
+
|
|
3379
|
+
<div align="right">
|
|
3380
|
+
|
|
3381
|
+
[](#readme-top)
|
|
3382
|
+
|
|
3383
|
+
</div>
|
|
3384
|
+
|
|
3385
|
+
## [Version 2.0.0-next.16](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.15...v2.0.0-next.16)
|
|
3386
|
+
|
|
3387
|
+
<sup>Released on **2025-11-03**</sup>
|
|
3388
|
+
|
|
3389
|
+
#### ♻ Code Refactoring
|
|
3390
|
+
|
|
3391
|
+
- **misc**: Remove deperated code.
|
|
3392
|
+
|
|
3393
|
+
<br/>
|
|
3394
|
+
|
|
3395
|
+
<details>
|
|
3396
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
3397
|
+
|
|
3398
|
+
#### Code refactoring
|
|
3399
|
+
|
|
3400
|
+
- **misc**: Remove deperated code, closes [#10001](https://github.com/lobehub/lobe-chat/issues/10001) ([4ee4590](https://github.com/lobehub/lobe-chat/commit/4ee4590))
|
|
3401
|
+
|
|
3402
|
+
</details>
|
|
3403
|
+
|
|
3404
|
+
<div align="right">
|
|
3405
|
+
|
|
3406
|
+
[](#readme-top)
|
|
3407
|
+
|
|
3408
|
+
</div>
|
|
3409
|
+
|
|
5
3410
|
## [Version 2.0.0-next.15](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.14...v2.0.0-next.15)
|
|
6
3411
|
|
|
7
3412
|
<sup>Released on **2025-11-03**</sup>
|