@lobehub/lobehub 2.0.0-next.17 → 2.0.0-next.171
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/desktop-feature-implementation.mdc +31 -34
- package/.cursor/rules/desktop-local-tools-implement.mdc +3 -3
- package/.cursor/rules/desktop-window-management.mdc +56 -66
- package/.cursor/rules/project-introduce.mdc +2 -2
- package/.cursor/rules/project-structure.mdc +20 -2
- package/.env.desktop +1 -2
- package/.env.example +186 -65
- package/.env.example.development +11 -10
- package/.github/workflows/claude-auto-testing.yml +73 -0
- package/.github/workflows/claude-dedupe-issues.yml +2 -0
- package/.github/workflows/claude-issue-triage.yml +17 -1
- package/.github/workflows/claude-translate-comments.yml +67 -0
- package/.github/workflows/claude-translator.yml +18 -1
- package/.github/workflows/claude.yml +13 -6
- 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/.husky/pre-commit +1 -1
- package/.nvmrc +1 -1
- package/AGENTS.md +7 -4
- package/CHANGELOG.md +3858 -0
- package/CLAUDE.md +44 -1
- package/Dockerfile +52 -58
- package/GEMINI.md +63 -0
- package/README.md +8 -8
- package/README.zh-CN.md +8 -8
- package/apps/desktop/Development.md +42 -46
- package/apps/desktop/README.md +37 -1
- package/apps/desktop/README.zh-CN.md +26 -1
- package/apps/desktop/electron.vite.config.ts +1 -0
- package/apps/desktop/package.json +26 -20
- 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 +138 -65
- package/apps/desktop/src/main/controllers/BrowserWindowsCtr.ts +62 -68
- package/apps/desktop/src/main/controllers/DevtoolsCtr.ts +4 -2
- package/apps/desktop/src/main/controllers/LocalFileCtr.ts +94 -29
- package/apps/desktop/src/main/controllers/MenuCtr.ts +10 -9
- package/apps/desktop/src/main/controllers/NetworkProxyCtr.ts +18 -19
- package/apps/desktop/src/main/controllers/NotificationCtr.ts +33 -32
- package/apps/desktop/src/main/controllers/RemoteServerConfigCtr.ts +120 -27
- package/apps/desktop/src/main/controllers/RemoteServerSyncCtr.ts +3 -2
- package/apps/desktop/src/main/controllers/ShellCommandCtr.ts +243 -0
- package/apps/desktop/src/main/controllers/ShortcutCtr.ts +6 -5
- package/apps/desktop/src/main/controllers/SystemCtr.ts +7 -37
- package/apps/desktop/src/main/controllers/SystemServerCtr.ts +38 -0
- package/apps/desktop/src/main/controllers/TrayMenuCtr.ts +23 -22
- package/apps/desktop/src/main/controllers/UpdaterCtr.ts +10 -9
- package/apps/desktop/src/main/controllers/UploadFileCtr.ts +3 -25
- package/apps/desktop/src/main/controllers/UploadFileServerCtr.ts +33 -0
- package/apps/desktop/src/main/controllers/__tests__/AuthCtr.test.ts +714 -0
- package/apps/desktop/src/main/controllers/__tests__/BrowserWindowsCtr.test.ts +50 -81
- package/apps/desktop/src/main/controllers/__tests__/DevtoolsCtr.test.ts +12 -3
- package/apps/desktop/src/main/controllers/__tests__/LocalFileCtr.test.ts +164 -1
- package/apps/desktop/src/main/controllers/__tests__/McpInstallCtr.test.ts +286 -0
- package/apps/desktop/src/main/controllers/__tests__/MenuCtr.test.ts +10 -0
- package/apps/desktop/src/main/controllers/__tests__/NetworkProxyCtr.test.ts +10 -0
- package/apps/desktop/src/main/controllers/__tests__/NotificationCtr.test.ts +355 -0
- package/apps/desktop/src/main/controllers/__tests__/RemoteServerConfigCtr.test.ts +690 -0
- package/apps/desktop/src/main/controllers/__tests__/RemoteServerSyncCtr.test.ts +373 -0
- package/apps/desktop/src/main/controllers/__tests__/ShellCommandCtr.test.ts +509 -0
- package/apps/desktop/src/main/controllers/__tests__/ShortcutCtr.test.ts +11 -0
- package/apps/desktop/src/main/controllers/__tests__/SystemCtr.test.ts +246 -0
- package/apps/desktop/src/main/controllers/__tests__/SystemServerCtr.test.ts +75 -0
- package/apps/desktop/src/main/controllers/__tests__/TrayMenuCtr.test.ts +29 -18
- package/apps/desktop/src/main/controllers/__tests__/UpdaterCtr.test.ts +13 -2
- package/apps/desktop/src/main/controllers/__tests__/UploadFileCtr.test.ts +88 -0
- package/apps/desktop/src/main/controllers/__tests__/UploadFileServerCtr.test.ts +55 -0
- package/apps/desktop/src/main/controllers/_template.ts +2 -2
- package/apps/desktop/src/main/controllers/index.ts +7 -31
- package/apps/desktop/src/main/controllers/registry.ts +52 -0
- package/apps/desktop/src/main/core/App.ts +15 -47
- package/apps/desktop/src/main/core/__tests__/App.test.ts +5 -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/IoCContainer.ts +0 -5
- 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 +106 -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/exports.d.ts +8 -0
- package/apps/desktop/src/main/exports.ts +2 -0
- package/apps/desktop/src/main/global.d.ts +3 -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 +366 -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/package.json +10 -0
- 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/services/fileSrv.ts +1 -1
- 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/ipc/__tests__/base.test.ts +91 -0
- package/apps/desktop/src/main/utils/ipc/base.ts +170 -0
- package/apps/desktop/src/main/utils/ipc/index.ts +11 -0
- package/apps/desktop/src/main/utils/ipc/utility.ts +20 -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/electronApi.ts +4 -1
- package/apps/desktop/src/preload/index.ts +2 -2
- package/apps/desktop/src/preload/invoke.test.ts +144 -0
- package/apps/desktop/src/preload/invoke.ts +3 -6
- package/apps/desktop/src/preload/routeInterceptor.test.ts +419 -0
- package/apps/desktop/src/preload/routeInterceptor.ts +45 -45
- package/apps/desktop/src/preload/streamer.test.ts +366 -0
- package/apps/desktop/tsconfig.json +5 -4
- package/apps/desktop/vitest.config.mts +1 -0
- package/changelog/v1.json +1332 -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 +178 -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/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/steps/discover/detail-pages.steps.ts +295 -0
- package/e2e/src/steps/discover/interactions.steps.ts +451 -0
- package/e2e/src/steps/hooks.ts +1 -0
- package/locales/ar/auth.json +173 -3
- package/locales/ar/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/ar/oauth.json +1 -0
- package/locales/ar/plugin.json +36 -16
- package/locales/ar/providers.json +6 -0
- package/locales/ar/setting.json +125 -1
- package/locales/ar/tool.json +28 -1
- package/locales/ar/topic.json +1 -0
- package/locales/bg-BG/auth.json +173 -3
- package/locales/bg-BG/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/bg-BG/oauth.json +1 -0
- package/locales/bg-BG/plugin.json +36 -16
- package/locales/bg-BG/providers.json +6 -0
- package/locales/bg-BG/setting.json +125 -1
- package/locales/bg-BG/tool.json +28 -1
- package/locales/bg-BG/topic.json +1 -0
- package/locales/de-DE/auth.json +173 -3
- package/locales/de-DE/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/de-DE/oauth.json +1 -0
- package/locales/de-DE/plugin.json +36 -16
- package/locales/de-DE/providers.json +6 -0
- package/locales/de-DE/setting.json +125 -1
- package/locales/de-DE/tool.json +28 -1
- package/locales/de-DE/topic.json +1 -0
- package/locales/en-US/auth.json +175 -5
- package/locales/en-US/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/en-US/oauth.json +1 -0
- package/locales/en-US/plugin.json +36 -16
- package/locales/en-US/providers.json +6 -0
- package/locales/en-US/setting.json +125 -1
- package/locales/en-US/tool.json +28 -1
- package/locales/en-US/topic.json +1 -0
- package/locales/es-ES/auth.json +173 -3
- package/locales/es-ES/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/es-ES/oauth.json +1 -0
- package/locales/es-ES/plugin.json +36 -16
- package/locales/es-ES/providers.json +6 -0
- package/locales/es-ES/setting.json +125 -1
- package/locales/es-ES/tool.json +28 -1
- package/locales/es-ES/topic.json +1 -0
- package/locales/fa-IR/auth.json +173 -3
- package/locales/fa-IR/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/fa-IR/oauth.json +1 -0
- package/locales/fa-IR/plugin.json +36 -16
- package/locales/fa-IR/providers.json +6 -0
- package/locales/fa-IR/setting.json +125 -1
- package/locales/fa-IR/tool.json +28 -1
- package/locales/fa-IR/topic.json +1 -0
- package/locales/fr-FR/auth.json +173 -3
- package/locales/fr-FR/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/fr-FR/oauth.json +1 -0
- package/locales/fr-FR/plugin.json +36 -16
- package/locales/fr-FR/providers.json +6 -0
- package/locales/fr-FR/setting.json +125 -1
- package/locales/fr-FR/tool.json +28 -1
- package/locales/fr-FR/topic.json +1 -0
- package/locales/it-IT/auth.json +173 -3
- package/locales/it-IT/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/it-IT/oauth.json +1 -0
- package/locales/it-IT/plugin.json +36 -16
- package/locales/it-IT/providers.json +6 -0
- package/locales/it-IT/setting.json +125 -1
- package/locales/it-IT/tool.json +28 -1
- package/locales/it-IT/topic.json +1 -0
- package/locales/ja-JP/auth.json +173 -3
- package/locales/ja-JP/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/ja-JP/oauth.json +1 -0
- package/locales/ja-JP/plugin.json +36 -16
- package/locales/ja-JP/providers.json +6 -0
- package/locales/ja-JP/setting.json +125 -1
- package/locales/ja-JP/tool.json +28 -1
- package/locales/ja-JP/topic.json +1 -0
- package/locales/ko-KR/auth.json +173 -3
- package/locales/ko-KR/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/ko-KR/oauth.json +1 -0
- package/locales/ko-KR/plugin.json +36 -16
- package/locales/ko-KR/providers.json +6 -0
- package/locales/ko-KR/setting.json +125 -1
- package/locales/ko-KR/tool.json +28 -1
- package/locales/ko-KR/topic.json +1 -0
- package/locales/nl-NL/auth.json +173 -3
- package/locales/nl-NL/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/nl-NL/oauth.json +1 -0
- package/locales/nl-NL/plugin.json +36 -16
- package/locales/nl-NL/providers.json +6 -0
- package/locales/nl-NL/setting.json +125 -1
- package/locales/nl-NL/tool.json +28 -1
- package/locales/nl-NL/topic.json +1 -0
- package/locales/pl-PL/auth.json +173 -3
- package/locales/pl-PL/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/pl-PL/oauth.json +1 -0
- package/locales/pl-PL/plugin.json +36 -16
- package/locales/pl-PL/providers.json +6 -0
- package/locales/pl-PL/setting.json +125 -1
- package/locales/pl-PL/tool.json +28 -1
- package/locales/pl-PL/topic.json +1 -0
- package/locales/pt-BR/auth.json +173 -3
- package/locales/pt-BR/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/pt-BR/oauth.json +1 -0
- package/locales/pt-BR/plugin.json +36 -16
- package/locales/pt-BR/providers.json +6 -0
- package/locales/pt-BR/setting.json +125 -1
- package/locales/pt-BR/tool.json +28 -1
- package/locales/pt-BR/topic.json +1 -0
- package/locales/ru-RU/auth.json +173 -3
- package/locales/ru-RU/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/ru-RU/oauth.json +1 -0
- package/locales/ru-RU/plugin.json +36 -16
- package/locales/ru-RU/providers.json +6 -0
- package/locales/ru-RU/setting.json +125 -1
- package/locales/ru-RU/tool.json +28 -1
- package/locales/ru-RU/topic.json +1 -0
- package/locales/tr-TR/auth.json +173 -3
- package/locales/tr-TR/authError.json +40 -0
- package/locales/tr-TR/chat.json +46 -4
- package/locales/tr-TR/common.json +32 -8
- package/locales/tr-TR/components.json +6 -0
- package/locales/tr-TR/discover.json +47 -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 +439 -142
- package/locales/tr-TR/oauth.json +1 -0
- package/locales/tr-TR/plugin.json +36 -16
- package/locales/tr-TR/providers.json +6 -0
- package/locales/tr-TR/setting.json +125 -1
- package/locales/tr-TR/tool.json +28 -1
- package/locales/tr-TR/topic.json +1 -0
- package/locales/vi-VN/auth.json +173 -3
- package/locales/vi-VN/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/vi-VN/oauth.json +1 -0
- package/locales/vi-VN/plugin.json +36 -16
- package/locales/vi-VN/providers.json +6 -0
- package/locales/vi-VN/setting.json +125 -1
- package/locales/vi-VN/tool.json +28 -1
- package/locales/vi-VN/topic.json +1 -0
- package/locales/zh-CN/auth.json +175 -5
- package/locales/zh-CN/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/zh-CN/oauth.json +1 -0
- package/locales/zh-CN/plugin.json +36 -16
- package/locales/zh-CN/providers.json +6 -0
- package/locales/zh-CN/setting.json +125 -1
- package/locales/zh-CN/tool.json +28 -1
- package/locales/zh-CN/topic.json +1 -0
- package/locales/zh-TW/auth.json +173 -3
- package/locales/zh-TW/authError.json +40 -0
- 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 +47 -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 +439 -142
- package/locales/zh-TW/oauth.json +1 -0
- package/locales/zh-TW/plugin.json +36 -16
- package/locales/zh-TW/providers.json +6 -0
- package/locales/zh-TW/setting.json +125 -1
- package/locales/zh-TW/tool.json +28 -1
- package/locales/zh-TW/topic.json +1 -0
- package/next.config.ts +24 -14
- package/package.json +110 -88
- 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/index.ts +1 -0
- package/packages/const/src/klavis.ts +163 -0
- 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/0057_add_topic_user_memory_extract_status.sql +1 -0
- package/packages/database/migrations/0058_add_source_into_user_plugins.sql +1 -0
- package/packages/database/migrations/0059_add_normalized_email_indexes.sql +4 -0
- package/packages/database/migrations/0060_add_user_last_active_at.sql +1 -0
- package/packages/database/migrations/0061_add_document_and_memory_index.sql +19 -0
- package/packages/database/migrations/0062_add_more_index.sql +15 -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/0057_snapshot.json +8426 -0
- package/packages/database/migrations/meta/0058_snapshot.json +8432 -0
- package/packages/database/migrations/meta/0059_snapshot.json +8474 -0
- package/packages/database/migrations/meta/0060_snapshot.json +8481 -0
- package/packages/database/migrations/meta/0061_snapshot.json +8727 -0
- package/packages/database/migrations/meta/0062_snapshot.json +8960 -0
- package/packages/database/migrations/meta/_journal.json +147 -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 +43 -43
- package/packages/database/src/core/migrations.json +248 -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 +316 -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 +1386 -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 +86 -13
- 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/plugin.ts +1 -1
- 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 +50 -14
- package/packages/database/src/models/userMemory.ts +996 -0
- package/packages/database/src/repositories/aiInfra/index.test.ts +205 -7
- package/packages/database/src/repositories/aiInfra/index.ts +30 -29
- package/packages/database/src/repositories/dataExporter/index.test.ts +1 -1
- package/packages/database/src/repositories/dataExporter/index.ts +13 -13
- 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 +21 -22
- package/packages/database/src/schemas/agent.ts +10 -6
- package/packages/database/src/schemas/aiInfra.ts +3 -2
- package/packages/database/src/schemas/apiKey.ts +17 -13
- package/packages/database/src/schemas/asyncTask.ts +16 -12
- package/packages/database/src/schemas/betterAuth.ts +120 -0
- package/packages/database/src/schemas/chatGroup.ts +5 -1
- package/packages/database/src/schemas/file.ts +107 -23
- package/packages/database/src/schemas/generation.ts +93 -75
- package/packages/database/src/schemas/index.ts +1 -1
- package/packages/database/src/schemas/message.ts +15 -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 +37 -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 +21 -7
- package/packages/database/src/schemas/user.ts +54 -22
- package/packages/database/src/schemas/userMemories.ts +39 -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/index.ts +1 -1
- package/packages/electron-client-ipc/src/ipc.test.ts +62 -0
- package/packages/electron-client-ipc/src/ipc.ts +63 -0
- package/packages/electron-client-ipc/src/streamInvoke.ts +7 -1
- package/packages/electron-client-ipc/src/types/dispatch.ts +1 -10
- 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-client-ipc/vitest.config.mts +10 -0
- package/packages/electron-server-ipc/package.json +2 -2
- package/packages/electron-server-ipc/src/ipcClient.ts +32 -33
- package/packages/electron-server-ipc/src/ipcServer.ts +16 -17
- package/packages/electron-server-ipc/src/types/index.ts +1 -5
- 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/file-loaders/src/loaders/text/index.ts +7 -7
- package/packages/file-loaders/src/types.ts +47 -47
- package/packages/memory-extract/package.json +4 -4
- package/packages/model-bank/package.json +2 -0
- package/packages/model-bank/src/aiModels/aihubmix.ts +318 -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/cerebras.ts +22 -48
- 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 +6 -0
- package/packages/model-bank/src/aiModels/infiniai.ts +66 -21
- package/packages/model-bank/src/aiModels/minimax.ts +23 -11
- package/packages/model-bank/src/aiModels/mistral.ts +2 -1
- package/packages/model-bank/src/aiModels/moonshot.ts +49 -24
- 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 +49 -4
- package/packages/model-bank/src/aiModels/openai.ts +182 -65
- 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 +211 -15
- package/packages/model-bank/src/aiModels/replicate.ts +90 -0
- package/packages/model-bank/src/aiModels/siliconcloud.ts +66 -61
- package/packages/model-bank/src/aiModels/spark.ts +17 -16
- 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 +57 -4
- package/packages/model-bank/src/aiModels/wenxin.ts +1396 -291
- package/packages/model-bank/src/aiModels/xai.ts +85 -6
- package/packages/model-bank/src/aiModels/zenmux.ts +1529 -0
- package/packages/model-bank/src/aiModels/zhipu.ts +1 -1
- package/packages/model-bank/src/const/modelProvider.ts +2 -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/docs/test-coverage.md +5 -5
- package/packages/model-runtime/package.json +6 -4
- package/packages/model-runtime/src/const/models.ts +64 -24
- package/packages/model-runtime/src/core/ModelRuntime.ts +11 -1
- package/packages/model-runtime/src/core/RouterRuntime/baseRuntimeMap.ts +2 -0
- package/packages/model-runtime/src/core/RouterRuntime/createRuntime.ts +44 -20
- 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 +53 -16
- 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 +203 -111
- 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 +30 -10
- 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/replicate/index.ts +424 -0
- 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/spark/index.test.ts +12 -11
- package/packages/model-runtime/src/providers/spark/index.ts +19 -4
- package/packages/model-runtime/src/providers/taichu/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/volcengine/index.test.ts +0 -14
- package/packages/model-runtime/src/providers/volcengine/index.ts +1 -24
- 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 +5 -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/asyncifyPolling.ts +127 -104
- package/packages/model-runtime/src/utils/errorResponse.test.ts +1 -1
- package/packages/model-runtime/src/utils/googleErrorParser.ts +5 -0
- package/packages/model-runtime/src/utils/modelParse.ts +19 -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/types.ts +2 -2
- package/packages/python-interpreter/src/worker.ts +18 -18
- package/packages/ssrf-safe-fetch/index.browser.ts +34 -0
- package/packages/ssrf-safe-fetch/index.ts +34 -7
- 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 +3 -1
- package/packages/types/src/discover/assistants.ts +16 -0
- package/packages/types/src/discover/mcp.ts +7 -0
- package/packages/types/src/discover/plugins.ts +12 -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 +29 -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 +1 -0
- package/packages/types/src/session/agentSession.ts +2 -0
- package/packages/types/src/tool/builtin.ts +21 -10
- package/packages/types/src/tool/intervention.ts +70 -3
- package/packages/types/src/tool/plugin.ts +15 -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 +28 -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/pnpm-workspace.yaml +1 -1
- package/renovate.json +40 -1
- package/scripts/checkConsoleLog.mts +148 -0
- package/scripts/i18nWorkflow/const.ts +2 -2
- package/scripts/i18nWorkflow/i18nConfig.ts +7 -0
- package/scripts/i18nWorkflow/utils.ts +1 -1
- package/scripts/migrateServerDB/errorHint.js +26 -6
- package/scripts/migrateServerDB/index.ts +15 -4
- 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 +63 -0
- package/src/app/(backend)/api/auth/resolve-username/route.ts +52 -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)/auth-error/page.tsx +59 -0
- 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 +549 -0
- package/src/app/[variants]/(auth)/signup/[[...signup]]/BetterAuthSignUpForm.tsx +230 -0
- package/src/app/[variants]/(auth)/signup/[[...signup]]/page.tsx +31 -6
- 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 +5 -12
- 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/PluginItem.tsx +164 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Capabilities/Plugins.tsx +31 -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)/Client.tsx +2 -2
- package/src/app/[variants]/(main)/discover/(list)/(home)/index.tsx +58 -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 +16 -5
- 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 +7 -3
- package/src/app/[variants]/(main)/discover/(list)/features/SortButton/index.tsx +28 -9
- 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 +1 -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 +1 -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 +1 -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/Title.tsx +22 -2
- package/src/app/[variants]/(main)/discover/features/Search.tsx +2 -2
- package/src/app/[variants]/(main)/discover/features/Title.tsx +2 -1
- 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 +5 -5
- 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 +515 -53
- package/src/app/[variants]/(main)/profile/(home)/desktop.tsx +26 -0
- package/src/app/[variants]/(main)/profile/(home)/features/SSOProvidersList/index.tsx +89 -52
- 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 +1 -1
- 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 +508 -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 +552 -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 +181 -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 +1 -1
- 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 -3
- package/src/config/featureFlags/schema.ts +0 -3
- package/src/config/klavis.ts +41 -0
- package/src/config/modelProviders/aihubmix.ts +1 -0
- package/src/config/modelProviders/cerebras.ts +3 -0
- package/src/config/modelProviders/index.ts +6 -0
- package/src/config/modelProviders/newapi.ts +1 -0
- package/src/config/modelProviders/replicate.ts +23 -0
- package/src/config/modelProviders/spark.ts +0 -3
- package/src/config/modelProviders/vertexai.ts +1 -1
- package/src/config/modelProviders/volcengine.ts +2 -1
- package/src/config/modelProviders/wenxin.ts +2 -3
- package/src/config/modelProviders/zenmux.ts +21 -0
- 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/Tools/KlavisServerItem.tsx +351 -0
- package/src/features/ChatInput/ActionBar/Tools/index.tsx +56 -4
- package/src/features/ChatInput/ActionBar/Tools/useControls.tsx +174 -6
- package/src/features/ChatInput/ActionBar/Upload/index.tsx +1 -3
- package/src/features/ChatInput/ActionBar/components/ActionDropdown.tsx +4 -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/PlanTag.tsx +4 -4
- 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/toolEngineering/index.test.ts +6 -3
- package/src/helpers/toolEngineering/index.ts +26 -6
- package/src/hooks/useAgentOwnershipCheck.ts +151 -0
- package/src/hooks/useCheckPluginsIsInstalled.ts +1 -4
- package/src/hooks/useDiscoverTab.ts +2 -2
- 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/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/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/config.ts +91 -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/klavis/index.ts +36 -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/oidc-provider/provider.ts +2 -73
- package/src/libs/redis/index.ts +5 -0
- package/src/libs/redis/manager.test.ts +107 -0
- package/src/libs/redis/manager.ts +60 -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 +158 -0
- package/src/libs/redis/upstash.ts +133 -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 +173 -4
- package/src/locales/default/authError.ts +40 -0
- 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 +48 -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 +4 -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 +126 -1
- package/src/locales/default/tool.ts +32 -5
- package/src/locales/default/topic.ts +1 -0
- package/src/proxy.ts +82 -5
- package/src/server/globalConfig/genServerAiProviderConfig.test.ts +5 -5
- package/src/server/globalConfig/genServerAiProviderConfig.ts +4 -4
- package/src/server/globalConfig/index.ts +14 -1
- 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/ElectronIPCClient/index.ts +59 -13
- 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 +4 -0
- package/src/server/routers/lambda/aiChat.ts +3 -2
- package/src/server/routers/lambda/chunk.ts +173 -41
- package/src/server/routers/lambda/document.ts +57 -0
- package/src/server/routers/lambda/file.ts +89 -2
- package/src/server/routers/lambda/image.ts +6 -6
- package/src/server/routers/lambda/index.ts +4 -0
- package/src/server/routers/lambda/klavis.ts +249 -0
- package/src/server/routers/lambda/knowledge.ts +94 -0
- package/src/server/routers/lambda/market/index.ts +126 -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 +67 -31
- package/src/server/routers/mobile/index.ts +14 -2
- package/src/server/routers/tools/index.ts +2 -0
- package/src/server/routers/tools/klavis.ts +80 -0
- 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 +473 -71
- 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 +84 -45
- package/src/server/services/mcp/index.ts +134 -74
- 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/services/user/index.ts +35 -22
- 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 +64 -19
- 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/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/__tests__/devtools.test.ts +10 -6
- package/src/services/electron/autoUpdate.ts +5 -5
- package/src/services/electron/desktopNotification.ts +10 -13
- package/src/services/electron/devtools.ts +2 -2
- package/src/services/electron/file.ts +9 -8
- package/src/services/electron/localFileService.ts +21 -16
- package/src/services/electron/remoteServer.ts +17 -9
- package/src/services/electron/settings.ts +15 -17
- package/src/services/electron/system.ts +8 -6
- package/src/services/export/index.ts +10 -2
- package/src/services/file/index.ts +72 -2
- package/src/services/import/index.test.ts +658 -0
- 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 +76 -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 +22 -21
- 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 +60 -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/aiInfra/store.ts +2 -2
- 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 +1074 -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 -353
- package/src/store/chat/slices/plugin/actions/index.ts +39 -0
- package/src/store/chat/slices/plugin/actions/internals.ts +89 -0
- package/src/store/chat/slices/plugin/actions/optimisticUpdate.ts +258 -0
- package/src/store/chat/slices/plugin/actions/pluginTypes.ts +372 -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 +8 -5
- package/src/store/discover/slices/assistant/action.ts +20 -7
- package/src/store/discover/store.ts +2 -2
- package/src/store/electron/store.ts +2 -2
- 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 +5 -2
- package/src/store/global/action.test.ts +3 -3
- package/src/store/global/actions/general.ts +8 -10
- 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 +2 -2
- package/src/store/knowledgeBase/store.ts +2 -2
- package/src/store/serverConfig/action.ts +5 -1
- package/src/store/serverConfig/index.ts +1 -1
- package/src/store/serverConfig/selectors.test.ts +2 -2
- package/src/store/serverConfig/selectors.ts +1 -0
- package/src/store/serverConfig/store.test.ts +0 -1
- package/src/store/serverConfig/store.ts +4 -2
- 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/session/store.ts +2 -2
- package/src/store/test-coverage.md +19 -19
- package/src/store/tool/initialState.ts +4 -1
- package/src/store/tool/selectors/index.ts +1 -0
- package/src/store/tool/slices/builtin/selectors.ts +25 -3
- package/src/store/tool/slices/klavisStore/action.test.ts +512 -0
- package/src/store/tool/slices/klavisStore/action.ts +375 -0
- package/src/store/tool/slices/klavisStore/index.ts +4 -0
- package/src/store/tool/slices/klavisStore/initialState.ts +25 -0
- package/src/store/tool/slices/klavisStore/selectors.test.ts +371 -0
- package/src/store/tool/slices/klavisStore/selectors.ts +123 -0
- package/src/store/tool/slices/klavisStore/types.ts +100 -0
- 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/tool/slices/plugin/selectors.ts +16 -13
- package/src/store/tool/store.ts +6 -3
- 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/selectors.ts +2 -1
- 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 +15 -1
- 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 +1 -0
- package/src/store/user/slices/settings/selectors/keyVaults.ts +0 -5
- 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 +2 -2
- 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/index.tsx +39 -44
- package/src/tools/web-browsing/Render/index.ts +13 -0
- package/src/utils/electron/desktopRemoteRPCFetch.ts +88 -0
- package/src/utils/electron/ipc.ts +12 -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/tsconfig.json +5 -0
- 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/apps/desktop/src/main/types/ipcClientEvent.ts +0 -3
- 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/electron-client-ipc/src/dispatch.ts +0 -41
- 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/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/PluginItem.tsx +0 -68
- 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/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 -739
- 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/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/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/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
|
@@ -83,21 +83,12 @@
|
|
|
83
83
|
"DeepSeek-V3-Fast": {
|
|
84
84
|
"description": "Nhà cung cấp mô hình: nền tảng sophnet. DeepSeek V3 Fast là phiên bản tốc độ cao TPS của DeepSeek V3 0324, không lượng tử hóa, có khả năng mã hóa và toán học mạnh mẽ hơn, phản hồi nhanh hơn!"
|
|
85
85
|
},
|
|
86
|
-
"DeepSeek-V3.1": {
|
|
87
|
-
"description": "DeepSeek-V3.1 - chế độ không suy nghĩ; DeepSeek-V3.1 là mô hình suy luận lai mới của DeepSeek, hỗ trợ hai chế độ suy luận là suy nghĩ và không suy nghĩ, hiệu quả suy nghĩ cao hơn so với DeepSeek-R1-0528. Qua tối ưu hậu huấn luyện, hiệu suất sử dụng công cụ Agent và các tác vụ tác nhân được cải thiện đáng kể."
|
|
88
|
-
},
|
|
89
86
|
"DeepSeek-V3.1-Fast": {
|
|
90
87
|
"description": "DeepSeek V3.1 Fast là phiên bản tốc độ cao TPS của DeepSeek V3.1. Chế độ suy nghĩ lai: thông qua thay đổi mẫu trò chuyện, một mô hình có thể đồng thời hỗ trợ cả chế độ suy nghĩ và không suy nghĩ. Gọi công cụ thông minh hơn: nhờ tối ưu hậu huấn luyện, mô hình thể hiện rõ rệt sự cải thiện trong việc sử dụng công cụ và các tác vụ đại lý."
|
|
91
88
|
},
|
|
92
89
|
"DeepSeek-V3.1-Think": {
|
|
93
90
|
"description": "DeepSeek-V3.1 - chế độ suy nghĩ; DeepSeek-V3.1 là mô hình suy luận lai mới của DeepSeek, hỗ trợ hai chế độ suy luận là suy nghĩ và không suy nghĩ, hiệu quả suy nghĩ cao hơn so với DeepSeek-R1-0528. Qua tối ưu hậu huấn luyện, hiệu suất sử dụng công cụ Agent và các tác vụ tác nhân được cải thiện đáng kể."
|
|
94
91
|
},
|
|
95
|
-
"DeepSeek-V3.2-Exp": {
|
|
96
|
-
"description": "DeepSeek V3.2 là mô hình lớn chung mới nhất của DeepSeek, hỗ trợ kiến trúc suy luận hỗn hợp và có khả năng Agent mạnh mẽ hơn."
|
|
97
|
-
},
|
|
98
|
-
"DeepSeek-V3.2-Exp-Think": {
|
|
99
|
-
"description": "Chế độ suy nghĩ của DeepSeek V3.2. Trước khi đưa ra câu trả lời cuối cùng, mô hình sẽ xuất ra một chuỗi suy nghĩ nhằm nâng cao độ chính xác của câu trả lời."
|
|
100
|
-
},
|
|
101
92
|
"Doubao-lite-128k": {
|
|
102
93
|
"description": "Doubao-lite sở hữu tốc độ phản hồi tối ưu, hiệu quả chi phí tốt hơn, cung cấp lựa chọn linh hoạt hơn cho các kịch bản khác nhau của khách hàng. Hỗ trợ suy luận và tinh chỉnh với cửa sổ ngữ cảnh 128k."
|
|
103
94
|
},
|
|
@@ -230,12 +221,18 @@
|
|
|
230
221
|
"MiniMax-M2": {
|
|
231
222
|
"description": "Được thiết kế đặc biệt cho lập trình hiệu quả và quy trình làm việc của Agent"
|
|
232
223
|
},
|
|
224
|
+
"MiniMax-M2-Stable": {
|
|
225
|
+
"description": "Được thiết kế đặc biệt cho mã hóa hiệu quả và quy trình làm việc của Agent, hỗ trợ đồng thời cao hơn, phù hợp cho mục đích thương mại."
|
|
226
|
+
},
|
|
233
227
|
"MiniMax-Text-01": {
|
|
234
228
|
"description": "Trong dòng mô hình MiniMax-01, chúng tôi đã thực hiện những đổi mới táo bạo: lần đầu tiên hiện thực hóa quy mô lớn cơ chế chú ý tuyến tính, kiến trúc Transformer truyền thống không còn là lựa chọn duy nhất. Mô hình này có số lượng tham số lên tới 4560 tỷ, trong đó kích hoạt một lần là 45,9 tỷ. Hiệu suất tổng hợp của mô hình tương đương với các mô hình hàng đầu quốc tế, đồng thời có khả năng xử lý hiệu quả ngữ cảnh dài nhất toàn cầu lên tới 4 triệu token, gấp 32 lần GPT-4o và 20 lần Claude-3.5-Sonnet."
|
|
235
229
|
},
|
|
236
230
|
"MiniMaxAI/MiniMax-M1-80k": {
|
|
237
231
|
"description": "MiniMax-M1 là mô hình suy luận chú ý hỗn hợp quy mô lớn với trọng số mã nguồn mở, sở hữu 456 tỷ 600 triệu tham số, mỗi Token có thể kích hoạt khoảng 45,9 tỷ tham số. Mô hình hỗ trợ ngữ cảnh siêu dài lên đến 1 triệu Token một cách nguyên bản, và thông qua cơ chế chú ý chớp nhoáng, trong các tác vụ sinh 100.000 Token tiết kiệm 75% lượng phép tính dấu chấm động so với DeepSeek R1. Đồng thời, MiniMax-M1 áp dụng kiến trúc MoE (chuyên gia hỗn hợp), kết hợp thuật toán CISPO và thiết kế chú ý hỗn hợp trong huấn luyện tăng cường hiệu quả, đạt hiệu suất hàng đầu trong ngành khi suy luận đầu vào dài và các kịch bản kỹ thuật phần mềm thực tế."
|
|
238
232
|
},
|
|
233
|
+
"MiniMaxAI/MiniMax-M2": {
|
|
234
|
+
"description": "MiniMax-M2 tái định nghĩa hiệu suất cho các tác nhân AI. Đây là một mô hình MoE nhỏ gọn, nhanh chóng và tiết kiệm chi phí, với tổng số 230 tỷ tham số và 10 tỷ tham số kích hoạt, được thiết kế để đạt hiệu năng hàng đầu trong các tác vụ mã hóa và tác nhân, đồng thời duy trì trí tuệ nhân tạo tổng quát mạnh mẽ. Chỉ với 10 tỷ tham số kích hoạt, MiniMax-M2 có thể mang lại hiệu suất tương đương với các mô hình quy mô lớn, khiến nó trở thành lựa chọn lý tưởng cho các ứng dụng hiệu suất cao."
|
|
235
|
+
},
|
|
239
236
|
"Moonshot-Kimi-K2-Instruct": {
|
|
240
237
|
"description": "Tổng tham số 1T, tham số kích hoạt 32B. Trong các mô hình không suy nghĩ, đạt trình độ hàng đầu về kiến thức tiên tiến, toán học và lập trình, đặc biệt phù hợp với các tác vụ đại lý chung. Được tối ưu kỹ lưỡng cho tác vụ đại lý, không chỉ trả lời câu hỏi mà còn có thể thực hiện hành động. Phù hợp nhất cho trò chuyện ứng biến, trải nghiệm đại lý chung, là mô hình phản xạ không cần suy nghĩ lâu."
|
|
241
238
|
},
|
|
@@ -305,6 +302,9 @@
|
|
|
305
302
|
"Pro/moonshotai/Kimi-K2-Instruct-0905": {
|
|
306
303
|
"description": "Kimi K2-Instruct-0905 là phiên bản mới nhất và mạnh mẽ nhất của Kimi K2. Đây là một mô hình ngôn ngữ chuyên gia hỗn hợp (MoE) hàng đầu với tổng số tham số lên đến 1 nghìn tỷ và 32 tỷ tham số kích hoạt. Các đặc điểm chính của mô hình bao gồm: tăng cường trí tuệ mã hóa tác nhân, thể hiện sự cải thiện đáng kể trong các bài kiểm tra chuẩn công khai và các nhiệm vụ mã hóa tác nhân trong thế giới thực; cải tiến trải nghiệm mã hóa giao diện người dùng, nâng cao cả về tính thẩm mỹ và tính thực tiễn trong lập trình giao diện."
|
|
307
304
|
},
|
|
305
|
+
"Pro/moonshotai/Kimi-K2-Thinking": {
|
|
306
|
+
"description": "Kimi K2 Thinking Turbo là phiên bản Turbo của dòng Kimi K2, được tối ưu hóa về tốc độ suy luận và thông lượng, đồng thời vẫn giữ được khả năng suy luận nhiều bước và gọi công cụ của K2 Thinking. Mô hình này dựa trên kiến trúc chuyên gia hỗn hợp (MoE), với tổng số tham số khoảng 1 nghìn tỷ, hỗ trợ ngữ cảnh lên đến 256K và có thể thực hiện gọi công cụ quy mô lớn một cách ổn định, phù hợp với các tình huống sản xuất yêu cầu độ trễ thấp và khả năng xử lý đồng thời cao."
|
|
307
|
+
},
|
|
308
308
|
"QwQ-32B-Preview": {
|
|
309
309
|
"description": "QwQ-32B-Preview là một mô hình xử lý ngôn ngữ tự nhiên độc đáo, có khả năng xử lý hiệu quả các nhiệm vụ tạo đối thoại phức tạp và hiểu ngữ cảnh."
|
|
310
310
|
},
|
|
@@ -717,25 +717,31 @@
|
|
|
717
717
|
"description": "Claude 3 Opus là mô hình thông minh nhất của Anthropic, dẫn đầu thị trường trong các nhiệm vụ phức tạp cao. Nó có khả năng xử lý các lời nhắc mở và các tình huống chưa từng thấy với độ trôi chảy xuất sắc và hiểu biết gần như con người."
|
|
718
718
|
},
|
|
719
719
|
"anthropic/claude-3.5-haiku": {
|
|
720
|
-
"description": "Claude 3.5 Haiku
|
|
720
|
+
"description": "Claude 3.5 Haiku có khả năng vượt trội về tốc độ, độ chính xác trong lập trình và sử dụng công cụ. Phù hợp với các tình huống yêu cầu cao về tốc độ và tương tác công cụ."
|
|
721
721
|
},
|
|
722
722
|
"anthropic/claude-3.5-sonnet": {
|
|
723
|
-
"description": "Claude 3.5 Sonnet
|
|
723
|
+
"description": "Claude 3.5 Sonnet là mô hình nhanh và hiệu quả trong dòng Sonnet, cung cấp hiệu suất tốt hơn về lập trình và suy luận, một số phiên bản sẽ dần được thay thế bởi Sonnet 3.7."
|
|
724
724
|
},
|
|
725
725
|
"anthropic/claude-3.7-sonnet": {
|
|
726
|
-
"description": "Claude 3.7 Sonnet là
|
|
726
|
+
"description": "Claude 3.7 Sonnet là phiên bản nâng cấp của dòng Sonnet, mang lại khả năng suy luận và lập trình mạnh mẽ hơn, phù hợp với các tác vụ phức tạp cấp doanh nghiệp."
|
|
727
|
+
},
|
|
728
|
+
"anthropic/claude-haiku-4.5": {
|
|
729
|
+
"description": "Claude Haiku 4.5 là mô hình tốc độ cao hiệu suất cao của Anthropic, duy trì độ chính xác cao với độ trễ cực thấp."
|
|
727
730
|
},
|
|
728
731
|
"anthropic/claude-opus-4": {
|
|
729
|
-
"description": "
|
|
732
|
+
"description": "Opus 4 là mô hình hàng đầu của Anthropic, được thiết kế cho các tác vụ phức tạp và ứng dụng cấp doanh nghiệp."
|
|
730
733
|
},
|
|
731
734
|
"anthropic/claude-opus-4.1": {
|
|
732
|
-
"description": "
|
|
735
|
+
"description": "Opus 4.1 là mô hình cao cấp của Anthropic, được tối ưu cho lập trình, suy luận phức tạp và các tác vụ liên tục."
|
|
736
|
+
},
|
|
737
|
+
"anthropic/claude-opus-4.5": {
|
|
738
|
+
"description": "Claude Opus 4.5 là mô hình hàng đầu của Anthropic, kết hợp trí tuệ vượt trội với khả năng mở rộng, phù hợp cho các nhiệm vụ phức tạp đòi hỏi phản hồi chất lượng cao và năng lực suy luận xuất sắc."
|
|
733
739
|
},
|
|
734
740
|
"anthropic/claude-sonnet-4": {
|
|
735
|
-
"description": "Claude Sonnet 4
|
|
741
|
+
"description": "Claude Sonnet 4 là phiên bản suy luận hỗn hợp của Anthropic, cung cấp khả năng kết hợp giữa tư duy và phản hồi trực tiếp."
|
|
736
742
|
},
|
|
737
743
|
"anthropic/claude-sonnet-4.5": {
|
|
738
|
-
"description": "Claude Sonnet 4.5 là mô hình
|
|
744
|
+
"description": "Claude Sonnet 4.5 là mô hình suy luận hỗn hợp mới nhất của Anthropic, được tối ưu cho suy luận phức tạp và lập trình."
|
|
739
745
|
},
|
|
740
746
|
"ascend-tribe/pangu-pro-moe": {
|
|
741
747
|
"description": "Pangu-Pro-MoE 72B-A16B là một mô hình ngôn ngữ lớn thưa thớt với 72 tỷ tham số và 16 tỷ tham số kích hoạt, dựa trên kiến trúc chuyên gia hỗn hợp theo nhóm (MoGE). Nó phân nhóm các chuyên gia trong giai đoạn lựa chọn chuyên gia và giới hạn token kích hoạt số lượng chuyên gia bằng nhau trong mỗi nhóm, từ đó đạt được cân bằng tải chuyên gia và cải thiện đáng kể hiệu quả triển khai mô hình trên nền tảng Ascend."
|
|
@@ -758,6 +764,21 @@
|
|
|
758
764
|
"baidu/ERNIE-4.5-300B-A47B": {
|
|
759
765
|
"description": "ERNIE-4.5-300B-A47B là một mô hình ngôn ngữ lớn dựa trên kiến trúc chuyên gia hỗn hợp (MoE) do công ty Baidu phát triển. Mô hình có tổng số 300 tỷ tham số, nhưng trong quá trình suy luận mỗi token chỉ kích hoạt 47 tỷ tham số, đảm bảo hiệu suất mạnh mẽ đồng thời tối ưu hóa hiệu quả tính toán. Là một trong những mô hình cốt lõi của dòng ERNIE 4.5, nó thể hiện khả năng xuất sắc trong các nhiệm vụ hiểu, tạo văn bản, suy luận và lập trình. Mô hình áp dụng phương pháp tiền huấn luyện MoE dị thể đa phương thức sáng tạo, thông qua huấn luyện kết hợp văn bản và hình ảnh, nâng cao hiệu quả tổng thể, đặc biệt nổi bật trong việc tuân thủ chỉ dẫn và ghi nhớ kiến thức thế giới."
|
|
760
766
|
},
|
|
767
|
+
"baidu/ernie-5.0-thinking-preview": {
|
|
768
|
+
"description": "ERNIE 5.0 Thinking Preview là mô hình đa phương thức thế hệ mới của Baidu, xuất sắc trong hiểu đa phương thức, tuân thủ chỉ dẫn, sáng tạo, hỏi đáp thực tế và gọi công cụ."
|
|
769
|
+
},
|
|
770
|
+
"black-forest-labs/flux-1.1-pro": {
|
|
771
|
+
"description": "FLUX 1.1 Pro - Phiên bản FLUX Pro nhanh hơn và tối ưu hơn, với chất lượng hình ảnh vượt trội và khả năng tuân thủ prompt xuất sắc."
|
|
772
|
+
},
|
|
773
|
+
"black-forest-labs/flux-dev": {
|
|
774
|
+
"description": "FLUX Dev - Phiên bản phát triển của FLUX, chỉ sử dụng cho mục đích phi thương mại."
|
|
775
|
+
},
|
|
776
|
+
"black-forest-labs/flux-pro": {
|
|
777
|
+
"description": "FLUX Pro - Phiên bản chuyên nghiệp của mô hình FLUX, tạo ra hình ảnh chất lượng cao."
|
|
778
|
+
},
|
|
779
|
+
"black-forest-labs/flux-schnell": {
|
|
780
|
+
"description": "FLUX Schnell - Mô hình tạo hình ảnh nhanh được tối ưu hóa cho tốc độ."
|
|
781
|
+
},
|
|
761
782
|
"c4ai-aya-expanse-32b": {
|
|
762
783
|
"description": "Aya Expanse là một mô hình đa ngôn ngữ hiệu suất cao 32B, được thiết kế để thách thức hiệu suất của các mô hình đơn ngôn ngữ thông qua việc tinh chỉnh theo chỉ dẫn, khai thác dữ liệu, đào tạo theo sở thích và hợp nhất mô hình. Nó hỗ trợ 23 ngôn ngữ."
|
|
763
784
|
},
|
|
@@ -818,6 +839,9 @@
|
|
|
818
839
|
"claude-opus-4-20250514": {
|
|
819
840
|
"description": "Claude Opus 4 là mô hình mạnh mẽ nhất của Anthropic được sử dụng để xử lý các nhiệm vụ phức tạp cao. Nó thể hiện xuất sắc về hiệu suất, trí tuệ, sự trôi chảy và khả năng hiểu biết."
|
|
820
841
|
},
|
|
842
|
+
"claude-opus-4-5-20251101": {
|
|
843
|
+
"description": "Claude Opus 4.5 là mô hình hàng đầu của Anthropic, kết hợp trí tuệ vượt trội với khả năng mở rộng, phù hợp cho các nhiệm vụ phức tạp đòi hỏi phản hồi chất lượng cao và năng lực suy luận xuất sắc."
|
|
844
|
+
},
|
|
821
845
|
"claude-sonnet-4-20250514": {
|
|
822
846
|
"description": "Claude Sonnet 4 có thể tạo ra phản hồi gần như tức thì hoặc suy nghĩ từng bước kéo dài, người dùng có thể thấy rõ các quá trình này."
|
|
823
847
|
},
|
|
@@ -866,6 +890,9 @@
|
|
|
866
890
|
"codex-mini-latest": {
|
|
867
891
|
"description": "codex-mini-latest là phiên bản tinh chỉnh của o4-mini, được thiết kế đặc biệt cho Codex CLI. Đối với việc sử dụng trực tiếp qua API, chúng tôi khuyến nghị bắt đầu từ gpt-4.1."
|
|
868
892
|
},
|
|
893
|
+
"cogito-2.1:671b": {
|
|
894
|
+
"description": "Cogito v2.1 671B là mô hình ngôn ngữ lớn mã nguồn mở của Mỹ có thể sử dụng thương mại miễn phí, nổi bật với hiệu suất ngang tầm các mô hình hàng đầu, hiệu quả suy luận token cao, hỗ trợ ngữ cảnh dài 128k và năng lực tổng hợp mạnh mẽ."
|
|
895
|
+
},
|
|
869
896
|
"cogview-4": {
|
|
870
897
|
"description": "CogView-4 là mô hình tạo hình ảnh văn bản mã nguồn mở đầu tiên của Zhipu hỗ trợ tạo ký tự Trung Hoa, với sự cải tiến toàn diện về hiểu ngữ nghĩa, chất lượng tạo hình ảnh, khả năng tạo ký tự tiếng Trung và tiếng Anh, hỗ trợ đầu vào song ngữ Trung-Anh với độ dài tùy ý, có thể tạo hình ảnh với độ phân giải bất kỳ trong phạm vi cho phép."
|
|
871
898
|
},
|
|
@@ -1043,12 +1070,18 @@
|
|
|
1043
1070
|
"deepseek-coder-v2:236b": {
|
|
1044
1071
|
"description": "DeepSeek Coder V2 là mô hình mã nguồn mở hỗn hợp chuyên gia, thể hiện xuất sắc trong các nhiệm vụ mã, tương đương với GPT4-Turbo."
|
|
1045
1072
|
},
|
|
1073
|
+
"deepseek-ocr": {
|
|
1074
|
+
"description": "DeepSeek-OCR là một mô hình ngôn ngữ thị giác do DeepSeek AI phát triển, tập trung vào nhận dạng ký tự quang học (OCR) và 'nén quang học theo ngữ cảnh'. Mô hình này nhằm khám phá giới hạn của việc nén thông tin ngữ cảnh từ hình ảnh, có khả năng xử lý tài liệu hiệu quả và chuyển đổi chúng thành các định dạng văn bản có cấu trúc như Markdown. Nó có thể nhận diện chính xác nội dung văn bản trong hình ảnh, đặc biệt phù hợp với các ứng dụng như số hóa tài liệu, trích xuất văn bản và xử lý có cấu trúc."
|
|
1075
|
+
},
|
|
1046
1076
|
"deepseek-r1": {
|
|
1047
1077
|
"description": "DeepSeek-R1 là một mô hình suy diễn được điều khiển bởi học tăng cường (RL), giải quyết các vấn đề về tính lặp lại và khả năng đọc hiểu trong mô hình. Trước khi áp dụng RL, DeepSeek-R1 đã giới thiệu dữ liệu khởi động lạnh, tối ưu hóa thêm hiệu suất suy diễn. Nó thể hiện hiệu suất tương đương với OpenAI-o1 trong các nhiệm vụ toán học, mã và suy diễn, và thông qua phương pháp đào tạo được thiết kế cẩn thận, nâng cao hiệu quả tổng thể."
|
|
1048
1078
|
},
|
|
1049
1079
|
"deepseek-r1-0528": {
|
|
1050
1080
|
"description": "Mô hình phiên bản đầy đủ 685 tỷ tham số, phát hành ngày 28 tháng 5 năm 2025. DeepSeek-R1 sử dụng rộng rãi kỹ thuật học tăng cường trong giai đoạn huấn luyện sau, nâng cao đáng kể khả năng suy luận của mô hình dù có rất ít dữ liệu gán nhãn. Hiệu suất cao và năng lực mạnh mẽ trong các nhiệm vụ toán học, lập trình, suy luận ngôn ngữ tự nhiên."
|
|
1051
1081
|
},
|
|
1082
|
+
"deepseek-r1-250528": {
|
|
1083
|
+
"description": "DeepSeek R1 250528, phiên bản đầy đủ của mô hình suy luận DeepSeek-R1, phù hợp với các nhiệm vụ toán học và logic phức tạp."
|
|
1084
|
+
},
|
|
1052
1085
|
"deepseek-r1-70b-fast-online": {
|
|
1053
1086
|
"description": "DeepSeek R1 70B phiên bản nhanh, hỗ trợ tìm kiếm trực tuyến theo thời gian thực, cung cấp tốc độ phản hồi nhanh hơn trong khi vẫn giữ hiệu suất của mô hình."
|
|
1054
1087
|
},
|
|
@@ -1059,31 +1092,34 @@
|
|
|
1059
1092
|
"description": "deepseek-r1-distill-llama là mô hình được chưng cất từ DeepSeek-R1 dựa trên Llama."
|
|
1060
1093
|
},
|
|
1061
1094
|
"deepseek-r1-distill-llama-70b": {
|
|
1062
|
-
"description": "DeepSeek R1
|
|
1095
|
+
"description": "DeepSeek R1 Distill Llama 70B, mô hình chưng cất kết hợp khả năng suy luận R1 với hệ sinh thái Llama."
|
|
1063
1096
|
},
|
|
1064
1097
|
"deepseek-r1-distill-llama-8b": {
|
|
1065
|
-
"description": "
|
|
1098
|
+
"description": "DeepSeek-R1-Distill-Llama-8B là mô hình ngôn ngữ lớn chưng cất dựa trên Llama-3.1-8B, sử dụng đầu ra từ DeepSeek R1."
|
|
1066
1099
|
},
|
|
1067
|
-
"deepseek-r1-distill-qianfan-
|
|
1068
|
-
"description": "
|
|
1100
|
+
"deepseek-r1-distill-qianfan-70b": {
|
|
1101
|
+
"description": "DeepSeek R1 Distill Qianfan 70B, mô hình chưng cất R1 dựa trên Qianfan-70B, hiệu quả về chi phí."
|
|
1102
|
+
},
|
|
1103
|
+
"deepseek-r1-distill-qianfan-8b": {
|
|
1104
|
+
"description": "DeepSeek R1 Distill Qianfan 8B, mô hình chưng cất R1 dựa trên Qianfan-8B, phù hợp với các ứng dụng vừa và nhỏ."
|
|
1069
1105
|
},
|
|
1070
|
-
"deepseek-r1-distill-qianfan-llama-
|
|
1071
|
-
"description": "
|
|
1106
|
+
"deepseek-r1-distill-qianfan-llama-70b": {
|
|
1107
|
+
"description": "DeepSeek R1 Distill Qianfan Llama 70B, mô hình chưng cất R1 dựa trên Llama-70B."
|
|
1072
1108
|
},
|
|
1073
1109
|
"deepseek-r1-distill-qwen": {
|
|
1074
1110
|
"description": "deepseek-r1-distill-qwen là mô hình được chưng cất từ DeepSeek-R1 dựa trên Qwen."
|
|
1075
1111
|
},
|
|
1076
1112
|
"deepseek-r1-distill-qwen-1.5b": {
|
|
1077
|
-
"description": "
|
|
1113
|
+
"description": "DeepSeek R1 Distill Qwen 1.5B, mô hình chưng cất R1 siêu nhẹ, phù hợp với môi trường tài nguyên cực thấp."
|
|
1078
1114
|
},
|
|
1079
1115
|
"deepseek-r1-distill-qwen-14b": {
|
|
1080
|
-
"description": "
|
|
1116
|
+
"description": "DeepSeek R1 Distill Qwen 14B, mô hình chưng cất R1 quy mô trung bình, phù hợp với triển khai đa kịch bản."
|
|
1081
1117
|
},
|
|
1082
1118
|
"deepseek-r1-distill-qwen-32b": {
|
|
1083
|
-
"description": "
|
|
1119
|
+
"description": "DeepSeek R1 Distill Qwen 32B, mô hình chưng cất R1 dựa trên Qwen-32B, cân bằng giữa hiệu năng và chi phí."
|
|
1084
1120
|
},
|
|
1085
1121
|
"deepseek-r1-distill-qwen-7b": {
|
|
1086
|
-
"description": "
|
|
1122
|
+
"description": "DeepSeek R1 Distill Qwen 7B, mô hình chưng cất R1 nhẹ, phù hợp với môi trường biên và triển khai nội bộ doanh nghiệp."
|
|
1087
1123
|
},
|
|
1088
1124
|
"deepseek-r1-fast-online": {
|
|
1089
1125
|
"description": "DeepSeek R1 phiên bản nhanh đầy đủ, hỗ trợ tìm kiếm trực tuyến theo thời gian thực, kết hợp sức mạnh của 671B tham số với tốc độ phản hồi nhanh hơn."
|
|
@@ -1112,12 +1148,27 @@
|
|
|
1112
1148
|
"deepseek-v3.1-terminus": {
|
|
1113
1149
|
"description": "DeepSeek-V3.1-Terminus là phiên bản tối ưu hóa cho thiết bị đầu cuối của mô hình ngôn ngữ lớn do DeepSeek phát triển, được thiết kế đặc biệt cho các thiết bị đầu cuối."
|
|
1114
1150
|
},
|
|
1151
|
+
"deepseek-v3.1-think-250821": {
|
|
1152
|
+
"description": "DeepSeek V3.1 Think 250821, mô hình tư duy sâu phiên bản Terminus, phù hợp với các tình huống suy luận hiệu năng cao."
|
|
1153
|
+
},
|
|
1115
1154
|
"deepseek-v3.1:671b": {
|
|
1116
1155
|
"description": "DeepSeek V3.1: Mô hình suy luận thế hệ tiếp theo, nâng cao khả năng suy luận phức tạp và tư duy chuỗi, phù hợp cho các tác vụ cần phân tích sâu."
|
|
1117
1156
|
},
|
|
1118
1157
|
"deepseek-v3.2-exp": {
|
|
1119
1158
|
"description": "deepseek-v3.2-exp giới thiệu cơ chế chú ý thưa thớt, nhằm nâng cao hiệu quả đào tạo và suy luận khi xử lý văn bản dài, với giá thấp hơn deepseek-v3.1."
|
|
1120
1159
|
},
|
|
1160
|
+
"deepseek-v3.2-think": {
|
|
1161
|
+
"description": "DeepSeek V3.2 Think, phiên bản đầy đủ của mô hình tư duy sâu, tăng cường khả năng suy luận chuỗi dài."
|
|
1162
|
+
},
|
|
1163
|
+
"deepseek-vl2": {
|
|
1164
|
+
"description": "DeepSeek VL2, mô hình đa phương thức, hỗ trợ hiểu hình ảnh và văn bản cùng hỏi đáp thị giác chi tiết."
|
|
1165
|
+
},
|
|
1166
|
+
"deepseek-vl2-small": {
|
|
1167
|
+
"description": "DeepSeek VL2 Small, phiên bản đa phương thức nhẹ, phù hợp với môi trường tài nguyên hạn chế và yêu cầu đồng thời cao."
|
|
1168
|
+
},
|
|
1169
|
+
"deepseek/deepseek-chat": {
|
|
1170
|
+
"description": "DeepSeek-V3 là mô hình suy luận hỗn hợp hiệu suất cao của nhóm DeepSeek, phù hợp với các tác vụ phức tạp và tích hợp công cụ."
|
|
1171
|
+
},
|
|
1121
1172
|
"deepseek/deepseek-chat-v3-0324": {
|
|
1122
1173
|
"description": "DeepSeek V3 là một mô hình hỗn hợp chuyên gia với 685B tham số, là phiên bản mới nhất trong dòng mô hình trò chuyện flagship của đội ngũ DeepSeek.\n\nNó kế thừa mô hình [DeepSeek V3](/deepseek/deepseek-chat-v3) và thể hiện xuất sắc trong nhiều nhiệm vụ."
|
|
1123
1174
|
},
|
|
@@ -1125,19 +1176,19 @@
|
|
|
1125
1176
|
"description": "DeepSeek V3 là một mô hình hỗn hợp chuyên gia với 685B tham số, là phiên bản mới nhất trong dòng mô hình trò chuyện flagship của đội ngũ DeepSeek.\n\nNó kế thừa mô hình [DeepSeek V3](/deepseek/deepseek-chat-v3) và thể hiện xuất sắc trong nhiều nhiệm vụ."
|
|
1126
1177
|
},
|
|
1127
1178
|
"deepseek/deepseek-chat-v3.1": {
|
|
1128
|
-
"description": "DeepSeek-V3.1 là mô hình suy luận hỗn hợp
|
|
1179
|
+
"description": "DeepSeek-V3.1 là mô hình suy luận hỗn hợp với ngữ cảnh dài của DeepSeek, hỗ trợ chế độ kết hợp tư duy/không tư duy và tích hợp công cụ."
|
|
1129
1180
|
},
|
|
1130
1181
|
"deepseek/deepseek-r1": {
|
|
1131
1182
|
"description": "Mô hình DeepSeek R1 đã được nâng cấp phiên bản nhỏ, hiện tại là DeepSeek-R1-0528. Trong bản cập nhật mới nhất, DeepSeek R1 đã cải thiện đáng kể độ sâu và khả năng suy luận bằng cách tận dụng tài nguyên tính toán tăng và cơ chế tối ưu thuật toán sau đào tạo. Mô hình thể hiện xuất sắc trong các bài đánh giá chuẩn về toán học, lập trình và logic chung, hiệu suất tổng thể hiện gần bằng các mô hình hàng đầu như O3 và Gemini 2.5 Pro."
|
|
1132
1183
|
},
|
|
1133
1184
|
"deepseek/deepseek-r1-0528": {
|
|
1134
|
-
"description": "DeepSeek
|
|
1185
|
+
"description": "DeepSeek R1 0528 là biến thể cập nhật của DeepSeek, tập trung vào khả năng mã nguồn mở và chiều sâu suy luận."
|
|
1135
1186
|
},
|
|
1136
1187
|
"deepseek/deepseek-r1-0528:free": {
|
|
1137
1188
|
"description": "DeepSeek-R1 đã cải thiện đáng kể khả năng suy luận của mô hình ngay cả khi có rất ít dữ liệu gán nhãn. Trước khi đưa ra câu trả lời cuối cùng, mô hình sẽ xuất ra một chuỗi suy nghĩ nhằm nâng cao độ chính xác của câu trả lời cuối."
|
|
1138
1189
|
},
|
|
1139
1190
|
"deepseek/deepseek-r1-distill-llama-70b": {
|
|
1140
|
-
"description": "DeepSeek
|
|
1191
|
+
"description": "DeepSeek R1 Distill Llama 70B là một mô hình ngôn ngữ lớn dựa trên Llama3.3 70B, được tinh chỉnh bằng đầu ra từ DeepSeek R1, mang lại hiệu suất cạnh tranh tương đương với các mô hình tiên tiến quy mô lớn."
|
|
1141
1192
|
},
|
|
1142
1193
|
"deepseek/deepseek-r1-distill-llama-8b": {
|
|
1143
1194
|
"description": "DeepSeek R1 Distill Llama 8B là một mô hình ngôn ngữ lớn đã được tinh chế dựa trên Llama-3.1-8B-Instruct, được đào tạo bằng cách sử dụng đầu ra từ DeepSeek R1."
|
|
@@ -1154,6 +1205,9 @@
|
|
|
1154
1205
|
"deepseek/deepseek-r1:free": {
|
|
1155
1206
|
"description": "DeepSeek-R1 đã nâng cao khả năng suy luận của mô hình một cách đáng kể với rất ít dữ liệu được gán nhãn. Trước khi đưa ra câu trả lời cuối cùng, mô hình sẽ xuất ra một chuỗi suy nghĩ để nâng cao độ chính xác của câu trả lời cuối cùng."
|
|
1156
1207
|
},
|
|
1208
|
+
"deepseek/deepseek-reasoner": {
|
|
1209
|
+
"description": "DeepSeek-V3 Thinking (reasoner) là mô hình suy luận thử nghiệm của DeepSeek, phù hợp với các tác vụ suy luận có độ phức tạp cao."
|
|
1210
|
+
},
|
|
1157
1211
|
"deepseek/deepseek-v3": {
|
|
1158
1212
|
"description": "Mô hình ngôn ngữ lớn đa năng nhanh với khả năng suy luận nâng cao."
|
|
1159
1213
|
},
|
|
@@ -1235,6 +1289,9 @@
|
|
|
1235
1289
|
"doubao-seed-1.6-vision": {
|
|
1236
1290
|
"description": "Doubao-Seed-1.6-vision là mô hình suy nghĩ sâu về thị giác, thể hiện khả năng hiểu và suy luận đa phương thức tổng quát mạnh mẽ hơn trong các kịch bản như giáo dục, kiểm duyệt hình ảnh, kiểm tra và an ninh, cũng như tìm kiếm và hỏi đáp AI. Hỗ trợ cửa sổ ngữ cảnh 256k, độ dài đầu ra tối đa lên đến 64k token."
|
|
1237
1291
|
},
|
|
1292
|
+
"doubao-seed-code": {
|
|
1293
|
+
"description": "Doubao-Seed-Code được tối ưu hóa sâu cho các tác vụ lập trình theo hướng Agentic, hỗ trợ đa phương tiện (văn bản/hình ảnh/video) và ngữ cảnh dài 256k, tương thích với API của Anthropic, phù hợp với các tình huống lập trình, hiểu thị giác và Agent."
|
|
1294
|
+
},
|
|
1238
1295
|
"doubao-seededit-3-0-i2i-250628": {
|
|
1239
1296
|
"description": "Mô hình tạo ảnh Doubao do đội Seed của ByteDance phát triển, hỗ trợ đầu vào văn bản và hình ảnh, cung cấp trải nghiệm tạo ảnh chất lượng cao và kiểm soát tốt. Hỗ trợ chỉnh sửa hình ảnh qua chỉ dẫn văn bản, kích thước ảnh tạo ra từ 512 đến 1536 pixel."
|
|
1240
1297
|
},
|
|
@@ -1253,83 +1310,92 @@
|
|
|
1253
1310
|
"emohaa": {
|
|
1254
1311
|
"description": "Emohaa là mô hình tâm lý, có khả năng tư vấn chuyên nghiệp, giúp người dùng hiểu các vấn đề cảm xúc."
|
|
1255
1312
|
},
|
|
1256
|
-
"ernie-
|
|
1257
|
-
"description": "
|
|
1258
|
-
},
|
|
1259
|
-
"ernie-3.5-8k": {
|
|
1260
|
-
"description": "Mô hình ngôn ngữ lớn quy mô lớn tự phát triển của Baidu, bao phủ một lượng lớn tài liệu tiếng Trung và tiếng Anh, có khả năng tổng quát mạnh mẽ, đáp ứng hầu hết các yêu cầu về đối thoại hỏi đáp, tạo nội dung, và ứng dụng plugin; hỗ trợ tự động kết nối với plugin tìm kiếm của Baidu, đảm bảo thông tin hỏi đáp kịp thời."
|
|
1261
|
-
},
|
|
1262
|
-
"ernie-3.5-8k-preview": {
|
|
1263
|
-
"description": "Mô hình ngôn ngữ lớn quy mô lớn tự phát triển của Baidu, bao phủ một lượng lớn tài liệu tiếng Trung và tiếng Anh, có khả năng tổng quát mạnh mẽ, đáp ứng hầu hết các yêu cầu về đối thoại hỏi đáp, tạo nội dung, và ứng dụng plugin; hỗ trợ tự động kết nối với plugin tìm kiếm của Baidu, đảm bảo thông tin hỏi đáp kịp thời."
|
|
1264
|
-
},
|
|
1265
|
-
"ernie-4.0-8k-latest": {
|
|
1266
|
-
"description": "Mô hình ngôn ngữ lớn siêu quy mô tự phát triển của Baidu, so với ERNIE 3.5 đã thực hiện nâng cấp toàn diện về khả năng mô hình, phù hợp rộng rãi với các tình huống nhiệm vụ phức tạp trong nhiều lĩnh vực; hỗ trợ tự động kết nối với plugin tìm kiếm của Baidu, đảm bảo thông tin hỏi đáp kịp thời."
|
|
1267
|
-
},
|
|
1268
|
-
"ernie-4.0-8k-preview": {
|
|
1269
|
-
"description": "Mô hình ngôn ngữ lớn siêu quy mô tự phát triển của Baidu, so với ERNIE 3.5 đã thực hiện nâng cấp toàn diện về khả năng mô hình, phù hợp rộng rãi với các tình huống nhiệm vụ phức tạp trong nhiều lĩnh vực; hỗ trợ tự động kết nối với plugin tìm kiếm của Baidu, đảm bảo thông tin hỏi đáp kịp thời."
|
|
1270
|
-
},
|
|
1271
|
-
"ernie-4.0-turbo-128k": {
|
|
1272
|
-
"description": "Mô hình ngôn ngữ lớn siêu quy mô tự phát triển của Baidu, có hiệu suất tổng thể xuất sắc, phù hợp rộng rãi với các tình huống nhiệm vụ phức tạp trong nhiều lĩnh vực; hỗ trợ tự động kết nối với plugin tìm kiếm của Baidu, đảm bảo thông tin hỏi đáp kịp thời. So với ERNIE 4.0, hiệu suất tốt hơn."
|
|
1273
|
-
},
|
|
1274
|
-
"ernie-4.0-turbo-8k-latest": {
|
|
1275
|
-
"description": "Mô hình ngôn ngữ lớn siêu quy mô tự phát triển của Baidu, có hiệu suất tổng thể xuất sắc, phù hợp rộng rãi với các tình huống nhiệm vụ phức tạp trong nhiều lĩnh vực; hỗ trợ tự động kết nối với plugin tìm kiếm của Baidu, đảm bảo thông tin hỏi đáp kịp thời. So với ERNIE 4.0, hiệu suất tốt hơn."
|
|
1276
|
-
},
|
|
1277
|
-
"ernie-4.0-turbo-8k-preview": {
|
|
1278
|
-
"description": "Mô hình ngôn ngữ lớn siêu quy mô tự phát triển của Baidu, có hiệu suất tổng thể xuất sắc, phù hợp rộng rãi với các tình huống nhiệm vụ phức tạp trong nhiều lĩnh vực; hỗ trợ tự động kết nối với plugin tìm kiếm của Baidu, đảm bảo thông tin hỏi đáp kịp thời. So với ERNIE 4.0, hiệu suất tốt hơn."
|
|
1313
|
+
"ernie-4.5-0.3b": {
|
|
1314
|
+
"description": "ERNIE 4.5 0.3B, mô hình mã nguồn mở nhẹ, phù hợp cho triển khai cục bộ và tùy chỉnh."
|
|
1279
1315
|
},
|
|
1280
1316
|
"ernie-4.5-21b-a3b": {
|
|
1281
|
-
"description": "ERNIE 4.5 21B A3B
|
|
1317
|
+
"description": "ERNIE 4.5 21B A3B, mô hình lớn mã nguồn mở, thể hiện hiệu suất vượt trội trong các nhiệm vụ hiểu và sinh văn bản."
|
|
1282
1318
|
},
|
|
1283
1319
|
"ernie-4.5-300b-a47b": {
|
|
1284
1320
|
"description": "ERNIE 4.5 300B A47B là mô hình chuyên gia hỗn hợp quy mô siêu lớn do Wenxin của Baidu phát triển, nổi bật với khả năng suy luận vượt trội."
|
|
1285
1321
|
},
|
|
1286
1322
|
"ernie-4.5-8k-preview": {
|
|
1287
|
-
"description": "
|
|
1323
|
+
"description": "ERNIE 4.5 8K Preview, mô hình xem trước ngữ cảnh 8K, dùng để trải nghiệm và kiểm thử khả năng của Wenxin 4.5."
|
|
1288
1324
|
},
|
|
1289
1325
|
"ernie-4.5-turbo-128k": {
|
|
1290
|
-
"description": "
|
|
1326
|
+
"description": "ERNIE 4.5 Turbo 128K, mô hình đa năng hiệu suất cao, hỗ trợ tăng cường tìm kiếm và gọi công cụ, phù hợp với hỏi đáp, lập trình, tác tử thông minh và nhiều tình huống khác."
|
|
1327
|
+
},
|
|
1328
|
+
"ernie-4.5-turbo-128k-preview": {
|
|
1329
|
+
"description": "ERNIE 4.5 Turbo 128K Preview, phiên bản xem trước với trải nghiệm tương đương bản chính thức, phù hợp cho kiểm thử và tích hợp."
|
|
1291
1330
|
},
|
|
1292
1331
|
"ernie-4.5-turbo-32k": {
|
|
1293
|
-
"description": "
|
|
1332
|
+
"description": "ERNIE 4.5 Turbo 32K, phiên bản ngữ cảnh trung bình đến dài, phù hợp với hỏi đáp, truy vấn tri thức và hội thoại nhiều lượt."
|
|
1333
|
+
},
|
|
1334
|
+
"ernie-4.5-turbo-latest": {
|
|
1335
|
+
"description": "ERNIE 4.5 Turbo Phiên bản mới nhất, tối ưu hóa toàn diện hiệu suất, phù hợp làm mô hình chính trong môi trường sản xuất."
|
|
1336
|
+
},
|
|
1337
|
+
"ernie-4.5-turbo-vl": {
|
|
1338
|
+
"description": "ERNIE 4.5 Turbo VL, mô hình đa phương thức trưởng thành, phù hợp với các nhiệm vụ hiểu và nhận diện hình ảnh-văn bản trong môi trường sản xuất."
|
|
1294
1339
|
},
|
|
1295
1340
|
"ernie-4.5-turbo-vl-32k": {
|
|
1296
|
-
"description": "
|
|
1341
|
+
"description": "ERNIE 4.5 Turbo VL 32K, phiên bản đa phương thức văn bản dài, phù hợp với hiểu kết hợp tài liệu dài và hình ảnh."
|
|
1342
|
+
},
|
|
1343
|
+
"ernie-4.5-turbo-vl-32k-preview": {
|
|
1344
|
+
"description": "ERNIE 4.5 Turbo VL 32K Preview, phiên bản xem trước đa phương thức 32K, thuận tiện để đánh giá khả năng thị giác ngữ cảnh dài."
|
|
1345
|
+
},
|
|
1346
|
+
"ernie-4.5-turbo-vl-latest": {
|
|
1347
|
+
"description": "ERNIE 4.5 Turbo VL Phiên bản mới nhất, phiên bản đa phương thức mới nhất, cung cấp khả năng hiểu và suy luận hình ảnh-văn bản tốt hơn."
|
|
1348
|
+
},
|
|
1349
|
+
"ernie-4.5-turbo-vl-preview": {
|
|
1350
|
+
"description": "ERNIE 4.5 Turbo VL Preview, mô hình đa phương thức xem trước, hỗ trợ hiểu và sinh hình ảnh-văn bản, phù hợp với hỏi đáp thị giác và trải nghiệm hiểu nội dung."
|
|
1351
|
+
},
|
|
1352
|
+
"ernie-4.5-vl-28b-a3b": {
|
|
1353
|
+
"description": "ERNIE 4.5 VL 28B A3B, mô hình đa phương thức mã nguồn mở, hỗ trợ các nhiệm vụ hiểu và suy luận hình ảnh-văn bản."
|
|
1354
|
+
},
|
|
1355
|
+
"ernie-5.0-thinking-latest": {
|
|
1356
|
+
"description": "Wenxin 5.0 Thinking là mô hình hàng đầu hỗ trợ toàn bộ các chế độ đầu vào, hỗ trợ mô hình hóa thống nhất văn bản, hình ảnh, âm thanh và video, với năng lực tổng thể được nâng cấp toàn diện, phù hợp với các tình huống hỏi đáp phức tạp, sáng tạo và ứng dụng Agent."
|
|
1357
|
+
},
|
|
1358
|
+
"ernie-5.0-thinking-preview": {
|
|
1359
|
+
"description": "Wenxin 5.0 Thinking Preview, mô hình hàng đầu toàn phương thức nguyên bản, hỗ trợ mô hình hóa thống nhất văn bản, hình ảnh, âm thanh và video, nâng cấp toàn diện năng lực tổng hợp, phù hợp với hỏi đáp phức tạp, sáng tạo và tác tử thông minh."
|
|
1297
1360
|
},
|
|
1298
1361
|
"ernie-char-8k": {
|
|
1299
|
-
"description": "
|
|
1362
|
+
"description": "ERNIE Character 8K, mô hình hội thoại nhân cách nhân vật, phù hợp với xây dựng nhân vật IP và hội thoại đồng hành dài hạn."
|
|
1300
1363
|
},
|
|
1301
1364
|
"ernie-char-fiction-8k": {
|
|
1302
|
-
"description": "
|
|
1365
|
+
"description": "ERNIE Character Fiction 8K, mô hình nhân cách dành cho sáng tác tiểu thuyết và cốt truyện, phù hợp với sinh truyện dài."
|
|
1366
|
+
},
|
|
1367
|
+
"ernie-char-fiction-8k-preview": {
|
|
1368
|
+
"description": "ERNIE Character Fiction 8K Preview, phiên bản xem trước mô hình sáng tác nhân vật và cốt truyện, dùng để trải nghiệm và kiểm thử tính năng."
|
|
1303
1369
|
},
|
|
1304
1370
|
"ernie-irag-edit": {
|
|
1305
|
-
"description": "
|
|
1371
|
+
"description": "ERNIE iRAG Edit, mô hình chỉnh sửa hình ảnh hỗ trợ xóa, vẽ lại và tạo biến thể hình ảnh."
|
|
1306
1372
|
},
|
|
1307
1373
|
"ernie-lite-8k": {
|
|
1308
|
-
"description": "ERNIE Lite
|
|
1374
|
+
"description": "ERNIE Lite 8K, mô hình đa năng nhẹ, phù hợp với các tình huống hỏi đáp hàng ngày và sinh nội dung nhạy cảm về chi phí."
|
|
1309
1375
|
},
|
|
1310
1376
|
"ernie-lite-pro-128k": {
|
|
1311
|
-
"description": "
|
|
1377
|
+
"description": "ERNIE Lite Pro 128K, mô hình nhẹ hiệu suất cao, phù hợp với các tình huống kinh doanh nhạy cảm về độ trễ và chi phí."
|
|
1312
1378
|
},
|
|
1313
1379
|
"ernie-novel-8k": {
|
|
1314
|
-
"description": "
|
|
1380
|
+
"description": "ERNIE Novel 8K, mô hình sáng tác tiểu thuyết dài và cốt truyện IP, giỏi trong kể chuyện đa nhân vật và đa tuyến."
|
|
1315
1381
|
},
|
|
1316
1382
|
"ernie-speed-128k": {
|
|
1317
|
-
"description": "
|
|
1383
|
+
"description": "ERNIE Speed 128K, mô hình lớn không tính phí nhập/xuất, phù hợp với hiểu văn bản dài và thử nghiệm quy mô lớn."
|
|
1384
|
+
},
|
|
1385
|
+
"ernie-speed-8k": {
|
|
1386
|
+
"description": "ERNIE Speed 8K, mô hình miễn phí và nhanh, phù hợp với hội thoại hàng ngày và nhiệm vụ văn bản nhẹ."
|
|
1318
1387
|
},
|
|
1319
1388
|
"ernie-speed-pro-128k": {
|
|
1320
|
-
"description": "
|
|
1389
|
+
"description": "ERNIE Speed Pro 128K, mô hình hiệu suất cao và chi phí thấp, phù hợp với dịch vụ trực tuyến quy mô lớn và ứng dụng doanh nghiệp."
|
|
1321
1390
|
},
|
|
1322
1391
|
"ernie-tiny-8k": {
|
|
1323
|
-
"description": "ERNIE Tiny
|
|
1324
|
-
},
|
|
1325
|
-
"ernie-x1-32k": {
|
|
1326
|
-
"description": "Có khả năng hiểu, lập kế hoạch, phản ánh và tiến hóa mạnh mẽ hơn. Là một mô hình tư duy sâu sắc toàn diện hơn, Wenxin X1 kết hợp độ chính xác, sự sáng tạo và văn phong, thể hiện xuất sắc trong các lĩnh vực như hỏi đáp kiến thức tiếng Trung, sáng tác văn học, viết tài liệu, đối thoại hàng ngày, suy luận logic, tính toán phức tạp và gọi công cụ."
|
|
1327
|
-
},
|
|
1328
|
-
"ernie-x1-32k-preview": {
|
|
1329
|
-
"description": "Mô hình lớn Wenxin X1 có khả năng hiểu, lập kế hoạch, phản ánh và tiến hóa mạnh mẽ hơn. Là một mô hình tư duy sâu sắc toàn diện hơn, Wenxin X1 kết hợp độ chính xác, sự sáng tạo và văn phong, đặc biệt xuất sắc trong các lĩnh vực như hỏi đáp kiến thức tiếng Trung, sáng tác văn học, viết tài liệu, đối thoại hàng ngày, suy luận logic, tính toán phức tạp và gọi công cụ."
|
|
1392
|
+
"description": "ERNIE Tiny 8K, mô hình siêu nhẹ, phù hợp với các tình huống suy luận chi phí thấp như hỏi đáp đơn giản và phân loại."
|
|
1330
1393
|
},
|
|
1331
1394
|
"ernie-x1-turbo-32k": {
|
|
1332
|
-
"description": "
|
|
1395
|
+
"description": "ERNIE X1 Turbo 32K, mô hình tư duy tốc độ cao, ngữ cảnh dài 32K, phù hợp với suy luận phức tạp và hội thoại nhiều lượt."
|
|
1396
|
+
},
|
|
1397
|
+
"ernie-x1.1-preview": {
|
|
1398
|
+
"description": "ERNIE X1.1 Preview, phiên bản xem trước mô hình tư duy ERNIE X1.1, phù hợp với kiểm thử và xác minh năng lực."
|
|
1333
1399
|
},
|
|
1334
1400
|
"fal-ai/bytedance/seedream/v4": {
|
|
1335
1401
|
"description": "Mô hình tạo ảnh Seedream 4.0 do đội Seed của ByteDance phát triển, hỗ trợ đầu vào văn bản và hình ảnh, cung cấp trải nghiệm tạo ảnh chất lượng cao và kiểm soát tốt. Tạo ảnh dựa trên từ khóa văn bản."
|
|
@@ -1389,7 +1455,7 @@
|
|
|
1389
1455
|
"description": "FLUX.1 [schnell] là mô hình ít bước tiên tiến nhất mã nguồn mở hiện nay, vượt trội so với các đối thủ cùng loại và thậm chí hơn cả các mô hình không tinh luyện mạnh như Midjourney v6.0 và DALL·E 3 (HD). Mô hình được tinh chỉnh đặc biệt để giữ lại toàn bộ đa dạng đầu ra giai đoạn tiền huấn luyện, so với các mô hình tiên tiến trên thị trường, FLUX.1 [schnell] cải thiện đáng kể chất lượng hình ảnh, tuân thủ chỉ dẫn, thay đổi kích thước/tỷ lệ, xử lý phông chữ và đa dạng đầu ra, mang đến trải nghiệm tạo hình ảnh sáng tạo phong phú hơn cho người dùng."
|
|
1390
1456
|
},
|
|
1391
1457
|
"flux.1-schnell": {
|
|
1392
|
-
"description": "
|
|
1458
|
+
"description": "FLUX.1-schnell, mô hình tạo hình ảnh hiệu suất cao, phù hợp với tạo nhanh hình ảnh đa phong cách."
|
|
1393
1459
|
},
|
|
1394
1460
|
"gemini-1.0-pro-001": {
|
|
1395
1461
|
"description": "Gemini 1.0 Pro 001 (Tuning) cung cấp hiệu suất ổn định và có thể điều chỉnh, là lựa chọn lý tưởng cho các giải pháp nhiệm vụ phức tạp."
|
|
@@ -1454,9 +1520,6 @@
|
|
|
1454
1520
|
"gemini-2.0-flash-lite-001": {
|
|
1455
1521
|
"description": "Biến thể mô hình Gemini 2.0 Flash được tối ưu hóa cho hiệu quả chi phí và độ trễ thấp."
|
|
1456
1522
|
},
|
|
1457
|
-
"gemini-2.0-flash-preview-image-generation": {
|
|
1458
|
-
"description": "Mô hình xem trước Gemini 2.0 Flash, hỗ trợ tạo hình ảnh"
|
|
1459
|
-
},
|
|
1460
1523
|
"gemini-2.5-flash": {
|
|
1461
1524
|
"description": "Gemini 2.5 Flash là mô hình có hiệu suất chi phí tốt nhất của Google, cung cấp đầy đủ các chức năng."
|
|
1462
1525
|
},
|
|
@@ -1484,9 +1547,6 @@
|
|
|
1484
1547
|
"gemini-2.5-flash-preview-04-17": {
|
|
1485
1548
|
"description": "Gemini 2.5 Flash Preview là mô hình có giá trị tốt nhất của Google, cung cấp đầy đủ các tính năng."
|
|
1486
1549
|
},
|
|
1487
|
-
"gemini-2.5-flash-preview-05-20": {
|
|
1488
|
-
"description": "Gemini 2.5 Flash Preview là mô hình có hiệu suất chi phí tốt nhất của Google, cung cấp các tính năng toàn diện."
|
|
1489
|
-
},
|
|
1490
1550
|
"gemini-2.5-flash-preview-09-2025": {
|
|
1491
1551
|
"description": "Phiên bản xem trước (25 tháng 9 năm 2025) của Gemini 2.5 Flash"
|
|
1492
1552
|
},
|
|
@@ -1502,6 +1562,15 @@
|
|
|
1502
1562
|
"gemini-2.5-pro-preview-06-05": {
|
|
1503
1563
|
"description": "Gemini 2.5 Pro Preview là mô hình tư duy tiên tiến nhất của Google, có khả năng suy luận các vấn đề phức tạp trong lĩnh vực mã nguồn, toán học và STEM, cũng như phân tích dữ liệu lớn, kho mã và tài liệu với ngữ cảnh dài."
|
|
1504
1564
|
},
|
|
1565
|
+
"gemini-3-pro-image-preview": {
|
|
1566
|
+
"description": "Gemini 3 Pro Image (Nano Banana Pro) là mô hình tạo hình ảnh của Google, đồng thời hỗ trợ hội thoại đa phương thức."
|
|
1567
|
+
},
|
|
1568
|
+
"gemini-3-pro-image-preview:image": {
|
|
1569
|
+
"description": "Gemini 3 Pro Image (Nano Banana Pro) là mô hình tạo hình ảnh của Google, đồng thời hỗ trợ hội thoại đa phương thức."
|
|
1570
|
+
},
|
|
1571
|
+
"gemini-3-pro-preview": {
|
|
1572
|
+
"description": "Gemini 3 Pro là mô hình hiểu đa phương thức hàng đầu thế giới, cũng là mô hình lập trình không gian và tác nhân mạnh mẽ nhất của Google cho đến nay, cung cấp hiệu ứng hình ảnh phong phú và khả năng tương tác sâu, tất cả dựa trên năng lực suy luận tiên tiến."
|
|
1573
|
+
},
|
|
1505
1574
|
"gemini-flash-latest": {
|
|
1506
1575
|
"description": "Phiên bản mới nhất của Gemini Flash"
|
|
1507
1576
|
},
|
|
@@ -1538,6 +1607,9 @@
|
|
|
1538
1607
|
"glm-4-0520": {
|
|
1539
1608
|
"description": "GLM-4-0520 là phiên bản mô hình mới nhất, được thiết kế cho các nhiệm vụ phức tạp và đa dạng, thể hiện xuất sắc."
|
|
1540
1609
|
},
|
|
1610
|
+
"glm-4-32b-0414": {
|
|
1611
|
+
"description": "GLM-4 32B 0414, phiên bản mô hình lớn đa năng dòng GLM, hỗ trợ sinh và hiểu văn bản đa nhiệm vụ."
|
|
1612
|
+
},
|
|
1541
1613
|
"glm-4-9b-chat": {
|
|
1542
1614
|
"description": "GLM-4-9B-Chat thể hiện hiệu suất cao trong các lĩnh vực như ngữ nghĩa, toán học, suy luận, lập trình và tri thức. Ngoài ra còn hỗ trợ duyệt web, thực thi mã, gọi công cụ tùy chỉnh và suy luận văn bản dài. Hỗ trợ 26 ngôn ngữ bao gồm tiếng Nhật, tiếng Hàn, tiếng Đức."
|
|
1543
1615
|
},
|
|
@@ -1622,8 +1694,11 @@
|
|
|
1622
1694
|
"glm-zero-preview": {
|
|
1623
1695
|
"description": "GLM-Zero-Preview có khả năng suy luận phức tạp mạnh mẽ, thể hiện xuất sắc trong các lĩnh vực suy luận logic, toán học, lập trình."
|
|
1624
1696
|
},
|
|
1697
|
+
"global.anthropic.claude-opus-4-5-20251101-v1:0": {
|
|
1698
|
+
"description": "Claude Opus 4.5 là mô hình hàng đầu của Anthropic, kết hợp trí tuệ vượt trội với khả năng mở rộng, phù hợp cho các nhiệm vụ phức tạp đòi hỏi phản hồi chất lượng cao và năng lực suy luận xuất sắc."
|
|
1699
|
+
},
|
|
1625
1700
|
"google/gemini-2.0-flash": {
|
|
1626
|
-
"description": "Gemini 2.0 Flash
|
|
1701
|
+
"description": "Gemini 2.0 Flash là mô hình suy luận hiệu suất cao của Google, phù hợp với các tác vụ đa phương thức mở rộng."
|
|
1627
1702
|
},
|
|
1628
1703
|
"google/gemini-2.0-flash-001": {
|
|
1629
1704
|
"description": "Gemini 2.0 Flash cung cấp các tính năng và cải tiến thế hệ tiếp theo, bao gồm tốc độ vượt trội, sử dụng công cụ bản địa, tạo đa phương tiện và cửa sổ ngữ cảnh 1M token."
|
|
@@ -1634,14 +1709,23 @@
|
|
|
1634
1709
|
"google/gemini-2.0-flash-lite": {
|
|
1635
1710
|
"description": "Gemini 2.0 Flash Lite cung cấp các tính năng thế hệ tiếp theo và cải tiến, bao gồm tốc độ vượt trội, sử dụng công cụ tích hợp, tạo đa phương thức và cửa sổ ngữ cảnh 1 triệu token."
|
|
1636
1711
|
},
|
|
1712
|
+
"google/gemini-2.0-flash-lite-001": {
|
|
1713
|
+
"description": "Gemini 2.0 Flash Lite là phiên bản nhẹ của dòng Gemini, mặc định không kích hoạt tư duy để cải thiện độ trễ và chi phí, nhưng có thể bật qua tham số."
|
|
1714
|
+
},
|
|
1637
1715
|
"google/gemini-2.5-flash": {
|
|
1638
|
-
"description": "Gemini 2.5 Flash là mô hình
|
|
1716
|
+
"description": "Dòng Gemini 2.5 Flash (Lite/Pro/Flash) là các mô hình suy luận từ độ trễ thấp đến hiệu suất cao của Google."
|
|
1717
|
+
},
|
|
1718
|
+
"google/gemini-2.5-flash-image": {
|
|
1719
|
+
"description": "Gemini 2.5 Flash Image (Nano Banana) là mô hình tạo hình ảnh của Google, đồng thời hỗ trợ hội thoại đa phương thức."
|
|
1720
|
+
},
|
|
1721
|
+
"google/gemini-2.5-flash-image-free": {
|
|
1722
|
+
"description": "Phiên bản miễn phí của Gemini 2.5 Flash Image, hỗ trợ tạo đa phương thức với hạn mức giới hạn."
|
|
1639
1723
|
},
|
|
1640
1724
|
"google/gemini-2.5-flash-image-preview": {
|
|
1641
1725
|
"description": "Mô hình thử nghiệm Gemini 2.5 Flash, hỗ trợ tạo hình ảnh."
|
|
1642
1726
|
},
|
|
1643
1727
|
"google/gemini-2.5-flash-lite": {
|
|
1644
|
-
"description": "Gemini 2.5 Flash
|
|
1728
|
+
"description": "Gemini 2.5 Flash Lite là phiên bản nhẹ của Gemini 2.5, được tối ưu hóa về độ trễ và chi phí, phù hợp với các tình huống yêu cầu thông lượng cao."
|
|
1645
1729
|
},
|
|
1646
1730
|
"google/gemini-2.5-flash-preview": {
|
|
1647
1731
|
"description": "Gemini 2.5 Flash là mô hình chủ lực tiên tiến nhất của Google, được thiết kế cho suy luận nâng cao, lập trình, toán học và các nhiệm vụ khoa học. Nó bao gồm khả năng 'suy nghĩ' tích hợp, cho phép nó cung cấp phản hồi với độ chính xác cao hơn và xử lý ngữ cảnh chi tiết hơn.\n\nLưu ý: Mô hình này có hai biến thể: suy nghĩ và không suy nghĩ. Giá đầu ra có sự khác biệt đáng kể tùy thuộc vào việc khả năng suy nghĩ có được kích hoạt hay không. Nếu bạn chọn biến thể tiêu chuẩn (không có hậu tố ':thinking'), mô hình sẽ rõ ràng tránh việc tạo ra các token suy nghĩ.\n\nĐể tận dụng khả năng suy nghĩ và nhận các token suy nghĩ, bạn phải chọn biến thể ':thinking', điều này sẽ tạo ra giá đầu ra suy nghĩ cao hơn.\n\nNgoài ra, Gemini 2.5 Flash có thể được cấu hình thông qua tham số 'số token tối đa cho suy luận', như đã mô tả trong tài liệu (https://openrouter.ai/docs/use-cases/reasoning-tokens#max-tokens-for-reasoning)."
|
|
@@ -1650,11 +1734,26 @@
|
|
|
1650
1734
|
"description": "Gemini 2.5 Flash là mô hình chủ lực tiên tiến nhất của Google, được thiết kế cho suy luận nâng cao, lập trình, toán học và các nhiệm vụ khoa học. Nó bao gồm khả năng 'suy nghĩ' tích hợp, cho phép nó cung cấp phản hồi với độ chính xác cao hơn và xử lý ngữ cảnh chi tiết hơn.\n\nLưu ý: Mô hình này có hai biến thể: suy nghĩ và không suy nghĩ. Giá đầu ra có sự khác biệt đáng kể tùy thuộc vào việc khả năng suy nghĩ có được kích hoạt hay không. Nếu bạn chọn biến thể tiêu chuẩn (không có hậu tố ':thinking'), mô hình sẽ rõ ràng tránh việc tạo ra các token suy nghĩ.\n\nĐể tận dụng khả năng suy nghĩ và nhận các token suy nghĩ, bạn phải chọn biến thể ':thinking', điều này sẽ tạo ra giá đầu ra suy nghĩ cao hơn.\n\nNgoài ra, Gemini 2.5 Flash có thể được cấu hình thông qua tham số 'số token tối đa cho suy luận', như đã mô tả trong tài liệu (https://openrouter.ai/docs/use-cases/reasoning-tokens#max-tokens-for-reasoning)."
|
|
1651
1735
|
},
|
|
1652
1736
|
"google/gemini-2.5-pro": {
|
|
1653
|
-
"description": "Gemini 2.5 Pro là mô hình
|
|
1737
|
+
"description": "Gemini 2.5 Pro là mô hình suy luận hàng đầu của Google, hỗ trợ ngữ cảnh dài và các tác vụ phức tạp."
|
|
1738
|
+
},
|
|
1739
|
+
"google/gemini-2.5-pro-free": {
|
|
1740
|
+
"description": "Phiên bản miễn phí của Gemini 2.5 Pro, hỗ trợ ngữ cảnh dài đa phương thức với hạn mức giới hạn, phù hợp để thử nghiệm và quy trình nhẹ."
|
|
1654
1741
|
},
|
|
1655
1742
|
"google/gemini-2.5-pro-preview": {
|
|
1656
1743
|
"description": "Gemini 2.5 Pro Preview là mô hình tư duy tiên tiến nhất của Google, có khả năng suy luận các vấn đề phức tạp trong lĩnh vực mã hóa, toán học và STEM, cũng như phân tích các bộ dữ liệu lớn, kho mã và tài liệu bằng ngữ cảnh dài."
|
|
1657
1744
|
},
|
|
1745
|
+
"google/gemini-3-pro-image-preview": {
|
|
1746
|
+
"description": "Gemini 3 Pro Image (Nano Banana Pro) là mô hình tạo hình ảnh của Google, đồng thời hỗ trợ hội thoại đa phương thức."
|
|
1747
|
+
},
|
|
1748
|
+
"google/gemini-3-pro-image-preview-free": {
|
|
1749
|
+
"description": "Phiên bản miễn phí của Gemini 3 Pro Image, hỗ trợ tạo đa phương thức với hạn mức giới hạn."
|
|
1750
|
+
},
|
|
1751
|
+
"google/gemini-3-pro-preview": {
|
|
1752
|
+
"description": "Gemini 3 Pro là mô hình suy luận đa phương thức thế hệ tiếp theo của dòng Gemini, có thể hiểu văn bản, âm thanh, hình ảnh, video và xử lý các tác vụ phức tạp cùng kho mã lớn."
|
|
1753
|
+
},
|
|
1754
|
+
"google/gemini-3-pro-preview-free": {
|
|
1755
|
+
"description": "Phiên bản xem trước miễn phí của Gemini 3 Pro, có khả năng hiểu và suy luận đa phương thức như bản tiêu chuẩn, nhưng bị giới hạn bởi hạn mức và tốc độ, phù hợp để trải nghiệm và sử dụng không thường xuyên."
|
|
1756
|
+
},
|
|
1658
1757
|
"google/gemini-embedding-001": {
|
|
1659
1758
|
"description": "Mô hình nhúng tiên tiến, thể hiện hiệu suất xuất sắc trong các nhiệm vụ tiếng Anh, đa ngôn ngữ và mã hóa."
|
|
1660
1759
|
},
|
|
@@ -1826,6 +1925,18 @@
|
|
|
1826
1925
|
"gpt-5-pro": {
|
|
1827
1926
|
"description": "GPT-5 pro sử dụng nhiều tài nguyên tính toán hơn để suy nghĩ sâu sắc hơn và liên tục cung cấp các câu trả lời tốt hơn."
|
|
1828
1927
|
},
|
|
1928
|
+
"gpt-5.1": {
|
|
1929
|
+
"description": "GPT-5.1 — Mô hình hàng đầu được tối ưu hóa cho các tác vụ lập trình và agent, hỗ trợ cường độ suy luận có thể cấu hình và ngữ cảnh dài hơn."
|
|
1930
|
+
},
|
|
1931
|
+
"gpt-5.1-chat-latest": {
|
|
1932
|
+
"description": "GPT-5.1 Chat: Biến thể GPT-5.1 dành cho ChatGPT, phù hợp với các tình huống trò chuyện."
|
|
1933
|
+
},
|
|
1934
|
+
"gpt-5.1-codex": {
|
|
1935
|
+
"description": "GPT-5.1 Codex: Phiên bản GPT-5.1 được tối ưu hóa cho các tác vụ lập trình mang tính agent, có thể sử dụng trong Responses API cho các quy trình làm việc mã hóa/đại lý phức tạp hơn."
|
|
1936
|
+
},
|
|
1937
|
+
"gpt-5.1-codex-mini": {
|
|
1938
|
+
"description": "GPT-5.1 Codex mini: Biến thể Codex nhỏ gọn hơn và tiết kiệm chi phí hơn, được tối ưu hóa cho các tác vụ lập trình mang tính agent."
|
|
1939
|
+
},
|
|
1829
1940
|
"gpt-audio": {
|
|
1830
1941
|
"description": "GPT Audio là mô hình trò chuyện chung hỗ trợ đầu vào và đầu ra âm thanh, có thể sử dụng âm thanh I/O trong API Chat Completions."
|
|
1831
1942
|
},
|
|
@@ -1868,6 +1979,12 @@
|
|
|
1868
1979
|
"grok-4-0709": {
|
|
1869
1980
|
"description": "Grok 4 của xAI, có khả năng suy luận mạnh mẽ."
|
|
1870
1981
|
},
|
|
1982
|
+
"grok-4-1-fast-non-reasoning": {
|
|
1983
|
+
"description": "Mô hình đa phương thức tiên tiến, được tối ưu hóa đặc biệt để gọi công cụ đại diện hiệu suất cao."
|
|
1984
|
+
},
|
|
1985
|
+
"grok-4-1-fast-reasoning": {
|
|
1986
|
+
"description": "Mô hình đa phương thức tiên tiến, được tối ưu hóa đặc biệt để gọi công cụ đại diện hiệu suất cao."
|
|
1987
|
+
},
|
|
1871
1988
|
"grok-4-fast-non-reasoning": {
|
|
1872
1989
|
"description": "Chúng tôi rất vui mừng giới thiệu Grok 4 Fast, bước tiến mới nhất của chúng tôi trong các mô hình suy luận hiệu quả về chi phí."
|
|
1873
1990
|
},
|
|
@@ -2001,32 +2118,47 @@
|
|
|
2001
2118
|
"description": "Dòng mô hình Imagen thế hệ thứ tư chuyển văn bản thành hình ảnh"
|
|
2002
2119
|
},
|
|
2003
2120
|
"imagen-4.0-generate-preview-06-06": {
|
|
2004
|
-
"description": "Dòng mô hình
|
|
2121
|
+
"description": "Dòng mô hình tạo hình ảnh từ văn bản thế hệ thứ tư của Imagen"
|
|
2005
2122
|
},
|
|
2006
2123
|
"imagen-4.0-ultra-generate-001": {
|
|
2007
2124
|
"description": "Imagen thế hệ thứ 4, dòng mô hình chuyển văn bản sang hình ảnh — phiên bản Ultra"
|
|
2008
2125
|
},
|
|
2009
2126
|
"imagen-4.0-ultra-generate-preview-06-06": {
|
|
2010
|
-
"description": "Phiên bản Ultra của dòng mô hình
|
|
2127
|
+
"description": "Phiên bản Ultra của dòng mô hình tạo hình ảnh từ văn bản thế hệ thứ tư của Imagen"
|
|
2011
2128
|
},
|
|
2012
2129
|
"inception/mercury-coder-small": {
|
|
2013
2130
|
"description": "Mercury Coder Small là lựa chọn lý tưởng cho các nhiệm vụ tạo mã, gỡ lỗi và tái cấu trúc với độ trễ tối thiểu."
|
|
2014
2131
|
},
|
|
2015
|
-
"inclusionAI/Ling-1T": {
|
|
2016
|
-
"description": "Ling-1T là mô hình non-thinking hàng đầu đầu tiên trong dòng sản phẩm \"Linh 2.0\", sở hữu tổng cộng 1 nghìn tỷ tham số và khoảng 50 tỷ tham số hoạt động cho mỗi token. Được xây dựng trên kiến trúc Linh 2.0, Ling-1T hướng đến việc vượt qua giới hạn của suy luận hiệu quả và nhận thức có thể mở rộng. Ling-1T-base được huấn luyện trên hơn 20 nghìn tỷ token chất lượng cao, đòi hỏi suy luận chuyên sâu."
|
|
2017
|
-
},
|
|
2018
2132
|
"inclusionAI/Ling-flash-2.0": {
|
|
2019
2133
|
"description": "Ling-flash-2.0 là mô hình thứ ba trong dòng kiến trúc Ling 2.0 do đội ngũ Bailing của Ant Group phát hành. Đây là mô hình chuyên gia hỗn hợp (MoE) với tổng số tham số lên đến 100 tỷ, nhưng mỗi token chỉ kích hoạt 6.1 tỷ tham số (không bao gồm embedding là 4.8 tỷ). Là mô hình cấu hình nhẹ, Ling-flash-2.0 thể hiện hiệu năng ngang hoặc vượt trội so với các mô hình dày đặc (Dense) 40 tỷ tham số và các mô hình MoE quy mô lớn hơn trong nhiều bài đánh giá uy tín. Mô hình này nhằm khám phá con đường hiệu quả trong bối cảnh quan niệm “mô hình lớn đồng nghĩa với tham số lớn” thông qua thiết kế kiến trúc và chiến lược huấn luyện tối ưu."
|
|
2020
2134
|
},
|
|
2021
2135
|
"inclusionAI/Ling-mini-2.0": {
|
|
2022
2136
|
"description": "Ling-mini-2.0 là mô hình ngôn ngữ lớn hiệu năng cao kích thước nhỏ dựa trên kiến trúc MoE. Nó có tổng số 16 tỷ tham số, nhưng mỗi token chỉ kích hoạt 1.4 tỷ tham số (không bao gồm embedding là 789 triệu), từ đó đạt tốc độ sinh nhanh vượt trội. Nhờ thiết kế MoE hiệu quả và dữ liệu huấn luyện quy mô lớn, chất lượng cao, mặc dù tham số kích hoạt chỉ 1.4 tỷ, Ling-mini-2.0 vẫn thể hiện hiệu năng hàng đầu trong các tác vụ hạ nguồn, có thể so sánh với các mô hình dense dưới 10 tỷ tham số và các mô hình MoE quy mô lớn hơn."
|
|
2023
2137
|
},
|
|
2024
|
-
"inclusionAI/Ring-1T": {
|
|
2025
|
-
"description": "Ring-1T là mô hình tư duy mã nguồn mở quy mô nghìn tỷ tham số do nhóm Bailing phát triển. Dựa trên kiến trúc Linh 2.0 và mô hình nền tảng Ling-1T-base, mô hình này có tổng cộng 1 nghìn tỷ tham số và 50 tỷ tham số hoạt động, hỗ trợ cửa sổ ngữ cảnh lên đến 128K. Mô hình được tối ưu hóa thông qua học tăng cường với phần thưởng có thể xác minh ở quy mô lớn."
|
|
2026
|
-
},
|
|
2027
2138
|
"inclusionAI/Ring-flash-2.0": {
|
|
2028
2139
|
"description": "Ring-flash-2.0 là mô hình tư duy hiệu năng cao được tối ưu sâu dựa trên Ling-flash-2.0-base. Nó sử dụng kiến trúc chuyên gia hỗn hợp (MoE) với tổng số 100 tỷ tham số, nhưng mỗi lần suy luận chỉ kích hoạt 6.1 tỷ tham số. Mô hình này áp dụng thuật toán độc quyền icepop, giải quyết vấn đề không ổn định trong huấn luyện tăng cường (RL) của các mô hình MoE lớn, giúp năng lực suy luận phức tạp được cải thiện liên tục trong quá trình huấn luyện dài hạn. Ring-flash-2.0 đạt bước đột phá đáng kể trong các bài kiểm tra chuẩn khó như thi toán, tạo mã và suy luận logic, hiệu năng không chỉ vượt các mô hình dense hàng đầu dưới 40 tỷ tham số mà còn có thể sánh ngang các mô hình MoE mã nguồn mở quy mô lớn và các mô hình tư duy hiệu năng cao đóng nguồn. Mặc dù tập trung vào suy luận phức tạp, mô hình cũng thể hiện tốt trong các tác vụ sáng tạo viết lách. Ngoài ra, nhờ thiết kế kiến trúc hiệu quả, Ring-flash-2.0 vừa cung cấp hiệu năng mạnh mẽ vừa đạt tốc độ suy luận cao, giảm đáng kể chi phí triển khai mô hình tư duy trong các kịch bản tải cao."
|
|
2029
2140
|
},
|
|
2141
|
+
"inclusionai/ling-1t": {
|
|
2142
|
+
"description": "Ling-1T là mô hình MoE 1T của inclusionAI, được tối ưu cho các tác vụ suy luận cường độ cao và ngữ cảnh quy mô lớn."
|
|
2143
|
+
},
|
|
2144
|
+
"inclusionai/ling-flash-2.0": {
|
|
2145
|
+
"description": "Ling-flash-2.0 là mô hình MoE của inclusionAI, được tối ưu về hiệu suất và khả năng suy luận, phù hợp với các tác vụ trung và lớn."
|
|
2146
|
+
},
|
|
2147
|
+
"inclusionai/ling-mini-2.0": {
|
|
2148
|
+
"description": "Ling-mini-2.0 là mô hình MoE nhẹ của inclusionAI, giảm đáng kể chi phí trong khi vẫn duy trì khả năng suy luận."
|
|
2149
|
+
},
|
|
2150
|
+
"inclusionai/ming-flash-omini-preview": {
|
|
2151
|
+
"description": "Ming-flash-omni Preview là mô hình đa phương thức của inclusionAI, hỗ trợ đầu vào giọng nói, hình ảnh và video, được tối ưu hóa cho khả năng hiển thị hình ảnh và nhận dạng giọng nói."
|
|
2152
|
+
},
|
|
2153
|
+
"inclusionai/ring-1t": {
|
|
2154
|
+
"description": "Ring-1T là mô hình tư duy MoE với hàng nghìn tỷ tham số của inclusionAI, phù hợp với các tác vụ suy luận quy mô lớn và nghiên cứu."
|
|
2155
|
+
},
|
|
2156
|
+
"inclusionai/ring-flash-2.0": {
|
|
2157
|
+
"description": "Ring-flash-2.0 là biến thể Ring của inclusionAI dành cho các tình huống yêu cầu thông lượng cao, nhấn mạnh vào tốc độ và hiệu quả chi phí."
|
|
2158
|
+
},
|
|
2159
|
+
"inclusionai/ring-mini-2.0": {
|
|
2160
|
+
"description": "Ring-mini-2.0 là phiên bản MoE nhẹ và thông lượng cao của inclusionAI, chủ yếu dùng trong các tình huống đồng thời."
|
|
2161
|
+
},
|
|
2030
2162
|
"internlm/internlm2_5-7b-chat": {
|
|
2031
2163
|
"description": "InternLM2.5 cung cấp giải pháp đối thoại thông minh cho nhiều tình huống."
|
|
2032
2164
|
},
|
|
@@ -2036,14 +2168,26 @@
|
|
|
2036
2168
|
"internlm3-latest": {
|
|
2037
2169
|
"description": "Dòng mô hình mới nhất của chúng tôi, có hiệu suất suy luận xuất sắc, dẫn đầu trong số các mô hình mã nguồn mở cùng cấp. Mặc định chỉ đến mô hình InternLM3 mới nhất mà chúng tôi đã phát hành."
|
|
2038
2170
|
},
|
|
2171
|
+
"internvl2.5-38b-mpo": {
|
|
2172
|
+
"description": "InternVL2.5 38B MPO, mô hình tiền huấn luyện đa phương thức, hỗ trợ các nhiệm vụ suy luận hình ảnh-văn bản phức tạp."
|
|
2173
|
+
},
|
|
2039
2174
|
"internvl2.5-latest": {
|
|
2040
2175
|
"description": "Phiên bản InternVL2.5 mà chúng tôi vẫn đang duy trì, có hiệu suất xuất sắc và ổn định. Mặc định chỉ đến mô hình InternVL2.5 mới nhất của chúng tôi, hiện tại chỉ đến internvl2.5-78b."
|
|
2041
2176
|
},
|
|
2177
|
+
"internvl3-14b": {
|
|
2178
|
+
"description": "InternVL3 14B, mô hình đa phương thức quy mô trung bình, cân bằng giữa hiệu suất và chi phí."
|
|
2179
|
+
},
|
|
2180
|
+
"internvl3-1b": {
|
|
2181
|
+
"description": "InternVL3 1B, mô hình đa phương thức nhẹ, phù hợp với triển khai trong môi trường tài nguyên hạn chế."
|
|
2182
|
+
},
|
|
2183
|
+
"internvl3-38b": {
|
|
2184
|
+
"description": "InternVL3 38B, mô hình đa phương thức mã nguồn mở quy mô lớn, phù hợp với các nhiệm vụ hiểu hình ảnh-văn bản độ chính xác cao."
|
|
2185
|
+
},
|
|
2042
2186
|
"internvl3-latest": {
|
|
2043
2187
|
"description": "Chúng tôi vừa phát hành mô hình lớn đa phương thức mới nhất, có khả năng hiểu hình ảnh và văn bản mạnh mẽ hơn, khả năng hiểu hình ảnh theo chuỗi thời gian dài, hiệu suất tương đương với các mô hình đóng nguồn hàng đầu. Mặc định chỉ đến mô hình InternVL mới nhất của chúng tôi, hiện tại chỉ đến internvl3-78b."
|
|
2044
2188
|
},
|
|
2045
2189
|
"irag-1.0": {
|
|
2046
|
-
"description": "iRAG
|
|
2190
|
+
"description": "ERNIE iRAG, mô hình sinh tăng cường truy xuất hình ảnh, hỗ trợ tìm kiếm bằng hình ảnh, truy xuất hình ảnh-văn bản và sinh nội dung."
|
|
2047
2191
|
},
|
|
2048
2192
|
"jamba-large": {
|
|
2049
2193
|
"description": "Mô hình mạnh mẽ và tiên tiến nhất của chúng tôi, được thiết kế đặc biệt để xử lý các nhiệm vụ phức tạp cấp doanh nghiệp, với hiệu suất xuất sắc."
|
|
@@ -2064,7 +2208,13 @@
|
|
|
2064
2208
|
"description": "Mô hình kimi-k2-0905-preview có độ dài ngữ cảnh 256k, sở hữu năng lực Agentic Coding mạnh mẽ hơn, mã front-end đẹp mắt và thực dụng hơn, cùng khả năng hiểu ngữ cảnh tốt hơn."
|
|
2065
2209
|
},
|
|
2066
2210
|
"kimi-k2-instruct": {
|
|
2067
|
-
"description": "Kimi K2 Instruct
|
|
2211
|
+
"description": "Kimi K2 Instruct, mô hình suy luận chính thức của Kimi, hỗ trợ ngữ cảnh dài, mã nguồn, hỏi đáp và nhiều tình huống khác."
|
|
2212
|
+
},
|
|
2213
|
+
"kimi-k2-thinking": {
|
|
2214
|
+
"description": "Mô hình kimi-k2-thinking do Moonshot AI phát triển, là một mô hình tư duy với khả năng đại lý tổng quát và suy luận mạnh mẽ. Nó nổi bật trong việc suy luận sâu và có thể sử dụng công cụ nhiều bước để hỗ trợ giải quyết các vấn đề phức tạp."
|
|
2215
|
+
},
|
|
2216
|
+
"kimi-k2-thinking-turbo": {
|
|
2217
|
+
"description": "Phiên bản tốc độ cao của mô hình tư duy dài K2, hỗ trợ ngữ cảnh 256k, giỏi suy luận sâu, tốc độ đầu ra đạt 60-100 tokens mỗi giây."
|
|
2068
2218
|
},
|
|
2069
2219
|
"kimi-k2-turbo-preview": {
|
|
2070
2220
|
"description": "kimi-k2 là một mô hình nền tảng kiến trúc MoE với khả năng xử lý mã và Agent rất mạnh, tổng số tham số 1T, tham số kích hoạt 32B. Trong các bài kiểm tra chuẩn về hiệu năng ở các hạng mục chính như suy luận kiến thức tổng quát, lập trình, toán học và Agent, mô hình K2 cho hiệu năng vượt trội so với các mô hình mã nguồn mở phổ biến khác."
|
|
@@ -2075,8 +2225,8 @@
|
|
|
2075
2225
|
"kimi-latest": {
|
|
2076
2226
|
"description": "Sản phẩm trợ lý thông minh Kimi sử dụng mô hình lớn Kimi mới nhất, có thể chứa các tính năng chưa ổn định. Hỗ trợ hiểu hình ảnh, đồng thời tự động chọn mô hình 8k/32k/128k làm mô hình tính phí dựa trên độ dài ngữ cảnh yêu cầu."
|
|
2077
2227
|
},
|
|
2078
|
-
"
|
|
2079
|
-
"description": "
|
|
2228
|
+
"kuaishou/kat-coder-pro-v1": {
|
|
2229
|
+
"description": "KAT-Coder-Pro-V1 (miễn phí trong thời gian giới hạn) tập trung vào hiểu mã và lập trình tự động, dùng cho các tác vụ lập trình hiệu quả."
|
|
2080
2230
|
},
|
|
2081
2231
|
"learnlm-1.5-pro-experimental": {
|
|
2082
2232
|
"description": "LearnLM là một mô hình ngôn ngữ thử nghiệm, chuyên biệt cho các nhiệm vụ, được đào tạo để tuân theo các nguyên tắc khoa học học tập, có thể tuân theo các chỉ dẫn hệ thống trong các tình huống giảng dạy và học tập, đóng vai trò như một người hướng dẫn chuyên gia."
|
|
@@ -2120,9 +2270,6 @@
|
|
|
2120
2270
|
"llama-3.3-instruct": {
|
|
2121
2271
|
"description": "Mô hình Llama 3.3 được tối ưu hóa cho các tình huống đối thoại, và đã vượt qua nhiều mô hình trò chuyện nguồn mở hiện có trong các bài kiểm tra chuẩn ngành phổ biến."
|
|
2122
2272
|
},
|
|
2123
|
-
"llama-4-scout-17b-16e-instruct": {
|
|
2124
|
-
"description": "Llama 4 Scout: Mô hình hiệu suất cao thuộc dòng Llama, lý tưởng cho các tình huống yêu cầu thông lượng cao và độ trễ thấp."
|
|
2125
|
-
},
|
|
2126
2273
|
"llama3-70b-8192": {
|
|
2127
2274
|
"description": "Meta Llama 3 70B cung cấp khả năng xử lý phức tạp vô song, được thiết kế riêng cho các dự án yêu cầu cao."
|
|
2128
2275
|
},
|
|
@@ -2174,6 +2321,9 @@
|
|
|
2174
2321
|
"megrez-3b-instruct": {
|
|
2175
2322
|
"description": "Megrez 3B Instruct là mô hình hiệu quả với số lượng tham số nhỏ do Wuwen Xinqiong phát triển."
|
|
2176
2323
|
},
|
|
2324
|
+
"meituan/longcat-flash-chat": {
|
|
2325
|
+
"description": "Longcat Flash Chat là mô hình nền không tư duy do Meituan mã nguồn mở, được tối ưu hóa cho tương tác hội thoại và nhiệm vụ của tác nhân, nổi bật trong việc gọi công cụ và các tình huống tương tác nhiều vòng phức tạp."
|
|
2326
|
+
},
|
|
2177
2327
|
"meta-llama-3-70b-instruct": {
|
|
2178
2328
|
"description": "Mô hình 70 tỷ tham số mạnh mẽ, xuất sắc trong lý luận, lập trình và các ứng dụng ngôn ngữ rộng lớn."
|
|
2179
2329
|
},
|
|
@@ -2405,6 +2555,12 @@
|
|
|
2405
2555
|
"minimax-m2": {
|
|
2406
2556
|
"description": "MiniMax M2 là một mô hình ngôn ngữ lớn hiệu quả, được xây dựng dành riêng cho quy trình làm việc liên quan đến lập trình và tác vụ đại lý."
|
|
2407
2557
|
},
|
|
2558
|
+
"minimax/minimax-m2": {
|
|
2559
|
+
"description": "MiniMax-M2 là mô hình hiệu suất cao với chi phí hợp lý, thể hiện xuất sắc trong các tác vụ lập trình và tác nhân, phù hợp với nhiều tình huống kỹ thuật."
|
|
2560
|
+
},
|
|
2561
|
+
"minimaxai/minimax-m2": {
|
|
2562
|
+
"description": "MiniMax-M2 là một mô hình chuyên gia hỗn hợp (MoE) nhỏ gọn, nhanh chóng và tiết kiệm chi phí, với tổng số 230 tỷ tham số và 10 tỷ tham số kích hoạt, được thiết kế để đạt hiệu suất hàng đầu trong các tác vụ mã hóa và tác nhân, đồng thời duy trì trí tuệ nhân tạo tổng quát mạnh mẽ. Mô hình này thể hiện xuất sắc trong chỉnh sửa nhiều tệp, vòng lặp mã hóa-chạy-sửa lỗi, kiểm thử và sửa lỗi, cũng như các chuỗi công cụ liên kết dài phức tạp, là lựa chọn lý tưởng cho quy trình làm việc của nhà phát triển."
|
|
2563
|
+
},
|
|
2408
2564
|
"ministral-3b-latest": {
|
|
2409
2565
|
"description": "Ministral 3B là mô hình hàng đầu thế giới của Mistral về hiệu suất cạnh biên."
|
|
2410
2566
|
},
|
|
@@ -2546,15 +2702,27 @@
|
|
|
2546
2702
|
"moonshotai/Kimi-K2-Instruct-0905": {
|
|
2547
2703
|
"description": "Kimi K2-Instruct-0905 là phiên bản mới nhất và mạnh mẽ nhất của Kimi K2. Đây là một mô hình ngôn ngữ chuyên gia hỗn hợp (MoE) hàng đầu với tổng số tham số lên đến 1 nghìn tỷ và 32 tỷ tham số kích hoạt. Các đặc điểm chính của mô hình bao gồm: tăng cường trí tuệ mã hóa tác nhân, thể hiện sự cải thiện đáng kể trong các bài kiểm tra chuẩn công khai và các nhiệm vụ mã hóa tác nhân trong thế giới thực; cải tiến trải nghiệm mã hóa giao diện người dùng, nâng cao cả về tính thẩm mỹ và tính thực tiễn trong lập trình giao diện."
|
|
2548
2704
|
},
|
|
2705
|
+
"moonshotai/Kimi-K2-Thinking": {
|
|
2706
|
+
"description": "Kimi K2 Thinking là mô hình suy nghĩ mã nguồn mở mới nhất và mạnh mẽ nhất. Nó mở rộng đáng kể độ sâu suy luận nhiều bước và duy trì khả năng sử dụng công cụ ổn định trong 200–300 lần gọi liên tiếp, thiết lập tiêu chuẩn mới trong các bài kiểm tra như Humanity's Last Exam (HLE), BrowseComp và các benchmark khác. Đồng thời, K2 Thinking thể hiện xuất sắc trong lập trình, toán học, suy luận logic và các tình huống Agent. Mô hình này dựa trên kiến trúc chuyên gia hỗn hợp (MoE), với tổng số tham số khoảng 1 nghìn tỷ, hỗ trợ cửa sổ ngữ cảnh 256K và gọi công cụ."
|
|
2707
|
+
},
|
|
2549
2708
|
"moonshotai/kimi-k2": {
|
|
2550
2709
|
"description": "Kimi K2 là mô hình ngôn ngữ chuyên gia hỗn hợp (MoE) quy mô lớn do Moonshot AI phát triển, với tổng số tham số lên đến 1 nghìn tỷ và 32 tỷ tham số kích hoạt mỗi lần truyền tiến. Nó được tối ưu cho khả năng đại lý, bao gồm sử dụng công cụ nâng cao, suy luận và tổng hợp mã."
|
|
2551
2710
|
},
|
|
2711
|
+
"moonshotai/kimi-k2-0711": {
|
|
2712
|
+
"description": "Kimi K2 0711 là phiên bản Instruct của dòng Kimi, phù hợp với các tình huống mã chất lượng cao và gọi công cụ."
|
|
2713
|
+
},
|
|
2552
2714
|
"moonshotai/kimi-k2-0905": {
|
|
2553
|
-
"description": "
|
|
2715
|
+
"description": "Kimi K2 0905 là bản cập nhật 0905 của dòng Kimi, mở rộng ngữ cảnh và khả năng suy luận, tối ưu cho các tình huống lập trình."
|
|
2554
2716
|
},
|
|
2555
2717
|
"moonshotai/kimi-k2-instruct-0905": {
|
|
2556
2718
|
"description": "Mô hình kimi-k2-0905-preview có độ dài ngữ cảnh 256k, sở hữu năng lực Agentic Coding mạnh mẽ hơn, mã front-end đẹp mắt và thực dụng hơn, cùng khả năng hiểu ngữ cảnh tốt hơn."
|
|
2557
2719
|
},
|
|
2720
|
+
"moonshotai/kimi-k2-thinking": {
|
|
2721
|
+
"description": "Kimi K2 Thinking là mô hình tư duy được Moonshot tối ưu cho các tác vụ suy luận sâu, có khả năng tác nhân tổng quát."
|
|
2722
|
+
},
|
|
2723
|
+
"moonshotai/kimi-k2-thinking-turbo": {
|
|
2724
|
+
"description": "Kimi K2 Thinking Turbo là phiên bản tốc độ cao của Kimi K2 Thinking, giảm đáng kể độ trễ phản hồi trong khi vẫn giữ khả năng suy luận sâu."
|
|
2725
|
+
},
|
|
2558
2726
|
"morph/morph-v3-fast": {
|
|
2559
2727
|
"description": "Morph cung cấp mô hình AI chuyên biệt, áp dụng các thay đổi mã được đề xuất bởi các mô hình tiên tiến như Claude hoặc GPT-4o vào các tệp mã hiện có của bạn với tốc độ nhanh — hơn 4500 token/giây. Nó đóng vai trò là bước cuối cùng trong quy trình làm việc mã hóa AI. Hỗ trợ 16k token đầu vào và 16k token đầu ra."
|
|
2560
2728
|
},
|
|
@@ -2577,7 +2745,7 @@
|
|
|
2577
2745
|
"description": "Tập trung vào suy diễn nâng cao và giải quyết các vấn đề phức tạp, bao gồm các nhiệm vụ toán học và khoa học. Rất phù hợp cho các ứng dụng cần hiểu biết sâu sắc về ngữ cảnh và quy trình làm việc đại diện."
|
|
2578
2746
|
},
|
|
2579
2747
|
"o1-mini": {
|
|
2580
|
-
"description": "
|
|
2748
|
+
"description": "Nhỏ hơn và nhanh hơn o1-preview, tiết kiệm chi phí đến 80%, thể hiện tốt trong việc tạo mã và xử lý ngữ cảnh nhỏ."
|
|
2581
2749
|
},
|
|
2582
2750
|
"o1-preview": {
|
|
2583
2751
|
"description": "Tập trung vào suy luận nâng cao và giải quyết các vấn đề phức tạp, bao gồm các bài toán và nhiệm vụ khoa học. Rất phù hợp cho những ứng dụng cần khả năng hiểu biết ngữ cảnh sâu sắc và quy trình làm việc tự chủ."
|
|
@@ -2637,28 +2805,49 @@
|
|
|
2637
2805
|
"description": "gpt-4-turbo của OpenAI có kiến thức tổng quát rộng và chuyên môn lĩnh vực, cho phép tuân theo các chỉ dẫn ngôn ngữ tự nhiên phức tạp và giải quyết chính xác các vấn đề khó. Kiến thức cập nhật đến tháng 4 năm 2023, cửa sổ ngữ cảnh 128.000 token."
|
|
2638
2806
|
},
|
|
2639
2807
|
"openai/gpt-4.1": {
|
|
2640
|
-
"description": "GPT
|
|
2808
|
+
"description": "Dòng GPT-4.1 cung cấp ngữ cảnh lớn hơn và khả năng kỹ thuật và suy luận mạnh mẽ hơn."
|
|
2641
2809
|
},
|
|
2642
2810
|
"openai/gpt-4.1-mini": {
|
|
2643
|
-
"description": "GPT
|
|
2811
|
+
"description": "GPT-4.1 Mini cung cấp độ trễ thấp hơn và hiệu quả chi phí tốt hơn, phù hợp với các tình huống ngữ cảnh trung bình."
|
|
2644
2812
|
},
|
|
2645
2813
|
"openai/gpt-4.1-nano": {
|
|
2646
|
-
"description": "GPT-4.1
|
|
2814
|
+
"description": "GPT-4.1 Nano là lựa chọn chi phí cực thấp và độ trễ thấp, phù hợp với hội thoại ngắn tần suất cao hoặc phân loại."
|
|
2647
2815
|
},
|
|
2648
2816
|
"openai/gpt-4o": {
|
|
2649
|
-
"description": "GPT-4o
|
|
2817
|
+
"description": "Dòng GPT-4o là mô hình Omni của OpenAI, hỗ trợ đầu vào văn bản + hình ảnh và đầu ra văn bản."
|
|
2650
2818
|
},
|
|
2651
2819
|
"openai/gpt-4o-mini": {
|
|
2652
|
-
"description": "GPT-4o
|
|
2820
|
+
"description": "GPT-4o-mini là phiên bản nhỏ và nhanh của GPT-4o, phù hợp với các tình huống kết hợp văn bản và hình ảnh có độ trễ thấp."
|
|
2653
2821
|
},
|
|
2654
2822
|
"openai/gpt-5": {
|
|
2655
|
-
"description": "GPT-5 là mô hình
|
|
2823
|
+
"description": "GPT-5 là mô hình hiệu suất cao của OpenAI, phù hợp với nhiều tác vụ sản xuất và nghiên cứu."
|
|
2824
|
+
},
|
|
2825
|
+
"openai/gpt-5-chat": {
|
|
2826
|
+
"description": "GPT-5 Chat là phiên bản con của GPT-5 được tối ưu cho hội thoại, giảm độ trễ để nâng cao trải nghiệm tương tác."
|
|
2827
|
+
},
|
|
2828
|
+
"openai/gpt-5-codex": {
|
|
2829
|
+
"description": "GPT-5-Codex là biến thể GPT-5 được tối ưu thêm cho các tình huống lập trình, phù hợp với quy trình mã quy mô lớn."
|
|
2656
2830
|
},
|
|
2657
2831
|
"openai/gpt-5-mini": {
|
|
2658
|
-
"description": "GPT-5
|
|
2832
|
+
"description": "GPT-5 Mini là phiên bản rút gọn của dòng GPT-5, phù hợp với các tình huống yêu cầu độ trễ thấp và chi phí thấp."
|
|
2659
2833
|
},
|
|
2660
2834
|
"openai/gpt-5-nano": {
|
|
2661
|
-
"description": "GPT-5
|
|
2835
|
+
"description": "GPT-5 Nano là phiên bản siêu nhỏ trong dòng, phù hợp với các tình huống yêu cầu cực cao về chi phí và độ trễ."
|
|
2836
|
+
},
|
|
2837
|
+
"openai/gpt-5-pro": {
|
|
2838
|
+
"description": "GPT-5 Pro là mô hình hàng đầu của OpenAI, cung cấp khả năng suy luận, tạo mã và chức năng cấp doanh nghiệp mạnh mẽ, hỗ trợ định tuyến thử nghiệm và chính sách bảo mật nghiêm ngặt hơn."
|
|
2839
|
+
},
|
|
2840
|
+
"openai/gpt-5.1": {
|
|
2841
|
+
"description": "GPT-5.1 là mô hình hàng đầu mới nhất trong dòng GPT-5, cải thiện đáng kể về suy luận tổng quát, tuân thủ chỉ dẫn và độ tự nhiên trong hội thoại, phù hợp với nhiều tình huống tác vụ."
|
|
2842
|
+
},
|
|
2843
|
+
"openai/gpt-5.1-chat": {
|
|
2844
|
+
"description": "GPT-5.1 Chat là thành viên nhẹ của dòng GPT-5.1, được tối ưu cho hội thoại độ trễ thấp, đồng thời giữ khả năng suy luận và thực thi chỉ dẫn mạnh mẽ."
|
|
2845
|
+
},
|
|
2846
|
+
"openai/gpt-5.1-codex": {
|
|
2847
|
+
"description": "GPT-5.1-Codex là biến thể GPT-5.1 được tối ưu cho kỹ thuật phần mềm và quy trình lập trình, phù hợp với tái cấu trúc quy mô lớn, gỡ lỗi phức tạp và lập trình tự động dài hạn."
|
|
2848
|
+
},
|
|
2849
|
+
"openai/gpt-5.1-codex-mini": {
|
|
2850
|
+
"description": "GPT-5.1-Codex-Mini là phiên bản nhỏ và nhanh của GPT-5.1-Codex, phù hợp hơn với các tình huống lập trình nhạy cảm với độ trễ và chi phí."
|
|
2662
2851
|
},
|
|
2663
2852
|
"openai/gpt-oss-120b": {
|
|
2664
2853
|
"description": "Mô hình ngôn ngữ lớn đa năng cực kỳ năng lực, với khả năng suy luận mạnh mẽ và có thể kiểm soát."
|
|
@@ -2685,7 +2874,7 @@
|
|
|
2685
2874
|
"description": "o3-mini phiên bản cao cấp về suy luận, cung cấp trí tuệ cao với cùng chi phí và mục tiêu độ trễ như o1-mini."
|
|
2686
2875
|
},
|
|
2687
2876
|
"openai/o4-mini": {
|
|
2688
|
-
"description": "o4-mini
|
|
2877
|
+
"description": "OpenAI o4-mini là mô hình suy luận nhỏ gọn và hiệu quả của OpenAI, phù hợp với các tình huống độ trễ thấp."
|
|
2689
2878
|
},
|
|
2690
2879
|
"openai/o4-mini-high": {
|
|
2691
2880
|
"description": "o4-mini phiên bản cao cấp, được tối ưu hóa cho suy luận nhanh chóng và hiệu quả, thể hiện hiệu suất và hiệu quả cao trong các nhiệm vụ mã hóa và hình ảnh."
|
|
@@ -2735,6 +2924,54 @@
|
|
|
2735
2924
|
"pro-deepseek-v3": {
|
|
2736
2925
|
"description": "Mô hình chuyên dụng cho dịch vụ doanh nghiệp, hỗ trợ dịch vụ đồng thời."
|
|
2737
2926
|
},
|
|
2927
|
+
"qianfan-70b": {
|
|
2928
|
+
"description": "Qianfan 70B, mô hình tiếng Trung với tham số lớn, phù hợp cho việc tạo nội dung chất lượng cao và các nhiệm vụ suy luận phức tạp."
|
|
2929
|
+
},
|
|
2930
|
+
"qianfan-8b": {
|
|
2931
|
+
"description": "Qianfan 8B, mô hình đa năng cỡ trung, cân bằng giữa chi phí và hiệu quả trong tạo văn bản và hỏi đáp."
|
|
2932
|
+
},
|
|
2933
|
+
"qianfan-agent-intent-32k": {
|
|
2934
|
+
"description": "Qianfan Agent Intent 32K, mô hình nhận diện ý định và điều phối tác tử, hỗ trợ ngữ cảnh dài."
|
|
2935
|
+
},
|
|
2936
|
+
"qianfan-agent-lite-8k": {
|
|
2937
|
+
"description": "Qianfan Agent Lite 8K, mô hình tác tử nhẹ, phù hợp cho hội thoại đa lượt chi phí thấp và điều phối nghiệp vụ."
|
|
2938
|
+
},
|
|
2939
|
+
"qianfan-agent-speed-32k": {
|
|
2940
|
+
"description": "Qianfan Agent Speed 32K, mô hình tác tử kiểm soát lưu lượng cao, thích hợp cho ứng dụng Agent quy mô lớn và đa nhiệm."
|
|
2941
|
+
},
|
|
2942
|
+
"qianfan-agent-speed-8k": {
|
|
2943
|
+
"description": "Qianfan Agent Speed 8K, mô hình tác tử hiệu suất cao cho hội thoại ngắn và phản hồi nhanh với khả năng xử lý đồng thời cao."
|
|
2944
|
+
},
|
|
2945
|
+
"qianfan-check-vl": {
|
|
2946
|
+
"description": "Qianfan Check VL, mô hình kiểm duyệt và phát hiện nội dung đa phương tiện, hỗ trợ kiểm tra tuân thủ và nhận diện hình ảnh-văn bản."
|
|
2947
|
+
},
|
|
2948
|
+
"qianfan-composition": {
|
|
2949
|
+
"description": "Qianfan Composition, mô hình sáng tạo đa phương tiện, hỗ trợ hiểu và tạo nội dung kết hợp hình ảnh và văn bản."
|
|
2950
|
+
},
|
|
2951
|
+
"qianfan-engcard-vl": {
|
|
2952
|
+
"description": "Qianfan EngCard VL, mô hình nhận diện đa phương tiện chuyên biệt cho ngữ cảnh tiếng Anh."
|
|
2953
|
+
},
|
|
2954
|
+
"qianfan-lightning-128b-a19b": {
|
|
2955
|
+
"description": "Qianfan Lightning 128B A19B, mô hình tiếng Trung hiệu suất cao, phù hợp cho hỏi đáp phức tạp và suy luận quy mô lớn."
|
|
2956
|
+
},
|
|
2957
|
+
"qianfan-llama-vl-8b": {
|
|
2958
|
+
"description": "Qianfan Llama VL 8B, mô hình đa phương tiện dựa trên Llama, hướng đến nhiệm vụ hiểu hình ảnh-văn bản tổng quát."
|
|
2959
|
+
},
|
|
2960
|
+
"qianfan-multipicocr": {
|
|
2961
|
+
"description": "Qianfan MultiPicOCR, mô hình OCR cho nhiều hình ảnh, hỗ trợ phát hiện và nhận diện văn bản từ nhiều ảnh."
|
|
2962
|
+
},
|
|
2963
|
+
"qianfan-qi-vl": {
|
|
2964
|
+
"description": "Qianfan QI VL, mô hình hỏi đáp đa phương tiện, hỗ trợ truy xuất và trả lời chính xác trong các ngữ cảnh hình ảnh-văn bản phức tạp."
|
|
2965
|
+
},
|
|
2966
|
+
"qianfan-singlepicocr": {
|
|
2967
|
+
"description": "Qianfan SinglePicOCR, mô hình OCR cho một hình ảnh, hỗ trợ nhận diện ký tự với độ chính xác cao."
|
|
2968
|
+
},
|
|
2969
|
+
"qianfan-vl-70b": {
|
|
2970
|
+
"description": "Qianfan VL 70B, mô hình ngôn ngữ thị giác với tham số lớn, phù hợp cho các tình huống hiểu hình ảnh-văn bản phức tạp."
|
|
2971
|
+
},
|
|
2972
|
+
"qianfan-vl-8b": {
|
|
2973
|
+
"description": "Qianfan VL 8B, mô hình ngôn ngữ thị giác nhẹ, thích hợp cho hỏi đáp và phân tích hình ảnh-văn bản hàng ngày."
|
|
2974
|
+
},
|
|
2738
2975
|
"qvq-72b-preview": {
|
|
2739
2976
|
"description": "Mô hình QVQ là mô hình nghiên cứu thử nghiệm do đội ngũ Qwen phát triển, tập trung vào việc nâng cao khả năng suy luận hình ảnh, đặc biệt trong lĩnh vực suy luận toán học."
|
|
2740
2977
|
},
|
|
@@ -2747,9 +2984,6 @@
|
|
|
2747
2984
|
"qwen-3-32b": {
|
|
2748
2985
|
"description": "Qwen 3 32B: Mô hình dòng Qwen có hiệu suất tốt trong các nhiệm vụ đa ngôn ngữ và lập trình, thích hợp cho các ứng dụng sản xuất quy mô trung bình."
|
|
2749
2986
|
},
|
|
2750
|
-
"qwen-3-coder-480b": {
|
|
2751
|
-
"description": "Qwen 3 Coder 480B: Mô hình ngữ cảnh dài dành cho sinh mã và các nhiệm vụ lập trình phức tạp."
|
|
2752
|
-
},
|
|
2753
2987
|
"qwen-coder-plus": {
|
|
2754
2988
|
"description": "Mô hình mã hóa Tongyi Qianwen."
|
|
2755
2989
|
},
|
|
@@ -2841,7 +3075,7 @@
|
|
|
2841
3075
|
"description": "Mô hình mã mạnh mẽ cỡ trung, hỗ trợ độ dài ngữ cảnh 32K, xuất sắc trong lập trình đa ngôn ngữ."
|
|
2842
3076
|
},
|
|
2843
3077
|
"qwen/qwen3-14b": {
|
|
2844
|
-
"description": "Qwen3-14B là
|
|
3078
|
+
"description": "Qwen3-14B là phiên bản 14B của dòng Qwen, phù hợp với các tình huống suy luận và hội thoại thông thường."
|
|
2845
3079
|
},
|
|
2846
3080
|
"qwen/qwen3-14b:free": {
|
|
2847
3081
|
"description": "Qwen3-14B là một mô hình ngôn ngữ nguyên nhân dày đặc với 14,8 tỷ tham số trong dòng Qwen3, được thiết kế cho suy luận phức tạp và đối thoại hiệu quả. Nó hỗ trợ chuyển đổi liền mạch giữa chế độ \"suy nghĩ\" cho các nhiệm vụ như toán học, lập trình và suy luận logic với chế độ \"không suy nghĩ\" cho đối thoại thông thường. Mô hình này đã được tinh chỉnh để sử dụng cho việc tuân theo chỉ dẫn, sử dụng công cụ đại lý, viết sáng tạo và các nhiệm vụ đa ngôn ngữ trên hơn 100 ngôn ngữ và phương ngữ. Nó xử lý ngữ cảnh 32K token một cách tự nhiên và có thể mở rộng lên 131K token bằng cách sử dụng mở rộng dựa trên YaRN."
|
|
@@ -2849,6 +3083,12 @@
|
|
|
2849
3083
|
"qwen/qwen3-235b-a22b": {
|
|
2850
3084
|
"description": "Qwen3-235B-A22B là mô hình hỗn hợp chuyên gia (MoE) với 235B tham số được phát triển bởi Qwen, kích hoạt 22B tham số mỗi lần truyền tiến. Nó hỗ trợ chuyển đổi liền mạch giữa chế độ \"suy nghĩ\" cho suy luận phức tạp, toán học và các nhiệm vụ mã với chế độ \"không suy nghĩ\" cho hiệu suất đối thoại thông thường. Mô hình này thể hiện khả năng suy luận mạnh mẽ, hỗ trợ đa ngôn ngữ (hơn 100 ngôn ngữ và phương ngữ), tuân theo chỉ dẫn nâng cao và khả năng gọi công cụ đại lý. Nó xử lý cửa sổ ngữ cảnh 32K token một cách tự nhiên và có thể mở rộng lên 131K token bằng cách sử dụng mở rộng dựa trên YaRN."
|
|
2851
3085
|
},
|
|
3086
|
+
"qwen/qwen3-235b-a22b-2507": {
|
|
3087
|
+
"description": "Qwen3-235B-A22B-Instruct-2507 là phiên bản Instruct của dòng Qwen3, cân bằng giữa chỉ dẫn đa ngôn ngữ và ngữ cảnh dài."
|
|
3088
|
+
},
|
|
3089
|
+
"qwen/qwen3-235b-a22b-thinking-2507": {
|
|
3090
|
+
"description": "Qwen3-235B-A22B-Thinking-2507 là biến thể Thinking của Qwen3, được tăng cường cho các tác vụ toán học và suy luận phức tạp."
|
|
3091
|
+
},
|
|
2852
3092
|
"qwen/qwen3-235b-a22b:free": {
|
|
2853
3093
|
"description": "Qwen3-235B-A22B là mô hình hỗn hợp chuyên gia (MoE) với 235B tham số được phát triển bởi Qwen, kích hoạt 22B tham số mỗi lần truyền tiến. Nó hỗ trợ chuyển đổi liền mạch giữa chế độ \"suy nghĩ\" cho suy luận phức tạp, toán học và các nhiệm vụ mã với chế độ \"không suy nghĩ\" cho hiệu suất đối thoại thông thường. Mô hình này thể hiện khả năng suy luận mạnh mẽ, hỗ trợ đa ngôn ngữ (hơn 100 ngôn ngữ và phương ngữ), tuân theo chỉ dẫn nâng cao và khả năng gọi công cụ đại lý. Nó xử lý cửa sổ ngữ cảnh 32K token một cách tự nhiên và có thể mở rộng lên 131K token bằng cách sử dụng mở rộng dựa trên YaRN."
|
|
2854
3094
|
},
|
|
@@ -2867,6 +3107,21 @@
|
|
|
2867
3107
|
"qwen/qwen3-8b:free": {
|
|
2868
3108
|
"description": "Qwen3-8B là một mô hình ngôn ngữ nguyên nhân dày đặc với 8,2 tỷ tham số trong dòng Qwen3, được thiết kế cho các nhiệm vụ yêu cầu suy luận dày đặc và đối thoại hiệu quả. Nó hỗ trợ chuyển đổi liền mạch giữa chế độ \"suy nghĩ\" cho toán học, lập trình và suy luận logic với chế độ \"không suy nghĩ\" cho đối thoại thông thường. Mô hình này đã được tinh chỉnh để sử dụng cho việc tuân theo chỉ dẫn, tích hợp đại lý, viết sáng tạo và sử dụng đa ngôn ngữ trên hơn 100 ngôn ngữ và phương ngữ. Nó hỗ trợ cửa sổ ngữ cảnh 32K token và có thể mở rộng lên 131K token thông qua YaRN."
|
|
2869
3109
|
},
|
|
3110
|
+
"qwen/qwen3-coder": {
|
|
3111
|
+
"description": "Qwen3-Coder là dòng tạo mã của Qwen3, xuất sắc trong hiểu và tạo mã trong tài liệu dài."
|
|
3112
|
+
},
|
|
3113
|
+
"qwen/qwen3-coder-plus": {
|
|
3114
|
+
"description": "Qwen3-Coder-Plus là mô hình lập trình đặc biệt được tối ưu trong dòng Qwen, hỗ trợ gọi công cụ phức tạp và hội thoại dài hạn."
|
|
3115
|
+
},
|
|
3116
|
+
"qwen/qwen3-max": {
|
|
3117
|
+
"description": "Qwen3 Max là mô hình suy luận cao cấp của dòng Qwen3, phù hợp với suy luận đa ngôn ngữ và tích hợp công cụ."
|
|
3118
|
+
},
|
|
3119
|
+
"qwen/qwen3-max-preview": {
|
|
3120
|
+
"description": "Qwen3 Max (preview) là phiên bản Max của dòng Qwen dành cho suy luận nâng cao và tích hợp công cụ (bản xem trước)."
|
|
3121
|
+
},
|
|
3122
|
+
"qwen/qwen3-vl-plus": {
|
|
3123
|
+
"description": "Qwen3 VL-Plus là phiên bản tăng cường thị giác của Qwen3, nâng cao khả năng suy luận đa phương thức và xử lý video."
|
|
3124
|
+
},
|
|
2870
3125
|
"qwen2": {
|
|
2871
3126
|
"description": "Qwen2 là mô hình ngôn ngữ quy mô lớn thế hệ mới của Alibaba, hỗ trợ các nhu cầu ứng dụng đa dạng với hiệu suất xuất sắc."
|
|
2872
3127
|
},
|
|
@@ -2886,7 +3141,7 @@
|
|
|
2886
3141
|
"description": "Mô hình 72B quy mô mở nguồn của Qwen 2.5."
|
|
2887
3142
|
},
|
|
2888
3143
|
"qwen2.5-7b-instruct": {
|
|
2889
|
-
"description": "
|
|
3144
|
+
"description": "Qwen2.5 7B Instruct, mô hình chỉ dẫn mã nguồn mở trưởng thành, phù hợp cho hội thoại và tạo nội dung trong nhiều ngữ cảnh."
|
|
2890
3145
|
},
|
|
2891
3146
|
"qwen2.5-coder-1.5b-instruct": {
|
|
2892
3147
|
"description": "Phiên bản mã nguồn mở của mô hình mã Qwen."
|
|
@@ -2919,13 +3174,13 @@
|
|
|
2919
3174
|
"description": "Mô hình Qwen-Omni hỗ trợ đầu vào từ nhiều loại dữ liệu khác nhau, bao gồm video, âm thanh, hình ảnh và văn bản, và xuất ra âm thanh và văn bản."
|
|
2920
3175
|
},
|
|
2921
3176
|
"qwen2.5-vl-32b-instruct": {
|
|
2922
|
-
"description": "
|
|
3177
|
+
"description": "Qwen2.5 VL 32B Instruct, mô hình đa phương tiện mã nguồn mở, thích hợp cho triển khai riêng tư và ứng dụng đa ngữ cảnh."
|
|
2923
3178
|
},
|
|
2924
3179
|
"qwen2.5-vl-72b-instruct": {
|
|
2925
3180
|
"description": "Nâng cao khả năng theo dõi lệnh, toán học, giải quyết vấn đề, mã hóa, nâng cao khả năng nhận diện mọi thứ, hỗ trợ định vị chính xác các yếu tố thị giác từ nhiều định dạng khác nhau, hỗ trợ hiểu và định vị thời gian sự kiện trong các tệp video dài (tối đa 10 phút), có khả năng hiểu thứ tự thời gian và tốc độ, hỗ trợ điều khiển Agent trên OS hoặc Mobile dựa trên khả năng phân tích và định vị, khả năng trích xuất thông tin quan trọng và xuất định dạng Json mạnh mẽ, phiên bản này là phiên bản 72B, phiên bản mạnh nhất trong dòng sản phẩm này."
|
|
2926
3181
|
},
|
|
2927
3182
|
"qwen2.5-vl-7b-instruct": {
|
|
2928
|
-
"description": "
|
|
3183
|
+
"description": "Qwen2.5 VL 7B Instruct, mô hình đa phương tiện nhẹ, cân bằng giữa chi phí triển khai và khả năng nhận diện."
|
|
2929
3184
|
},
|
|
2930
3185
|
"qwen2.5-vl-instruct": {
|
|
2931
3186
|
"description": "Qwen2.5-VL là phiên bản mới nhất của mô hình ngôn ngữ và hình ảnh trong gia đình mô hình Qwen."
|
|
@@ -2952,46 +3207,46 @@
|
|
|
2952
3207
|
"description": "Qwen3 là mô hình ngôn ngữ quy mô lớn thế hệ mới của Alibaba, hỗ trợ nhu cầu ứng dụng đa dạng với hiệu suất xuất sắc."
|
|
2953
3208
|
},
|
|
2954
3209
|
"qwen3-0.6b": {
|
|
2955
|
-
"description": "Qwen3
|
|
3210
|
+
"description": "Qwen3 0.6B, mô hình cấp nhập môn, phù hợp cho suy luận đơn giản và môi trường tài nguyên cực kỳ hạn chế."
|
|
2956
3211
|
},
|
|
2957
3212
|
"qwen3-1.7b": {
|
|
2958
|
-
"description": "Qwen3
|
|
3213
|
+
"description": "Qwen3 1.7B, mô hình siêu nhẹ, dễ dàng triển khai tại biên và thiết bị đầu cuối."
|
|
2959
3214
|
},
|
|
2960
3215
|
"qwen3-14b": {
|
|
2961
|
-
"description": "Qwen3
|
|
3216
|
+
"description": "Qwen3 14B, mô hình cỡ trung, phù hợp cho hỏi đáp đa ngôn ngữ và tạo văn bản."
|
|
2962
3217
|
},
|
|
2963
3218
|
"qwen3-235b-a22b": {
|
|
2964
|
-
"description": "Qwen3
|
|
3219
|
+
"description": "Qwen3 235B A22B, mô hình lớn đa năng, hướng đến nhiều nhiệm vụ phức tạp."
|
|
2965
3220
|
},
|
|
2966
3221
|
"qwen3-235b-a22b-instruct-2507": {
|
|
2967
|
-
"description": "
|
|
3222
|
+
"description": "Qwen3 235B A22B Instruct 2507, mô hình chỉ dẫn hàng đầu đa năng, phù hợp cho nhiều nhiệm vụ tạo nội dung và suy luận."
|
|
2968
3223
|
},
|
|
2969
3224
|
"qwen3-235b-a22b-thinking-2507": {
|
|
2970
|
-
"description": "
|
|
3225
|
+
"description": "Qwen3 235B A22B Thinking 2507, mô hình tư duy quy mô siêu lớn, thích hợp cho suy luận độ khó cao."
|
|
2971
3226
|
},
|
|
2972
3227
|
"qwen3-30b-a3b": {
|
|
2973
|
-
"description": "Qwen3
|
|
3228
|
+
"description": "Qwen3 30B A3B, mô hình đa năng cỡ trung-lớn, cân bằng giữa chi phí và hiệu quả."
|
|
2974
3229
|
},
|
|
2975
3230
|
"qwen3-30b-a3b-instruct-2507": {
|
|
2976
|
-
"description": "
|
|
3231
|
+
"description": "Qwen3 30B A3B Instruct 2507, mô hình chỉ dẫn cỡ trung-lớn, phù hợp cho tạo nội dung chất lượng cao và hỏi đáp."
|
|
2977
3232
|
},
|
|
2978
3233
|
"qwen3-30b-a3b-thinking-2507": {
|
|
2979
|
-
"description": "
|
|
3234
|
+
"description": "Qwen3 30B A3B Thinking 2507, mô hình tư duy cỡ trung-lớn, cân bằng giữa độ chính xác và chi phí."
|
|
2980
3235
|
},
|
|
2981
3236
|
"qwen3-32b": {
|
|
2982
|
-
"description": "Qwen3
|
|
3237
|
+
"description": "Qwen3 32B, phù hợp cho các nhiệm vụ đa năng yêu cầu khả năng hiểu sâu hơn."
|
|
2983
3238
|
},
|
|
2984
3239
|
"qwen3-4b": {
|
|
2985
|
-
"description": "Qwen3
|
|
3240
|
+
"description": "Qwen3 4B, phù hợp cho ứng dụng vừa và nhỏ và các tình huống suy luận cục bộ."
|
|
2986
3241
|
},
|
|
2987
3242
|
"qwen3-8b": {
|
|
2988
|
-
"description": "Qwen3
|
|
3243
|
+
"description": "Qwen3 8B, mô hình nhẹ, triển khai linh hoạt, phù hợp cho các nghiệp vụ có tần suất cao."
|
|
2989
3244
|
},
|
|
2990
3245
|
"qwen3-coder-30b-a3b-instruct": {
|
|
2991
3246
|
"description": "Phiên bản mã nguồn mở của mô hình mã hóa Tongyi Qianwen. Mô hình qwen3-coder-30b-a3b-instruct mới nhất được phát triển dựa trên Qwen3, có khả năng hoạt động như một Tác nhân Lập trình mạnh mẽ, thành thạo trong việc gọi công cụ và tương tác môi trường, hỗ trợ lập trình tự động với năng lực mã hóa xuất sắc và khả năng tổng quát cao."
|
|
2992
3247
|
},
|
|
2993
3248
|
"qwen3-coder-480b-a35b-instruct": {
|
|
2994
|
-
"description": "
|
|
3249
|
+
"description": "Qwen3 Coder 480B A35B Instruct, mô hình mã hóa hàng đầu, hỗ trợ lập trình đa ngôn ngữ và hiểu mã phức tạp."
|
|
2995
3250
|
},
|
|
2996
3251
|
"qwen3-coder-flash": {
|
|
2997
3252
|
"description": "Mô hình mã nguồn của Thông Nghĩa Thiên Vấn. Bộ mô hình Qwen3-Coder mới nhất dựa trên Qwen3 là mô hình tạo mã, có khả năng Coding Agent mạnh mẽ, thành thạo gọi công cụ và tương tác môi trường, có thể tự lập trình, vừa xuất sắc về năng lực mã hóa vừa có khả năng tổng quát."
|
|
@@ -3005,32 +3260,41 @@
|
|
|
3005
3260
|
"qwen3-max": {
|
|
3006
3261
|
"description": "Dòng mô hình Max của Tongyi Qianwen 3, so với dòng 2.5 có sự cải thiện lớn về khả năng chung, bao gồm hiểu văn bản song ngữ Trung-Anh, tuân thủ chỉ dẫn phức tạp, khả năng thực hiện các tác vụ mở chủ quan, đa ngôn ngữ và gọi công cụ; giảm thiểu ảo tưởng kiến thức của mô hình. Phiên bản qwen3-max mới nhất đã nâng cấp chuyên biệt về lập trình tác nhân và gọi công cụ so với phiên bản qwen3-max-preview. Mô hình chính thức phát hành đạt mức SOTA trong lĩnh vực, phù hợp với các nhu cầu tác nhân phức tạp hơn."
|
|
3007
3262
|
},
|
|
3263
|
+
"qwen3-max-preview": {
|
|
3264
|
+
"description": "Mô hình mạnh nhất trong dòng Tongyi Qianwen, phù hợp với các tác vụ phức tạp và nhiều bước. Phiên bản xem trước đã hỗ trợ khả năng suy luận."
|
|
3265
|
+
},
|
|
3008
3266
|
"qwen3-next-80b-a3b-instruct": {
|
|
3009
3267
|
"description": "Mô hình mã nguồn mở thế hệ mới không có chế độ suy nghĩ dựa trên Qwen3, so với phiên bản trước (Thông Nghĩa Thiên Vấn 3-235B-A22B-Instruct-2507) có khả năng hiểu văn bản tiếng Trung tốt hơn, năng lực suy luận logic được cải thiện, và hiệu suất trong các nhiệm vụ tạo văn bản cũng tốt hơn."
|
|
3010
3268
|
},
|
|
3011
3269
|
"qwen3-next-80b-a3b-thinking": {
|
|
3012
|
-
"description": "
|
|
3270
|
+
"description": "Qwen3 Next 80B A3B Thinking, phiên bản mô hình tư duy hàng đầu cho các nhiệm vụ phức tạp."
|
|
3013
3271
|
},
|
|
3014
3272
|
"qwen3-omni-flash": {
|
|
3015
3273
|
"description": "Mô hình Qwen-Omni có thể tiếp nhận đầu vào kết hợp từ nhiều phương thức như văn bản, hình ảnh, âm thanh và video, và tạo phản hồi dưới dạng văn bản hoặc giọng nói. Mô hình cung cấp nhiều giọng nói nhân hóa, hỗ trợ đầu ra bằng nhiều ngôn ngữ và phương ngữ, phù hợp với các ứng dụng như sáng tác văn bản, nhận diện hình ảnh và trợ lý giọng nói."
|
|
3016
3274
|
},
|
|
3017
3275
|
"qwen3-vl-235b-a22b-instruct": {
|
|
3018
|
-
"description": "Qwen3 VL 235B A22B
|
|
3276
|
+
"description": "Qwen3 VL 235B A22B Instruct, mô hình đa phương tiện hàng đầu, hướng đến các tình huống yêu cầu cao về hiểu và sáng tạo."
|
|
3019
3277
|
},
|
|
3020
3278
|
"qwen3-vl-235b-a22b-thinking": {
|
|
3021
|
-
"description": "Qwen3 VL 235B A22B
|
|
3279
|
+
"description": "Qwen3 VL 235B A22B Thinking, phiên bản tư duy hàng đầu, dùng cho suy luận và lập kế hoạch đa phương tiện phức tạp."
|
|
3022
3280
|
},
|
|
3023
3281
|
"qwen3-vl-30b-a3b-instruct": {
|
|
3024
|
-
"description": "Qwen3 VL 30B
|
|
3282
|
+
"description": "Qwen3 VL 30B A3B Instruct, mô hình đa phương tiện lớn, cân bằng giữa độ chính xác và hiệu suất suy luận."
|
|
3025
3283
|
},
|
|
3026
3284
|
"qwen3-vl-30b-a3b-thinking": {
|
|
3027
|
-
"description": "
|
|
3285
|
+
"description": "Qwen3 VL 30B A3B Thinking, phiên bản tư duy sâu cho các nhiệm vụ đa phương tiện phức tạp."
|
|
3286
|
+
},
|
|
3287
|
+
"qwen3-vl-32b-instruct": {
|
|
3288
|
+
"description": "Qwen3 VL 32B Instruct, mô hình chỉ dẫn đa phương tiện, phù hợp cho hỏi đáp và sáng tạo hình ảnh-văn bản chất lượng cao."
|
|
3289
|
+
},
|
|
3290
|
+
"qwen3-vl-32b-thinking": {
|
|
3291
|
+
"description": "Qwen3 VL 32B Thinking, phiên bản tư duy sâu đa phương tiện, tăng cường suy luận phức tạp và phân tích chuỗi dài."
|
|
3028
3292
|
},
|
|
3029
3293
|
"qwen3-vl-8b-instruct": {
|
|
3030
|
-
"description": "Qwen3 VL 8B
|
|
3294
|
+
"description": "Qwen3 VL 8B Instruct, mô hình đa phương tiện nhẹ, phù hợp cho hỏi đáp thị giác hàng ngày và tích hợp ứng dụng."
|
|
3031
3295
|
},
|
|
3032
3296
|
"qwen3-vl-8b-thinking": {
|
|
3033
|
-
"description": "Qwen3 VL 8B
|
|
3297
|
+
"description": "Qwen3 VL 8B Thinking, mô hình chuỗi tư duy đa phương tiện, thích hợp cho suy luận chi tiết về thông tin hình ảnh."
|
|
3034
3298
|
},
|
|
3035
3299
|
"qwen3-vl-flash": {
|
|
3036
3300
|
"description": "Qwen3 VL Flash: phiên bản suy luận tốc độ cao và nhẹ, phù hợp với các tình huống yêu cầu độ trễ thấp hoặc xử lý số lượng lớn yêu cầu."
|
|
@@ -3080,6 +3344,9 @@
|
|
|
3080
3344
|
"sonar-reasoning-pro": {
|
|
3081
3345
|
"description": "Sản phẩm API mới được hỗ trợ bởi mô hình suy diễn DeepSeek."
|
|
3082
3346
|
},
|
|
3347
|
+
"spark-x": {
|
|
3348
|
+
"description": "Giới thiệu khả năng của X1.5: (1) Thêm chế độ suy nghĩ điều chỉnh động, điều khiển qua trường thinking; (2) Tăng độ dài ngữ cảnh: đầu vào và đầu ra đều 64K; (3) Hỗ trợ chức năng FunctionCall."
|
|
3349
|
+
},
|
|
3083
3350
|
"stable-diffusion-3-medium": {
|
|
3084
3351
|
"description": "Mô hình tạo hình ảnh từ văn bản mới nhất do Stability AI phát hành. Phiên bản này kế thừa ưu điểm của thế hệ trước, cải tiến đáng kể về chất lượng hình ảnh, hiểu văn bản và đa dạng phong cách, có thể giải thích chính xác các gợi ý ngôn ngữ tự nhiên phức tạp và tạo ra hình ảnh chính xác, đa dạng hơn."
|
|
3085
3352
|
},
|
|
@@ -3152,9 +3419,6 @@
|
|
|
3152
3419
|
"step-r1-v-mini": {
|
|
3153
3420
|
"description": "Mô hình này là một mô hình suy luận lớn với khả năng hiểu hình ảnh mạnh mẽ, có thể xử lý thông tin hình ảnh và văn bản, và xuất ra nội dung văn bản sau khi suy nghĩ sâu. Mô hình này thể hiện xuất sắc trong lĩnh vực suy luận hình ảnh, đồng thời có khả năng toán học, mã và suy luận văn bản hàng đầu. Độ dài ngữ cảnh là 100k."
|
|
3154
3421
|
},
|
|
3155
|
-
"step3": {
|
|
3156
|
-
"description": "Step3 là mô hình đa phương thức do Jiexue Xingchen phát triển, có khả năng hiểu hình ảnh mạnh mẽ."
|
|
3157
|
-
},
|
|
3158
3422
|
"stepfun-ai/step3": {
|
|
3159
3423
|
"description": "Step3 là mô hình suy luận đa mô thức tiên tiến được phát hành bởi 阶跃星辰 (StepFun). Mô hình này được xây dựng trên kiến trúc Mixture-of-Experts (MoE) với 321B tham số tổng và 38B tham số kích hoạt. Thiết kế đầu-cuối (end-to-end) nhằm tối thiểu hóa chi phí giải mã, đồng thời cung cấp hiệu năng hàng đầu trong suy luận thị giác-ngôn ngữ. Thông qua thiết kế phối hợp giữa Multi-Matrix Factorized Attention (MFA) và Attention-FFN Decoupling (AFD), Step3 duy trì hiệu suất vượt trội trên cả bộ tăng tốc cao cấp và các thiết bị tăng tốc cấp thấp. Trong giai đoạn tiền huấn luyện, Step3 đã xử lý hơn 20T token văn bản và 4T token hỗn hợp ảnh-văn bản, bao phủ hơn mười ngôn ngữ. Mô hình này đã đạt vị thế dẫn đầu trong các benchmark mã nguồn mở ở nhiều lĩnh vực, bao gồm toán học, mã (code) và các nhiệm vụ đa mô thức."
|
|
3160
3424
|
},
|
|
@@ -3236,6 +3500,9 @@
|
|
|
3236
3500
|
"vercel/v0-1.5-md": {
|
|
3237
3501
|
"description": "Truy cập mô hình phía sau v0 để tạo, sửa lỗi và tối ưu hóa ứng dụng Web hiện đại, với suy luận theo khung cụ thể và kiến thức cập nhật."
|
|
3238
3502
|
},
|
|
3503
|
+
"volcengine/doubao-seed-code": {
|
|
3504
|
+
"description": "Doubao-Seed-Code là mô hình lớn của Volcengine được tối ưu cho Agentic Programming, thể hiện xuất sắc trong nhiều tiêu chuẩn lập trình và tác nhân, hỗ trợ ngữ cảnh 256K."
|
|
3505
|
+
},
|
|
3239
3506
|
"wan2.2-t2i-flash": {
|
|
3240
3507
|
"description": "Phiên bản tốc độ cao Wanxiang 2.2, là mô hình mới nhất hiện nay. Nâng cấp toàn diện về sáng tạo, ổn định và cảm giác thực, tốc độ tạo nhanh, hiệu quả chi phí cao."
|
|
3241
3508
|
},
|
|
@@ -3263,8 +3530,23 @@
|
|
|
3263
3530
|
"wizardlm2:8x22b": {
|
|
3264
3531
|
"description": "WizardLM 2 là mô hình ngôn ngữ do Microsoft AI cung cấp, đặc biệt xuất sắc trong các lĩnh vực đối thoại phức tạp, đa ngôn ngữ, suy luận và trợ lý thông minh."
|
|
3265
3532
|
},
|
|
3266
|
-
"
|
|
3267
|
-
"description": "
|
|
3533
|
+
"x-ai/grok-4": {
|
|
3534
|
+
"description": "Grok 4 là mô hình suy luận hàng đầu của xAI, cung cấp khả năng suy luận và đa phương thức mạnh mẽ."
|
|
3535
|
+
},
|
|
3536
|
+
"x-ai/grok-4-fast": {
|
|
3537
|
+
"description": "Grok 4 Fast là mô hình thông lượng cao, chi phí thấp của xAI (hỗ trợ cửa sổ ngữ cảnh 2M), phù hợp với các tình huống yêu cầu đồng thời cao và ngữ cảnh dài."
|
|
3538
|
+
},
|
|
3539
|
+
"x-ai/grok-4-fast-non-reasoning": {
|
|
3540
|
+
"description": "Grok 4 Fast (Non-Reasoning) là mô hình đa phương thức thông lượng cao, chi phí thấp của xAI (hỗ trợ cửa sổ ngữ cảnh 2M), dành cho các tình huống nhạy cảm với độ trễ và chi phí nhưng không cần suy luận nội bộ. Nó song song với phiên bản reasoning của Grok 4 Fast và có thể bật suy luận qua tham số reasoning enable trong API khi cần. Prompts và completions có thể được xAI hoặc OpenRouter sử dụng để cải thiện các mô hình tương lai."
|
|
3541
|
+
},
|
|
3542
|
+
"x-ai/grok-4.1-fast": {
|
|
3543
|
+
"description": "Grok 4 Fast là mô hình thông lượng cao, chi phí thấp của xAI (hỗ trợ cửa sổ ngữ cảnh 2M), phù hợp với các tình huống yêu cầu đồng thời cao và ngữ cảnh dài."
|
|
3544
|
+
},
|
|
3545
|
+
"x-ai/grok-4.1-fast-non-reasoning": {
|
|
3546
|
+
"description": "Grok 4 Fast (Non-Reasoning) là mô hình đa phương thức thông lượng cao, chi phí thấp của xAI (hỗ trợ cửa sổ ngữ cảnh 2M), dành cho các tình huống nhạy cảm với độ trễ và chi phí nhưng không cần suy luận nội bộ. Nó song song với phiên bản reasoning của Grok 4 Fast và có thể bật suy luận qua tham số reasoning enable trong API khi cần. Prompts và completions có thể được xAI hoặc OpenRouter sử dụng để cải thiện các mô hình tương lai."
|
|
3547
|
+
},
|
|
3548
|
+
"x-ai/grok-code-fast-1": {
|
|
3549
|
+
"description": "Grok Code Fast 1 là mô hình mã nhanh của xAI, đầu ra dễ đọc và phù hợp với kỹ thuật phần mềm."
|
|
3268
3550
|
},
|
|
3269
3551
|
"xai/grok-2": {
|
|
3270
3552
|
"description": "Grok 2 là mô hình ngôn ngữ tiên tiến với khả năng suy luận hàng đầu. Nó có năng lực vượt trội trong trò chuyện, mã hóa và suy luận, đứng trên Claude 3.5 Sonnet và GPT-4-Turbo trên bảng xếp hạng LMSYS."
|
|
@@ -3323,6 +3605,18 @@
|
|
|
3323
3605
|
"yi-vision-v2": {
|
|
3324
3606
|
"description": "Mô hình nhiệm vụ thị giác phức tạp, cung cấp khả năng hiểu và phân tích hiệu suất cao dựa trên nhiều hình ảnh."
|
|
3325
3607
|
},
|
|
3608
|
+
"z-ai/glm-4.5": {
|
|
3609
|
+
"description": "GLM 4.5 là mô hình hàng đầu của Z.AI, hỗ trợ chế độ suy luận hỗn hợp và được tối ưu cho kỹ thuật và tác vụ ngữ cảnh dài."
|
|
3610
|
+
},
|
|
3611
|
+
"z-ai/glm-4.5-air": {
|
|
3612
|
+
"description": "GLM 4.5 Air là phiên bản nhẹ của GLM 4.5, phù hợp với các tình huống nhạy cảm về chi phí nhưng vẫn giữ khả năng suy luận mạnh."
|
|
3613
|
+
},
|
|
3614
|
+
"z-ai/glm-4.6": {
|
|
3615
|
+
"description": "GLM 4.6 là mô hình hàng đầu của Z.AI, mở rộng độ dài ngữ cảnh và khả năng lập trình."
|
|
3616
|
+
},
|
|
3617
|
+
"zai-glm-4.6": {
|
|
3618
|
+
"description": "Thể hiện xuất sắc trong các tác vụ lập trình và suy luận, hỗ trợ truyền dữ liệu theo luồng và gọi công cụ, phù hợp với lập trình Agentic và các tình huống suy luận phức tạp."
|
|
3619
|
+
},
|
|
3326
3620
|
"zai-org/GLM-4.5": {
|
|
3327
3621
|
"description": "GLM-4.5 là mô hình nền tảng dành cho ứng dụng tác nhân thông minh, sử dụng kiến trúc chuyên gia hỗn hợp (Mixture-of-Experts). Được tối ưu sâu trong các lĩnh vực gọi công cụ, duyệt web, kỹ thuật phần mềm và lập trình front-end, hỗ trợ tích hợp liền mạch vào các tác nhân mã như Claude Code, Roo Code. GLM-4.5 sử dụng chế độ suy luận hỗn hợp, thích ứng với nhiều kịch bản ứng dụng như suy luận phức tạp và sử dụng hàng ngày."
|
|
3328
3622
|
},
|
|
@@ -3343,5 +3637,8 @@
|
|
|
3343
3637
|
},
|
|
3344
3638
|
"zai/glm-4.5v": {
|
|
3345
3639
|
"description": "GLM-4.5V được xây dựng trên mô hình nền tảng GLM-4.5-Air, kế thừa công nghệ đã được xác minh của GLM-4.1V-Thinking, đồng thời mở rộng hiệu quả với kiến trúc MoE 106 tỷ tham số mạnh mẽ."
|
|
3640
|
+
},
|
|
3641
|
+
"zenmux/auto": {
|
|
3642
|
+
"description": "Chức năng định tuyến tự động của ZenMux sẽ tự động chọn mô hình có hiệu suất và chi phí tốt nhất hiện tại trong số các mô hình được hỗ trợ, dựa trên nội dung yêu cầu của bạn."
|
|
3346
3643
|
}
|
|
3347
3644
|
}
|