@lobehub/lobehub 2.0.0-next.9 → 2.0.0-next.90
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/.env.desktop +1 -2
- package/.env.example +11 -3
- package/.env.example.development +0 -2
- package/.github/workflows/claude-auto-testing.yml +73 -0
- package/.github/workflows/claude-translate-comments.yml +67 -0
- package/.github/workflows/claude-translator.yml +1 -0
- package/.github/workflows/desktop-pr-build.yml +12 -9
- package/.github/workflows/e2e.yml +14 -0
- package/.github/workflows/release-desktop-beta.yml +4 -4
- package/.github/workflows/release.yml +2 -4
- package/.github/workflows/test.yml +44 -8
- package/.nvmrc +1 -1
- package/CHANGELOG.md +2003 -0
- package/Dockerfile +1 -3
- package/README.md +8 -51
- package/README.zh-CN.md +8 -51
- package/apps/desktop/package.json +19 -18
- package/apps/desktop/src/main/controllers/AuthCtr.ts +78 -39
- package/apps/desktop/src/main/controllers/LocalFileCtr.ts +80 -16
- package/apps/desktop/src/main/controllers/MenuCtr.ts +5 -5
- package/apps/desktop/src/main/controllers/NotificationCtr.ts +29 -29
- package/apps/desktop/src/main/controllers/RemoteServerConfigCtr.ts +16 -16
- package/apps/desktop/src/main/controllers/ShellCommandCtr.ts +242 -0
- package/apps/desktop/src/main/controllers/ShortcutCtr.ts +2 -2
- package/apps/desktop/src/main/controllers/TrayMenuCtr.ts +18 -18
- package/apps/desktop/src/main/controllers/UpdaterCtr.ts +4 -4
- package/apps/desktop/src/main/controllers/__tests__/AuthCtr.test.ts +706 -0
- package/apps/desktop/src/main/controllers/__tests__/LocalFileCtr.test.ts +157 -1
- package/apps/desktop/src/main/controllers/__tests__/ShellCommandCtr.test.ts +499 -0
- package/apps/desktop/src/main/controllers/__tests__/TrayMenuCtr.test.ts +5 -5
- package/apps/desktop/src/main/controllers/index.ts +4 -4
- 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/modules/fileSearch/__tests__/macOS.integration.test.ts +357 -0
- package/apps/desktop/src/main/modules/fileSearch/impl/macOS.ts +30 -22
- package/apps/desktop/src/main/modules/networkProxy/__tests__/dispatcher.test.ts +401 -0
- package/apps/desktop/src/main/modules/networkProxy/__tests__/tester.test.ts +531 -0
- package/apps/desktop/src/main/modules/networkProxy/__tests__/urlBuilder.test.ts +349 -0
- package/apps/desktop/src/main/modules/networkProxy/__tests__/validator.test.ts +492 -0
- package/apps/desktop/src/main/modules/networkProxy/dispatcher.ts +16 -16
- package/apps/desktop/src/main/modules/networkProxy/tester.ts +11 -11
- package/apps/desktop/src/main/modules/networkProxy/urlBuilder.ts +3 -3
- package/apps/desktop/src/main/modules/networkProxy/validator.ts +10 -10
- package/apps/desktop/tsconfig.json +0 -1
- package/changelog/v1.json +697 -0
- package/docker-compose/local/.env.example +3 -0
- package/docs/development/database-schema.dbml +22 -14
- package/docs/self-hosting/advanced/auth/next-auth/auth0.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/auth0.zh-CN.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/authelia.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/authelia.zh-CN.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/authentik.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/authentik.zh-CN.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/casdoor.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/casdoor.zh-CN.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/cloudflare-zero-trust.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/cloudflare-zero-trust.zh-CN.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/github.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/github.zh-CN.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/google.mdx +32 -29
- package/docs/self-hosting/advanced/auth/next-auth/keycloak.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/keycloak.zh-CN.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/logto.mdx +5 -3
- package/docs/self-hosting/advanced/auth/next-auth/logto.zh-CN.mdx +5 -3
- package/docs/self-hosting/advanced/auth/next-auth/microsoft-entra-id.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/microsoft-entra-id.zh-CN.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/okta.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/okta.zh-CN.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/wechat.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/wechat.zh-CN.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/zitadel.mdx +2 -2
- package/docs/self-hosting/advanced/auth/next-auth/zitadel.zh-CN.mdx +2 -2
- package/docs/self-hosting/advanced/auth.mdx +32 -21
- package/docs/self-hosting/advanced/auth.zh-CN.mdx +30 -19
- package/docs/self-hosting/advanced/feature-flags.mdx +0 -1
- package/docs/self-hosting/advanced/feature-flags.zh-CN.mdx +0 -1
- package/docs/self-hosting/environment-variables/basic.mdx +49 -3
- package/docs/self-hosting/environment-variables/basic.zh-CN.mdx +49 -4
- 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 +2 -2
- package/e2e/src/features/discover/detail-pages.feature +95 -0
- package/e2e/src/features/discover/interactions.feature +113 -0
- package/e2e/src/features/discover/smoke.feature +34 -1
- package/e2e/src/steps/discover/detail-pages.steps.ts +295 -0
- package/e2e/src/steps/discover/interactions.steps.ts +451 -0
- package/e2e/src/steps/discover/smoke.steps.ts +116 -4
- package/e2e/tsconfig.json +0 -1
- package/locales/ar/auth.json +45 -1
- package/locales/ar/chat.json +36 -0
- package/locales/ar/common.json +2 -0
- package/locales/ar/components.json +6 -0
- package/locales/ar/discover.json +45 -0
- package/locales/ar/error.json +2 -2
- package/locales/ar/file.json +87 -2
- package/locales/ar/labs.json +4 -0
- package/locales/ar/marketAuth.json +42 -0
- package/locales/ar/modelProvider.json +14 -2
- package/locales/ar/models.json +215 -89
- package/locales/ar/oauth.json +1 -0
- package/locales/ar/plugin.json +9 -1
- package/locales/ar/setting.json +94 -1
- package/locales/ar/tool.json +20 -1
- package/locales/ar/topic.json +1 -0
- package/locales/bg-BG/auth.json +45 -1
- package/locales/bg-BG/chat.json +36 -0
- package/locales/bg-BG/common.json +2 -0
- package/locales/bg-BG/components.json +6 -0
- package/locales/bg-BG/discover.json +45 -0
- package/locales/bg-BG/error.json +2 -2
- package/locales/bg-BG/file.json +87 -2
- package/locales/bg-BG/labs.json +4 -0
- package/locales/bg-BG/marketAuth.json +42 -0
- package/locales/bg-BG/modelProvider.json +14 -2
- package/locales/bg-BG/models.json +215 -89
- package/locales/bg-BG/oauth.json +1 -0
- package/locales/bg-BG/plugin.json +9 -1
- package/locales/bg-BG/setting.json +94 -1
- package/locales/bg-BG/tool.json +20 -1
- package/locales/bg-BG/topic.json +1 -0
- package/locales/de-DE/auth.json +45 -1
- package/locales/de-DE/chat.json +36 -0
- package/locales/de-DE/common.json +2 -0
- package/locales/de-DE/components.json +6 -0
- package/locales/de-DE/discover.json +45 -0
- package/locales/de-DE/error.json +2 -2
- package/locales/de-DE/file.json +87 -2
- package/locales/de-DE/labs.json +4 -0
- package/locales/de-DE/marketAuth.json +42 -0
- package/locales/de-DE/modelProvider.json +14 -2
- package/locales/de-DE/models.json +215 -89
- package/locales/de-DE/oauth.json +1 -0
- package/locales/de-DE/plugin.json +9 -1
- package/locales/de-DE/setting.json +94 -1
- package/locales/de-DE/tool.json +20 -1
- package/locales/de-DE/topic.json +1 -0
- package/locales/en-US/auth.json +45 -1
- package/locales/en-US/chat.json +36 -0
- package/locales/en-US/common.json +3 -0
- package/locales/en-US/components.json +6 -0
- package/locales/en-US/discover.json +45 -0
- package/locales/en-US/error.json +2 -2
- package/locales/en-US/file.json +87 -2
- package/locales/en-US/labs.json +4 -0
- package/locales/en-US/marketAuth.json +42 -0
- package/locales/en-US/modelProvider.json +14 -2
- package/locales/en-US/models.json +215 -89
- package/locales/en-US/oauth.json +1 -0
- package/locales/en-US/plugin.json +10 -2
- package/locales/en-US/setting.json +94 -1
- package/locales/en-US/tool.json +20 -1
- package/locales/en-US/topic.json +1 -0
- package/locales/es-ES/auth.json +45 -1
- package/locales/es-ES/chat.json +36 -0
- package/locales/es-ES/common.json +2 -0
- package/locales/es-ES/components.json +6 -0
- package/locales/es-ES/discover.json +45 -0
- package/locales/es-ES/error.json +2 -2
- package/locales/es-ES/file.json +87 -2
- package/locales/es-ES/labs.json +4 -0
- package/locales/es-ES/marketAuth.json +42 -0
- package/locales/es-ES/modelProvider.json +14 -2
- package/locales/es-ES/models.json +215 -89
- package/locales/es-ES/oauth.json +1 -0
- package/locales/es-ES/plugin.json +9 -1
- package/locales/es-ES/setting.json +94 -1
- package/locales/es-ES/tool.json +20 -1
- package/locales/es-ES/topic.json +1 -0
- package/locales/fa-IR/auth.json +45 -1
- package/locales/fa-IR/chat.json +36 -0
- package/locales/fa-IR/common.json +2 -0
- package/locales/fa-IR/components.json +6 -0
- package/locales/fa-IR/discover.json +45 -0
- package/locales/fa-IR/error.json +2 -2
- package/locales/fa-IR/file.json +87 -2
- package/locales/fa-IR/labs.json +4 -0
- package/locales/fa-IR/marketAuth.json +42 -0
- package/locales/fa-IR/modelProvider.json +14 -2
- package/locales/fa-IR/models.json +215 -89
- package/locales/fa-IR/oauth.json +1 -0
- package/locales/fa-IR/plugin.json +9 -1
- package/locales/fa-IR/setting.json +94 -1
- package/locales/fa-IR/tool.json +20 -1
- package/locales/fa-IR/topic.json +1 -0
- package/locales/fr-FR/auth.json +45 -1
- package/locales/fr-FR/chat.json +36 -0
- package/locales/fr-FR/common.json +2 -0
- package/locales/fr-FR/components.json +6 -0
- package/locales/fr-FR/discover.json +45 -0
- package/locales/fr-FR/error.json +2 -2
- package/locales/fr-FR/file.json +87 -2
- package/locales/fr-FR/labs.json +4 -0
- package/locales/fr-FR/marketAuth.json +42 -0
- package/locales/fr-FR/modelProvider.json +14 -2
- package/locales/fr-FR/models.json +215 -89
- package/locales/fr-FR/oauth.json +1 -0
- package/locales/fr-FR/plugin.json +9 -1
- package/locales/fr-FR/setting.json +94 -1
- package/locales/fr-FR/tool.json +20 -1
- package/locales/fr-FR/topic.json +1 -0
- package/locales/it-IT/auth.json +45 -1
- package/locales/it-IT/chat.json +36 -0
- package/locales/it-IT/common.json +2 -0
- package/locales/it-IT/components.json +6 -0
- package/locales/it-IT/discover.json +45 -0
- package/locales/it-IT/error.json +2 -2
- package/locales/it-IT/file.json +87 -2
- package/locales/it-IT/labs.json +4 -0
- package/locales/it-IT/marketAuth.json +42 -0
- package/locales/it-IT/modelProvider.json +14 -2
- package/locales/it-IT/models.json +215 -89
- package/locales/it-IT/oauth.json +1 -0
- package/locales/it-IT/plugin.json +9 -1
- package/locales/it-IT/setting.json +94 -1
- package/locales/it-IT/tool.json +20 -1
- package/locales/it-IT/topic.json +1 -0
- package/locales/ja-JP/auth.json +45 -1
- package/locales/ja-JP/chat.json +36 -0
- package/locales/ja-JP/common.json +2 -0
- package/locales/ja-JP/components.json +6 -0
- package/locales/ja-JP/discover.json +45 -0
- package/locales/ja-JP/error.json +2 -2
- package/locales/ja-JP/file.json +87 -2
- package/locales/ja-JP/labs.json +4 -0
- package/locales/ja-JP/marketAuth.json +42 -0
- package/locales/ja-JP/modelProvider.json +14 -2
- package/locales/ja-JP/models.json +215 -89
- package/locales/ja-JP/oauth.json +1 -0
- package/locales/ja-JP/plugin.json +9 -1
- package/locales/ja-JP/setting.json +94 -1
- package/locales/ja-JP/tool.json +20 -1
- package/locales/ja-JP/topic.json +1 -0
- package/locales/ko-KR/auth.json +45 -1
- package/locales/ko-KR/chat.json +36 -0
- package/locales/ko-KR/common.json +2 -0
- package/locales/ko-KR/components.json +6 -0
- package/locales/ko-KR/discover.json +45 -0
- package/locales/ko-KR/error.json +2 -2
- package/locales/ko-KR/file.json +87 -2
- package/locales/ko-KR/labs.json +4 -0
- package/locales/ko-KR/marketAuth.json +42 -0
- package/locales/ko-KR/modelProvider.json +14 -2
- package/locales/ko-KR/models.json +221 -95
- package/locales/ko-KR/oauth.json +1 -0
- package/locales/ko-KR/plugin.json +9 -1
- package/locales/ko-KR/setting.json +94 -1
- package/locales/ko-KR/tool.json +20 -1
- package/locales/ko-KR/topic.json +1 -0
- package/locales/nl-NL/auth.json +45 -1
- package/locales/nl-NL/chat.json +36 -0
- package/locales/nl-NL/common.json +2 -0
- package/locales/nl-NL/components.json +6 -0
- package/locales/nl-NL/discover.json +45 -0
- package/locales/nl-NL/error.json +2 -2
- package/locales/nl-NL/file.json +87 -2
- package/locales/nl-NL/labs.json +4 -0
- package/locales/nl-NL/marketAuth.json +42 -0
- package/locales/nl-NL/modelProvider.json +14 -2
- package/locales/nl-NL/models.json +215 -89
- package/locales/nl-NL/oauth.json +1 -0
- package/locales/nl-NL/plugin.json +9 -1
- package/locales/nl-NL/setting.json +94 -1
- package/locales/nl-NL/tool.json +20 -1
- package/locales/nl-NL/topic.json +1 -0
- package/locales/pl-PL/auth.json +45 -1
- package/locales/pl-PL/chat.json +36 -0
- package/locales/pl-PL/common.json +2 -0
- package/locales/pl-PL/components.json +6 -0
- package/locales/pl-PL/discover.json +45 -0
- package/locales/pl-PL/error.json +2 -2
- package/locales/pl-PL/file.json +87 -2
- package/locales/pl-PL/labs.json +4 -0
- package/locales/pl-PL/marketAuth.json +42 -0
- package/locales/pl-PL/modelProvider.json +14 -2
- package/locales/pl-PL/models.json +215 -89
- package/locales/pl-PL/oauth.json +1 -0
- package/locales/pl-PL/plugin.json +9 -1
- package/locales/pl-PL/setting.json +94 -1
- package/locales/pl-PL/tool.json +20 -1
- package/locales/pl-PL/topic.json +1 -0
- package/locales/pt-BR/auth.json +45 -1
- package/locales/pt-BR/chat.json +36 -0
- package/locales/pt-BR/common.json +2 -0
- package/locales/pt-BR/components.json +6 -0
- package/locales/pt-BR/discover.json +45 -0
- package/locales/pt-BR/error.json +2 -2
- package/locales/pt-BR/file.json +87 -2
- package/locales/pt-BR/labs.json +4 -0
- package/locales/pt-BR/marketAuth.json +42 -0
- package/locales/pt-BR/modelProvider.json +14 -2
- package/locales/pt-BR/models.json +215 -89
- package/locales/pt-BR/oauth.json +1 -0
- package/locales/pt-BR/plugin.json +9 -1
- package/locales/pt-BR/setting.json +94 -1
- package/locales/pt-BR/tool.json +20 -1
- package/locales/pt-BR/topic.json +1 -0
- package/locales/ru-RU/auth.json +45 -1
- package/locales/ru-RU/chat.json +36 -0
- package/locales/ru-RU/common.json +2 -0
- package/locales/ru-RU/components.json +6 -0
- package/locales/ru-RU/discover.json +45 -0
- package/locales/ru-RU/error.json +2 -2
- package/locales/ru-RU/file.json +87 -2
- package/locales/ru-RU/labs.json +4 -0
- package/locales/ru-RU/marketAuth.json +42 -0
- package/locales/ru-RU/modelProvider.json +14 -2
- package/locales/ru-RU/models.json +215 -89
- package/locales/ru-RU/oauth.json +1 -0
- package/locales/ru-RU/plugin.json +9 -1
- package/locales/ru-RU/setting.json +94 -1
- package/locales/ru-RU/tool.json +20 -1
- package/locales/ru-RU/topic.json +1 -0
- package/locales/tr-TR/auth.json +45 -1
- package/locales/tr-TR/chat.json +36 -0
- package/locales/tr-TR/common.json +2 -0
- package/locales/tr-TR/components.json +6 -0
- package/locales/tr-TR/discover.json +45 -0
- package/locales/tr-TR/error.json +2 -2
- package/locales/tr-TR/file.json +87 -2
- package/locales/tr-TR/labs.json +4 -0
- package/locales/tr-TR/marketAuth.json +42 -0
- package/locales/tr-TR/modelProvider.json +14 -2
- package/locales/tr-TR/models.json +215 -89
- package/locales/tr-TR/oauth.json +1 -0
- package/locales/tr-TR/plugin.json +9 -1
- package/locales/tr-TR/setting.json +94 -1
- package/locales/tr-TR/tool.json +20 -1
- package/locales/tr-TR/topic.json +1 -0
- package/locales/vi-VN/auth.json +45 -1
- package/locales/vi-VN/chat.json +36 -0
- package/locales/vi-VN/common.json +2 -0
- package/locales/vi-VN/components.json +6 -0
- package/locales/vi-VN/discover.json +45 -0
- package/locales/vi-VN/error.json +2 -2
- package/locales/vi-VN/file.json +87 -2
- package/locales/vi-VN/labs.json +4 -0
- package/locales/vi-VN/marketAuth.json +42 -0
- package/locales/vi-VN/modelProvider.json +14 -2
- package/locales/vi-VN/models.json +215 -89
- package/locales/vi-VN/oauth.json +1 -0
- package/locales/vi-VN/plugin.json +9 -1
- package/locales/vi-VN/setting.json +94 -1
- package/locales/vi-VN/tool.json +20 -1
- package/locales/vi-VN/topic.json +1 -0
- package/locales/zh-CN/auth.json +45 -1
- package/locales/zh-CN/chat.json +36 -0
- package/locales/zh-CN/common.json +3 -0
- package/locales/zh-CN/components.json +6 -0
- package/locales/zh-CN/discover.json +45 -0
- package/locales/zh-CN/error.json +2 -2
- package/locales/zh-CN/file.json +87 -2
- package/locales/zh-CN/labs.json +4 -0
- package/locales/zh-CN/marketAuth.json +42 -0
- package/locales/zh-CN/modelProvider.json +14 -2
- package/locales/zh-CN/models.json +215 -89
- package/locales/zh-CN/oauth.json +1 -0
- package/locales/zh-CN/plugin.json +9 -1
- package/locales/zh-CN/setting.json +94 -1
- package/locales/zh-CN/tool.json +20 -1
- package/locales/zh-CN/topic.json +1 -0
- package/locales/zh-TW/auth.json +45 -1
- package/locales/zh-TW/chat.json +36 -0
- package/locales/zh-TW/common.json +2 -0
- package/locales/zh-TW/components.json +6 -0
- package/locales/zh-TW/discover.json +45 -0
- package/locales/zh-TW/error.json +2 -2
- package/locales/zh-TW/file.json +87 -2
- package/locales/zh-TW/labs.json +4 -0
- package/locales/zh-TW/marketAuth.json +42 -0
- package/locales/zh-TW/modelProvider.json +14 -2
- package/locales/zh-TW/models.json +215 -89
- package/locales/zh-TW/oauth.json +1 -0
- package/locales/zh-TW/plugin.json +9 -1
- package/locales/zh-TW/setting.json +94 -1
- package/locales/zh-TW/tool.json +20 -1
- package/locales/zh-TW/topic.json +1 -0
- package/next.config.ts +10 -12
- package/package.json +79 -79
- package/packages/agent-runtime/package.json +1 -1
- package/packages/agent-runtime/src/core/InterventionChecker.ts +5 -16
- package/packages/agent-runtime/src/core/__tests__/InterventionChecker.test.ts +27 -80
- package/packages/agent-runtime/src/core/__tests__/runtime.test.ts +141 -87
- 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 +9 -1
- package/packages/const/package.json +1 -1
- package/packages/const/src/hotkeys.ts +3 -3
- package/packages/const/src/models.ts +4 -2
- 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/processors/GroupMessageFlatten.ts +8 -6
- package/packages/context-engine/src/processors/MessageCleanup.ts +7 -6
- package/packages/context-engine/src/processors/MessageContent.ts +17 -17
- 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__/ToolCall.test.ts +59 -0
- package/packages/context-engine/src/providers/HistorySummary.ts +6 -6
- package/packages/context-engine/src/providers/ToolSystemRole.ts +7 -7
- 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__/parse.test.ts +132 -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 +66 -0
- package/packages/conversation-flow/src/transformation/ContextTreeBuilder.ts +292 -0
- package/packages/conversation-flow/src/transformation/FlatListBuilder.ts +566 -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 +151 -0
- package/packages/conversation-flow/src/transformation/__tests__/ContextTreeBuilder.test.ts +385 -0
- package/packages/conversation-flow/src/transformation/__tests__/FlatListBuilder.test.ts +511 -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/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/_journal.json +35 -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 +6 -6
- package/packages/database/src/core/electron.ts +1 -1
- package/packages/database/src/core/migrations.json +42 -0
- package/packages/database/src/core/web-server.ts +2 -1
- 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__/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/agent.ts +16 -13
- 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 +1 -1
- package/packages/database/src/models/document.ts +5 -6
- package/packages/database/src/models/drizzleMigration.ts +1 -1
- package/packages/database/src/models/file.ts +35 -10
- package/packages/database/src/models/message.ts +14 -86
- package/packages/database/src/models/oauthHandoff.ts +19 -19
- package/packages/database/src/models/session.ts +72 -20
- package/packages/database/src/models/topic.ts +10 -10
- package/packages/database/src/models/user.ts +2 -1
- package/packages/database/src/repositories/aiInfra/index.test.ts +205 -7
- package/packages/database/src/repositories/aiInfra/index.ts +9 -8
- package/packages/database/src/repositories/dataExporter/index.test.ts +1 -1
- package/packages/database/src/repositories/dataImporter/__tests__/index.test.ts +1 -2
- package/packages/database/src/repositories/dataImporter/deprecated/__tests__/index.test.ts +3 -2
- package/packages/database/src/repositories/dataImporter/deprecated/index.ts +8 -2
- package/packages/database/src/repositories/dataImporter/index.ts +1 -2
- package/packages/database/src/repositories/knowledge/index.test.ts +300 -0
- package/packages/database/src/repositories/knowledge/index.ts +420 -0
- package/packages/database/src/repositories/tableViewer/index.test.ts +1 -1
- package/packages/database/src/repositories/tableViewer/index.ts +4 -5
- package/packages/database/src/schemas/agent.ts +6 -3
- package/packages/database/src/schemas/aiInfra.ts +3 -2
- package/packages/database/src/schemas/file.ts +79 -0
- package/packages/database/src/schemas/index.ts +0 -1
- package/packages/database/src/schemas/message.ts +5 -8
- package/packages/database/src/schemas/rag.ts +32 -2
- package/packages/database/src/schemas/relations.ts +2 -3
- package/packages/database/src/schemas/topic.ts +2 -3
- package/packages/database/src/schemas/user.ts +1 -1
- package/packages/database/src/server/models/__tests__/user.test.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/types/localSystem.ts +30 -2
- package/packages/electron-server-ipc/package.json +2 -2
- package/packages/electron-server-ipc/src/ipcClient.ts +31 -31
- package/packages/electron-server-ipc/src/ipcServer.ts +15 -15
- package/packages/fetch-sse/package.json +29 -0
- package/packages/fetch-sse/src/__tests__/fetchSSE.test.ts +579 -0
- package/packages/fetch-sse/src/__tests__/parseError.test.ts +91 -0
- package/packages/fetch-sse/src/fetchSSE.ts +487 -0
- package/packages/fetch-sse/src/headers.ts +27 -0
- package/packages/fetch-sse/src/parseError.ts +24 -0
- package/packages/fetch-sse/src/request.ts +28 -0
- package/packages/file-loaders/package.json +3 -3
- package/packages/file-loaders/src/loaders/docx/index.ts +1 -1
- package/packages/memory-extract/package.json +4 -4
- package/packages/model-bank/src/aiModels/aihubmix.ts +167 -3
- package/packages/model-bank/src/aiModels/google.ts +76 -83
- package/packages/model-bank/src/aiModels/mistral.ts +2 -1
- 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 +26 -4
- package/packages/model-bank/src/aiModels/openai.ts +109 -38
- package/packages/model-bank/src/aiModels/openrouter.ts +1 -0
- package/packages/model-bank/src/aiModels/qiniu.ts +126 -0
- package/packages/model-bank/src/aiModels/qwen.ts +164 -7
- package/packages/model-bank/src/aiModels/siliconcloud.ts +20 -0
- package/packages/model-bank/src/aiModels/vercelaigateway.ts +0 -17
- package/packages/model-bank/src/aiModels/vertexai.ts +2 -0
- package/packages/model-bank/src/aiModels/volcengine.ts +1 -1
- package/packages/model-bank/src/aiModels/wenxin.ts +1348 -291
- package/packages/model-bank/src/types/aiModel.ts +18 -2
- package/packages/model-runtime/package.json +3 -3
- package/packages/model-runtime/src/core/contextBuilders/anthropic.test.ts +17 -11
- package/packages/model-runtime/src/core/contextBuilders/anthropic.ts +1 -1
- package/packages/model-runtime/src/core/contextBuilders/google.test.ts +480 -1
- package/packages/model-runtime/src/core/contextBuilders/google.ts +47 -7
- package/packages/model-runtime/src/core/contextBuilders/openai.test.ts +93 -7
- package/packages/model-runtime/src/core/contextBuilders/openai.ts +47 -14
- package/packages/model-runtime/src/core/openaiCompatibleFactory/createImage.test.ts +1 -1
- package/packages/model-runtime/src/core/openaiCompatibleFactory/createImage.ts +1 -1
- package/packages/model-runtime/src/core/openaiCompatibleFactory/index.test.ts +111 -70
- package/packages/model-runtime/src/core/openaiCompatibleFactory/index.ts +153 -127
- package/packages/model-runtime/src/core/streams/google/google-ai.test.ts +1115 -814
- package/packages/model-runtime/src/core/streams/google/index.ts +19 -5
- 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 +1 -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/providers/aihubmix/index.test.ts +1 -1
- 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/azureai/index.ts +34 -2
- package/packages/model-runtime/src/providers/baichuan/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/bedrock/index.test.ts +1 -1
- 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/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 +2 -2
- package/packages/model-runtime/src/providers/google/createImage.ts +1 -1
- package/packages/model-runtime/src/providers/google/generateObject.test.ts +1 -1
- package/packages/model-runtime/src/providers/google/index.test.ts +2 -5
- package/packages/model-runtime/src/providers/google/index.ts +17 -10
- package/packages/model-runtime/src/providers/groq/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/hunyuan/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/minimax/createImage.test.ts +1 -1
- package/packages/model-runtime/src/providers/minimax/index.ts +36 -6
- package/packages/model-runtime/src/providers/mistral/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/moonshot/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/newapi/index.test.ts +3 -75
- package/packages/model-runtime/src/providers/newapi/index.ts +1 -14
- 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/search1api/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/siliconcloud/createImage.ts +1 -1
- package/packages/model-runtime/src/providers/taichu/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/wenxin/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/wenxin/index.ts +22 -1
- package/packages/model-runtime/src/providers/zhipu/index.test.ts +1 -1
- package/packages/model-runtime/src/types/chat.ts +8 -0
- package/packages/model-runtime/src/types/toolsCalling.ts +3 -1
- package/packages/model-runtime/src/utils/errorResponse.test.ts +1 -1
- package/packages/model-runtime/src/utils/googleErrorParser.test.ts +125 -0
- package/packages/model-runtime/src/utils/googleErrorParser.ts +103 -77
- package/packages/model-runtime/src/utils/modelParse.ts +6 -0
- package/packages/obervability-otel/package.json +13 -13
- 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/ssrf-safe-fetch/index.browser.ts +14 -0
- package/packages/ssrf-safe-fetch/package.json +9 -2
- package/packages/types/src/agent/chatConfig.ts +19 -8
- package/packages/types/src/aiChat.ts +2 -0
- package/packages/types/src/aiProvider.ts +1 -1
- package/packages/types/src/discover/assistants.ts +16 -0
- package/packages/types/src/discover/mcp.ts +6 -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 +2 -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 +5 -5
- package/packages/types/src/importer.ts +6 -6
- package/packages/types/src/index.ts +5 -1
- package/packages/types/src/llm.ts +1 -1
- package/packages/types/src/message/common/base.ts +2 -2
- package/packages/types/src/message/common/metadata.ts +22 -2
- package/packages/types/src/message/common/tools.ts +20 -1
- package/packages/types/src/message/db/item.ts +15 -1
- package/packages/types/src/message/ui/chat.ts +25 -2
- package/packages/types/src/message/ui/extra.ts +2 -2
- package/packages/types/src/message/ui/params.ts +66 -7
- package/packages/types/src/meta.ts +7 -3
- package/packages/types/src/openai/chat.ts +15 -15
- package/packages/types/src/openai/image.ts +1 -1
- package/packages/types/src/plugins/mcp.ts +33 -30
- package/packages/types/src/plugins/protocol.ts +43 -43
- package/packages/types/src/search.ts +4 -4
- package/packages/types/src/serverConfig.ts +2 -6
- package/packages/types/src/session/agentSession.ts +2 -0
- package/packages/types/src/tool/builtin.ts +15 -4
- package/packages/types/src/tool/intervention.ts +32 -3
- package/packages/types/src/tool/plugin.ts +3 -3
- package/packages/types/src/tool/search/index.ts +8 -2
- package/packages/types/src/topic/topic.ts +16 -2
- package/packages/types/src/usage/usageRecord.ts +54 -0
- package/packages/types/src/user/index.ts +2 -76
- package/packages/types/src/user/preference.ts +101 -0
- package/packages/types/src/user/settings/hotkey.ts +1 -1
- package/packages/types/src/user/settings/index.ts +22 -0
- package/packages/types/src/user/settings/tool.ts +2 -39
- 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 +18 -18
- 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 +1 -1
- package/packages/utils/src/merge.ts +3 -3
- package/packages/utils/src/object.ts +3 -3
- package/packages/utils/src/sanitizeUTF8.ts +4 -4
- package/packages/utils/src/server/__tests__/response.test.ts +79 -0
- package/packages/utils/src/server/auth.ts +6 -6
- 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/packages/web-crawler/tsconfig.json +0 -1
- package/renovate.json +40 -1
- package/scripts/migrateServerDB/errorHint.js +1 -7
- package/scripts/prebuild.mts +16 -6
- 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 +8 -4
- 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.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)/signup/[[...signup]]/page.tsx +1 -8
- package/src/app/[variants]/(main)/(mobile)/me/(home)/__tests__/UserBanner.test.tsx +7 -4
- package/src/app/[variants]/(main)/(mobile)/me/(home)/__tests__/useCategory.test.tsx +13 -24
- package/src/app/[variants]/(main)/(mobile)/me/(home)/features/UserBanner.tsx +7 -11
- package/src/app/[variants]/(main)/(mobile)/me/(home)/features/useCategory.tsx +9 -41
- package/src/app/[variants]/(main)/(mobile)/me/(home)/index.tsx +25 -0
- package/src/app/[variants]/(main)/(mobile)/me/(home)/layout.tsx +13 -18
- 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 -10
- package/src/app/[variants]/(main)/chat/_layout/FeatureFlagsProvider.tsx +24 -0
- package/src/app/[variants]/(main)/chat/_layout/Mobile.tsx +6 -9
- 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/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/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 +250 -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 +3 -63
- package/src/app/[variants]/(main)/chat/settings/features/PublishResultModal/index.tsx +64 -0
- package/src/app/[variants]/(main)/chat/settings/features/SmartAgentActionButton/MarketPublishButton.tsx +196 -0
- package/src/app/[variants]/(main)/chat/settings/features/SmartAgentActionButton/MarketPublishModal.tsx +358 -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/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/Related/index.tsx +44 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Sidebar/ServerConfig.tsx +36 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Sidebar/TocList/index.tsx +98 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/index.tsx +59 -0
- package/src/app/[variants]/(main)/discover/(detail)/mcp/loading.tsx +1 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/Overview/index.tsx +22 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/Parameter/ParameterItem.tsx +71 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/Related/index.tsx +31 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/index.tsx +47 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Header.tsx +112 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/ActionButton/ChatWithModel.tsx +92 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/ActionButton/index.tsx +32 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/Related/index.tsx +43 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/RelatedProviders/index.tsx +34 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/index.tsx +51 -0
- package/src/app/[variants]/(main)/discover/(detail)/model/loading.tsx +1 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/features/Details/Related/index.tsx +22 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/features/Details/index.tsx +47 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/ActionButton/ProviderConfig.tsx +91 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/ActionButton/index.tsx +45 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/Related/index.tsx +34 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/RelatedModels/index.tsx +43 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/index.tsx +51 -0
- package/src/app/[variants]/(main)/discover/(detail)/provider/loading.tsx +1 -0
- package/src/app/[variants]/(main)/discover/(list)/(home)/index.tsx +59 -0
- package/src/app/[variants]/(main)/discover/(list)/_layout/Desktop/Nav.tsx +5 -4
- package/src/app/[variants]/(main)/discover/(list)/_layout/Desktop/index.tsx +4 -3
- package/src/app/[variants]/(main)/discover/(list)/_layout/Mobile/Nav.tsx +3 -4
- package/src/app/[variants]/(main)/discover/(list)/_layout/Mobile/index.tsx +4 -3
- package/src/app/[variants]/(main)/discover/(list)/assistant/Client.tsx +6 -2
- package/src/app/[variants]/(main)/discover/(list)/assistant/_layout/Desktop.tsx +3 -4
- package/src/app/[variants]/(main)/discover/(list)/assistant/_layout/Mobile.tsx +3 -3
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/Category/index.tsx +8 -4
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/List/Item.tsx +13 -2
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/MarketSourceSwitch.tsx +64 -0
- package/src/app/[variants]/(main)/discover/(list)/assistant/index.tsx +61 -0
- package/src/app/[variants]/(main)/discover/(list)/features/Pagination.tsx +2 -1
- package/src/app/[variants]/(main)/discover/(list)/features/SortButton/index.tsx +29 -10
- package/src/app/[variants]/(main)/discover/(list)/mcp/_layout/Desktop.tsx +3 -3
- package/src/app/[variants]/(main)/discover/(list)/mcp/_layout/Mobile.tsx +3 -3
- package/src/app/[variants]/(main)/discover/(list)/mcp/features/Category/index.tsx +1 -1
- package/src/app/[variants]/(main)/discover/(list)/mcp/features/List/Item.tsx +2 -1
- package/src/app/[variants]/(main)/discover/(list)/mcp/index.tsx +51 -0
- package/src/app/[variants]/(main)/discover/(list)/model/_layout/Desktop.tsx +3 -3
- package/src/app/[variants]/(main)/discover/(list)/model/_layout/Mobile.tsx +3 -3
- package/src/app/[variants]/(main)/discover/(list)/model/features/Category/index.tsx +1 -1
- package/src/app/[variants]/(main)/discover/(list)/model/features/List/Item.tsx +2 -1
- package/src/app/[variants]/(main)/discover/(list)/model/index.tsx +51 -0
- package/src/app/[variants]/(main)/discover/(list)/provider/features/List/Item.tsx +2 -1
- package/src/app/[variants]/(main)/discover/(list)/provider/index.tsx +50 -0
- package/src/app/[variants]/(main)/discover/_layout/Desktop/index.tsx +4 -4
- package/src/app/[variants]/(main)/discover/_layout/Mobile/index.tsx +3 -3
- package/src/app/[variants]/(main)/discover/components/CategoryMenu.tsx +9 -1
- package/src/app/[variants]/(main)/discover/components/Title.tsx +1 -1
- package/src/app/[variants]/(main)/discover/features/Search.tsx +2 -2
- package/src/app/[variants]/(main)/discover/features/useNav.tsx +11 -12
- package/src/app/[variants]/(main)/hooks/useActiveTabKey.ts +40 -0
- package/src/app/[variants]/(main)/hooks/usePathname.ts +10 -0
- package/src/app/[variants]/(main)/hooks/useQuery.ts +12 -0
- package/src/app/[variants]/(main)/hooks/useRouter.ts +22 -0
- package/src/app/[variants]/(main)/hooks/useSearchParams.ts +11 -0
- package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ModelSelect/ImageModelItem.tsx +93 -0
- package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ModelSelect/index.tsx +161 -0
- package/src/app/[variants]/(main)/image/@topic/features/Topics/TopicList.tsx +1 -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/features/PromptInput/index.tsx +1 -1
- package/src/app/[variants]/(main)/image/index.tsx +18 -0
- package/src/app/[variants]/(main)/knowledge/_layout/Desktop.tsx +17 -0
- package/src/app/[variants]/(main)/knowledge/_layout/Mobile.tsx +17 -0
- package/src/app/[variants]/(main)/knowledge/components/KnowledgeBaseItem/index.tsx +1 -3
- package/src/app/[variants]/(main)/knowledge/components/modal/ModalPageClient.tsx +4 -4
- package/src/app/[variants]/(main)/knowledge/hooks/useFileCategory.ts +6 -3
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/index.tsx +7 -10
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/CategoryMenu.tsx +35 -0
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/Head.tsx +1 -1
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/Menu.tsx +2 -2
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/index.tsx +40 -18
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/layout/Container.tsx +1 -1
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/menu/CategoryMenu.tsx +148 -0
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/menu/KnowledgeBase.tsx +21 -8
- package/src/app/[variants]/(main)/labs/components/LabCard.tsx +8 -6
- package/src/app/[variants]/(main)/labs/index.tsx +74 -0
- package/src/app/[variants]/(main)/layouts/desktop/DesktopLayoutContainer.tsx +33 -0
- package/src/app/[variants]/(main)/layouts/desktop/SideBar/BottomActions.tsx +46 -0
- package/src/app/[variants]/(main)/layouts/desktop/SideBar/PinList/index.tsx +121 -0
- package/src/app/[variants]/(main)/layouts/desktop/SideBar/TopActions.test.tsx +141 -0
- package/src/app/[variants]/(main)/layouts/desktop/SideBar/TopActions.tsx +117 -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)/desktop.tsx +26 -0
- 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 +20 -20
- 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 +8 -11
- 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 +4 -7
- 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 -7
- 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/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/hooks/useCategory.tsx +8 -16
- package/src/app/[variants]/(main)/settings/page.tsx +11 -12
- package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/Card.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/(list)/index.tsx +2 -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 +97 -7
- package/src/app/[variants]/(main)/settings/provider/ProviderMenu/SearchResult.tsx +5 -5
- package/src/app/[variants]/(main)/settings/provider/_layout/Desktop/Container.tsx +10 -4
- package/src/app/[variants]/(main)/settings/provider/_layout/Mobile.tsx +2 -2
- package/src/app/[variants]/(main)/settings/provider/detail/azure/index.tsx +6 -8
- package/src/app/[variants]/(main)/settings/provider/detail/azureai/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/detail/bedrock/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/detail/cloudflare/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/detail/comfyui/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/detail/github/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/detail/index.tsx +4 -0
- 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 +74 -97
- package/src/app/[variants]/(main)/settings/provider/features/ProviderConfig/UpdateProviderInfo/SettingModal.tsx +3 -3
- 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]/DesktopRouter.tsx +40 -0
- package/src/app/[variants]/MobileRouter.tsx +41 -0
- package/src/app/[variants]/desktopRouter.config.tsx +346 -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]/loading/index.tsx +1 -10
- package/src/app/[variants]/mobileRouter.config.tsx +378 -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 +17 -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/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 +8 -13
- package/src/components/InvalidAPIKey/APIKeyForm/useApiKey.ts +0 -12
- package/src/components/Link.tsx +12 -0
- package/src/components/Skeleton/SkeletonSwitch.tsx +13 -0
- package/src/components/Skeleton/index.ts +2 -0
- package/src/components/mdx/constants.ts +1 -0
- package/src/config/db.ts +0 -5
- package/src/config/featureFlags/schema.test.ts +1 -5
- package/src/config/featureFlags/schema.ts +0 -9
- package/src/config/modelProviders/ai21.ts +1 -16
- package/src/config/modelProviders/ai302.ts +1 -128
- package/src/config/modelProviders/ai360.ts +1 -32
- package/src/config/modelProviders/aihubmix.ts +1 -0
- package/src/config/modelProviders/anthropic.ts +1 -71
- package/src/config/modelProviders/azure.ts +1 -51
- package/src/config/modelProviders/baichuan.ts +1 -57
- package/src/config/modelProviders/bedrock.ts +1 -276
- package/src/config/modelProviders/cloudflare.ts +1 -64
- package/src/config/modelProviders/deepseek.ts +1 -19
- package/src/config/modelProviders/fireworksai.ts +1 -174
- package/src/config/modelProviders/giteeai.ts +1 -135
- package/src/config/modelProviders/github.ts +1 -254
- package/src/config/modelProviders/google.ts +1 -130
- package/src/config/modelProviders/groq.ts +1 -119
- package/src/config/modelProviders/higress.ts +1 -1713
- package/src/config/modelProviders/huggingface.ts +1 -54
- package/src/config/modelProviders/hunyuan.ts +1 -83
- package/src/config/modelProviders/infiniai.ts +1 -74
- package/src/config/modelProviders/internlm.ts +1 -20
- package/src/config/modelProviders/mistral.ts +1 -95
- package/src/config/modelProviders/modelscope.ts +1 -27
- package/src/config/modelProviders/moonshot.ts +1 -29
- package/src/config/modelProviders/newapi.ts +1 -0
- package/src/config/modelProviders/novita.ts +1 -105
- package/src/config/modelProviders/ollama.ts +1 -325
- package/src/config/modelProviders/openai.ts +1 -242
- package/src/config/modelProviders/openrouter.ts +1 -240
- package/src/config/modelProviders/perplexity.ts +1 -45
- package/src/config/modelProviders/ppio.ts +1 -152
- package/src/config/modelProviders/qiniu.ts +1 -18
- package/src/config/modelProviders/qwen.ts +1 -245
- package/src/config/modelProviders/search1api.ts +1 -34
- package/src/config/modelProviders/sensenova.ts +1 -69
- package/src/config/modelProviders/siliconcloud.ts +1 -417
- package/src/config/modelProviders/spark.ts +1 -59
- package/src/config/modelProviders/stepfun.ts +1 -98
- package/src/config/modelProviders/taichu.ts +1 -18
- package/src/config/modelProviders/togetherai.ts +1 -274
- package/src/config/modelProviders/upstage.ts +1 -28
- package/src/config/modelProviders/wenxin.ts +3 -143
- package/src/config/modelProviders/xai.ts +1 -38
- package/src/config/modelProviders/zeroone.ts +1 -81
- package/src/config/modelProviders/zhipu.ts +1 -108
- package/src/envs/__tests__/app.test.ts +47 -13
- package/src/envs/app.ts +13 -9
- package/src/envs/auth.ts +0 -179
- 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 +23 -0
- package/src/features/ChatInput/ActionBar/Model/GPT51ReasoningEffortSlider.tsx +58 -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 +2 -2
- package/src/features/ChatInput/ActionBar/Upload/index.tsx +1 -3
- package/src/features/ChatInput/ActionBar/components/ActionDropdown.tsx +2 -17
- package/src/features/ChatInput/ActionBar/index.tsx +2 -2
- package/src/features/ChatInput/InputEditor/index.tsx +2 -2
- package/src/features/ChatItem/components/MessageContent.tsx +3 -1
- package/src/features/ChatItem/components/Title.tsx +20 -16
- package/src/features/ChatItem/style.ts +4 -0
- package/src/features/Conversation/Error/AccessCodeForm.tsx +1 -1
- package/src/features/Conversation/Error/ChatInvalidApiKey.tsx +1 -1
- package/src/features/Conversation/Error/ClerkLogin/index.tsx +1 -1
- package/src/features/Conversation/Error/OAuthForm.tsx +1 -1
- package/src/features/Conversation/Error/index.tsx +0 -5
- package/src/features/Conversation/MarkdownElements/LobeThinking/Render.tsx +3 -3
- package/src/features/Conversation/MarkdownElements/Thinking/Render.tsx +3 -3
- package/src/features/Conversation/MarkdownElements/remarkPlugins/__snapshots__/createRemarkSelfClosingTagPlugin.test.ts.snap +133 -0
- package/src/features/Conversation/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.test.ts +48 -0
- package/src/features/Conversation/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.ts +2 -1
- package/src/features/Conversation/Messages/Assistant/Actions/index.tsx +25 -10
- package/src/features/Conversation/Messages/Assistant/CollapsedMessage.tsx +37 -0
- package/src/features/Conversation/Messages/Assistant/Extra/index.test.tsx +4 -9
- package/src/features/Conversation/Messages/Assistant/Extra/index.tsx +8 -9
- package/src/features/Conversation/Messages/Assistant/MessageContent.tsx +23 -36
- package/src/features/Conversation/Messages/Assistant/index.tsx +297 -180
- package/src/features/Conversation/Messages/Default.tsx +1 -0
- package/src/features/Conversation/Messages/Group/Actions/WithContentId.tsx +200 -0
- package/src/features/Conversation/Messages/Group/Actions/WithoutContentId.tsx +93 -0
- package/src/features/Conversation/Messages/Group/Actions/index.tsx +21 -0
- package/src/features/Conversation/Messages/Group/CollapsedMessage.tsx +37 -0
- package/src/features/Conversation/Messages/Group/ContentBlock.tsx +89 -0
- package/src/features/Conversation/Messages/Group/EditState.tsx +51 -0
- package/src/features/Conversation/Messages/Group/Error/index.tsx +54 -0
- package/src/features/Conversation/Messages/Group/Group.tsx +70 -0
- package/src/features/Conversation/Messages/Group/GroupContext.ts +15 -0
- package/src/features/Conversation/Messages/Group/GroupItem.tsx +41 -0
- package/src/features/Conversation/Messages/Group/MessageContent.tsx +45 -0
- package/src/features/Conversation/Messages/Group/Tool/Inspector/BuiltinPluginTitle.tsx +58 -0
- package/src/features/Conversation/Messages/Group/Tool/Inspector/Debug.tsx +70 -0
- package/src/features/Conversation/Messages/Group/Tool/Inspector/PluginResult.tsx +34 -0
- package/src/features/Conversation/Messages/Group/Tool/Inspector/PluginState.tsx +18 -0
- package/src/features/Conversation/Messages/Group/Tool/Inspector/StatusIndicator.tsx +41 -0
- package/src/features/Conversation/Messages/Group/Tool/Inspector/ToolTitle.tsx +100 -0
- package/src/features/Conversation/Messages/Group/Tool/Inspector/index.tsx +221 -0
- package/src/features/Conversation/Messages/Group/Tool/Render/AbortResponse.tsx +37 -0
- package/src/features/Conversation/Messages/Group/Tool/Render/Arguments/index.tsx +136 -0
- package/src/features/Conversation/Messages/Group/Tool/Render/CustomRender.tsx +88 -0
- package/src/features/Conversation/Messages/Group/Tool/Render/Intervention/ApprovalActions.tsx +164 -0
- package/src/features/Conversation/Messages/Group/Tool/Render/Intervention/Fallback.tsx +98 -0
- package/src/features/Conversation/Messages/Group/Tool/Render/Intervention/KeyValueEditor.tsx +213 -0
- package/src/features/Conversation/Messages/Group/Tool/Render/Intervention/ModeSelector.tsx +133 -0
- package/src/features/Conversation/Messages/Group/Tool/Render/Intervention/index.tsx +103 -0
- package/src/features/Conversation/Messages/Group/Tool/Render/LoadingPlaceholder/index.tsx +29 -0
- package/src/features/Conversation/Messages/Group/Tool/Render/PluginSettings.tsx +66 -0
- package/src/features/Conversation/Messages/Group/Tool/Render/RejectedResponse.tsx +45 -0
- package/src/features/Conversation/Messages/Group/Tool/Render/index.tsx +140 -0
- package/src/features/Conversation/Messages/Group/Tool/index.tsx +98 -0
- package/src/features/Conversation/Messages/Group/Tools.tsx +48 -0
- package/src/features/Conversation/Messages/Group/index.tsx +210 -0
- package/src/features/Conversation/Messages/Supervisor/index.tsx +14 -5
- package/src/features/Conversation/Messages/Tool/Inspector/PluginResult.tsx +39 -0
- package/src/features/Conversation/Messages/Tool/Inspector/PluginState.tsx +23 -0
- package/src/features/Conversation/Messages/Tool/Inspector/Settings.tsx +40 -0
- package/src/features/Conversation/Messages/Tool/Inspector/ToolTitle.tsx +88 -0
- package/src/features/Conversation/Messages/Tool/Inspector/index.tsx +134 -0
- package/src/features/Conversation/Messages/Tool/Render/Arguments/ObjectEntity.tsx +81 -0
- package/src/features/Conversation/Messages/Tool/Render/Arguments/ValueCell.tsx +43 -0
- package/src/features/Conversation/Messages/Tool/Render/CustomRender.tsx +144 -0
- package/src/features/Conversation/Messages/Tool/Render/ErrorResponse.tsx +35 -0
- package/src/features/Conversation/Messages/Tool/Render/PluginSettings.tsx +69 -0
- package/src/features/Conversation/Messages/Tool/Render/index.tsx +46 -0
- package/src/features/Conversation/Messages/Tool/ToolItem.tsx +51 -0
- package/src/features/Conversation/Messages/Tool/index.tsx +58 -0
- package/src/features/Conversation/Messages/User/Actions/ActionsBar.tsx +159 -0
- package/src/features/Conversation/Messages/User/Actions/MessageBranch.tsx +107 -0
- package/src/features/Conversation/Messages/User/Actions/index.tsx +42 -0
- package/src/features/Conversation/Messages/User/index.tsx +59 -54
- package/src/features/Conversation/Messages/index.tsx +42 -19
- package/src/features/Conversation/components/AutoScroll.tsx +4 -4
- package/src/features/Conversation/components/Extras/TTS/InitPlayer.tsx +1 -1
- package/src/features/Conversation/components/Extras/Usage/UsageDetail/AnimatedNumber.tsx +55 -0
- package/src/features/Conversation/components/Extras/Usage/UsageDetail/index.tsx +43 -10
- package/src/features/Conversation/components/Extras/Usage/UsageDetail/tokens.ts +2 -5
- package/src/features/Conversation/components/Extras/Usage/index.tsx +13 -6
- package/src/features/Conversation/components/ShareMessageModal/ShareImage/Preview.tsx +2 -2
- package/src/features/Conversation/components/ShareMessageModal/index.tsx +3 -8
- package/src/features/Conversation/components/VirtualizedList/VirtuosoContext.ts +13 -13
- package/src/features/Conversation/components/VirtualizedList/index.tsx +98 -54
- package/src/features/Conversation/components/WideScreenContainer/index.tsx +10 -6
- package/src/features/Conversation/hooks/useChatListActionsBar.tsx +40 -14
- package/src/features/Conversation/hooks/useDoubleClickEdit.ts +3 -3
- package/src/features/DataImporter/index.tsx +16 -61
- package/src/features/DevPanel/PostgresViewer/usePgTable.ts +5 -12
- 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 +348 -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 +398 -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 +118 -0
- package/src/features/KnowledgeManager/Header/FilesSearchBar.tsx +45 -0
- package/src/features/KnowledgeManager/Header/NewNoteButton.tsx +33 -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 +9 -25
- package/src/features/PluginStore/Content.tsx +2 -3
- 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 +3 -3
- 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/index.tsx +1 -1
- package/src/features/Portal/Home/Body/Plugins/ArtifactList/index.tsx +3 -3
- package/src/features/Portal/Thread/Chat/ChatInput/useSend.ts +3 -3
- package/src/features/ShareModal/ShareImage/Preview.tsx +2 -2
- package/src/features/ShareModal/ShareImage/index.tsx +15 -1
- package/src/features/ShareModal/ShareImage/type.ts +6 -0
- package/src/features/ShareModal/ShareJSON/index.tsx +2 -2
- package/src/features/ShareModal/ShareText/index.tsx +3 -3
- package/src/features/ShareModal/index.tsx +7 -13
- package/src/features/ShareModal/style.ts +40 -30
- package/src/features/User/UserPanel/PanelContent.tsx +8 -9
- package/src/features/User/UserPanel/useMenu.tsx +20 -14
- package/src/features/User/__tests__/PanelContent.test.tsx +13 -7
- package/src/helpers/isCanUseFC.ts +0 -8
- package/src/hooks/useAgentOwnershipCheck.ts +143 -0
- package/src/hooks/useCheckPluginsIsInstalled.ts +1 -4
- package/src/hooks/useDiscoverTab.ts +2 -2
- package/src/hooks/useEnabledChatModels.ts +0 -8
- package/src/hooks/useFetchGroups.ts +1 -4
- package/src/hooks/useFetchInstalledPlugins.ts +1 -4
- package/src/hooks/useFetchMessages.ts +1 -4
- package/src/hooks/useFetchSessions.ts +1 -4
- package/src/hooks/useFetchThreads.ts +1 -5
- package/src/hooks/useFetchTopics.ts +1 -4
- package/src/hooks/useHotkeys/chatScope.ts +16 -8
- package/src/hooks/useInterceptingRoutes.test.ts +22 -26
- package/src/hooks/useInterceptingRoutes.ts +6 -11
- package/src/hooks/useModelContextWindowTokens.ts +0 -8
- package/src/hooks/useModelHasContextWindowToken.ts +1 -10
- package/src/hooks/useModelSupportFiles.ts +1 -11
- package/src/hooks/useModelSupportReasoning.ts +1 -11
- package/src/hooks/useModelSupportToolUse.ts +1 -11
- package/src/hooks/useModelSupportVision.ts +1 -11
- package/src/hooks/usePinnedAgentState.ts +6 -6
- package/src/hooks/useQuery.ts +5 -0
- package/src/hooks/useQueryParam.ts +322 -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/Clerk/index.tsx +2 -16
- package/src/layout/AuthProvider/MarketAuth/MarketAuthProvider.tsx +364 -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 +64 -0
- package/src/layout/AuthProvider/index.tsx +17 -4
- package/src/layout/GlobalProvider/ImportSettings.tsx +22 -9
- package/src/layout/GlobalProvider/StoreInitialization.tsx +11 -5
- package/src/libs/mcp/__tests__/__snapshots__/index.test.ts.snap +0 -6
- package/src/libs/mcp/__tests__/index.test.ts +6 -6
- package/src/libs/mcp/client.ts +3 -2
- package/src/libs/mcp/types.ts +71 -0
- package/src/libs/next-auth/auth.config.ts +3 -6
- package/src/libs/next-auth/sso-providers/auth0.ts +0 -7
- package/src/libs/next-auth/sso-providers/authelia.ts +3 -5
- package/src/libs/next-auth/sso-providers/authentik.ts +0 -7
- package/src/libs/next-auth/sso-providers/cloudflare-zero-trust.ts +3 -6
- package/src/libs/next-auth/sso-providers/cognito.ts +1 -5
- package/src/libs/next-auth/sso-providers/generic-oidc.ts +3 -5
- package/src/libs/next-auth/sso-providers/github.ts +0 -6
- package/src/libs/next-auth/sso-providers/google.ts +0 -2
- package/src/libs/next-auth/sso-providers/keycloak.ts +0 -3
- package/src/libs/next-auth/sso-providers/logto.ts +3 -5
- package/src/libs/next-auth/sso-providers/okta.ts +0 -4
- package/src/libs/next-auth/sso-providers/zitadel.ts +0 -7
- package/src/libs/trpc/client/index.ts +0 -1
- package/src/libs/trpc/client/lambda.ts +14 -8
- package/src/libs/trpc/lambda/context.ts +4 -1
- package/src/libs/trpc/lambda/index.ts +5 -2
- package/src/libs/trpc/middleware/openTelemetry.ts +141 -0
- package/src/libs/trpc/utils/request-adapter.ts +20 -0
- package/src/locales/default/auth.ts +44 -0
- package/src/locales/default/chat.ts +37 -0
- package/src/locales/default/common.ts +3 -0
- package/src/locales/default/components.ts +6 -0
- package/src/locales/default/discover.ts +46 -0
- package/src/locales/default/error.ts +2 -2
- package/src/locales/default/file.ts +87 -2
- package/src/locales/default/index.ts +2 -0
- package/src/locales/default/labs.ts +4 -0
- package/src/locales/default/marketAuth.ts +42 -0
- package/src/locales/default/modelProvider.ts +16 -2
- package/src/locales/default/oauth.ts +1 -0
- package/src/locales/default/plugin.ts +10 -1
- package/src/locales/default/setting.ts +94 -1
- package/src/locales/default/tool.ts +19 -0
- package/src/locales/default/topic.ts +1 -0
- package/src/proxy.ts +13 -1
- package/src/server/globalConfig/genServerAiProviderConfig.test.ts +5 -5
- package/src/server/globalConfig/genServerAiProviderConfig.ts +1 -1
- package/src/server/globalConfig/index.ts +0 -23
- package/src/server/modules/ContentChunk/index.test.ts +372 -0
- 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/desktop/mcp.ts +22 -11
- 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/aiChat.ts +3 -2
- package/src/server/routers/lambda/config/__snapshots__/index.test.ts.snap +175 -12
- package/src/server/routers/lambda/config/index.test.ts +38 -30
- package/src/server/routers/lambda/document.ts +57 -0
- package/src/server/routers/lambda/file.ts +89 -2
- package/src/server/routers/lambda/index.ts +2 -0
- package/src/server/routers/lambda/knowledge.ts +94 -0
- package/src/server/routers/lambda/market/index.ts +38 -14
- 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 +32 -31
- package/src/server/routers/mobile/index.ts +14 -2
- package/src/server/routers/tools/mcp.ts +24 -7
- package/src/server/routers/tools/search.test.ts +1 -7
- package/src/server/routers/tools/search.ts +1 -4
- package/src/server/services/discover/index.test.ts +153 -11
- package/src/server/services/discover/index.ts +339 -40
- package/src/server/services/document/index.ts +103 -0
- package/src/server/services/file/impls/local.ts +4 -1
- package/src/server/services/file/index.ts +96 -1
- 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/checkers/ManualInstallationChecker.test.ts +162 -0
- package/src/server/services/mcp/deps/checkers/NpmInstallationChecker.test.ts +374 -0
- package/src/server/services/mcp/deps/checkers/PythonInstallationChecker.test.ts +368 -0
- package/src/server/services/mcp/index.test.ts +80 -25
- package/src/server/services/mcp/index.ts +37 -23
- package/src/server/services/message/__tests__/index.test.ts +338 -0
- package/src/server/services/message/index.ts +187 -0
- package/src/server/services/oidc/index.test.ts +232 -0
- package/src/server/services/oidc/index.ts +24 -0
- package/src/server/services/usage/index.test.ts +310 -0
- package/src/server/services/usage/index.ts +164 -0
- package/src/server/sitemap.ts +49 -35
- package/src/server/utils/createSpeechResponse.ts +55 -0
- package/src/services/__tests__/tool.test.ts +0 -3
- package/src/services/__tests__/upload.test.ts +92 -82
- package/src/services/_auth.ts +2 -11
- package/src/services/_header.ts +2 -10
- package/src/services/_url.ts +15 -1
- package/src/services/aiModel/index.test.ts +3 -6
- package/src/services/aiModel/index.ts +55 -7
- package/src/services/aiProvider/index.test.ts +2 -5
- package/src/services/aiProvider/index.ts +47 -7
- package/src/services/chat/chat.test.ts +68 -12
- package/src/services/chat/clientModelRuntime.test.ts +109 -173
- package/src/services/chat/contextEngineering.test.ts +4 -0
- package/src/services/chat/contextEngineering.ts +8 -7
- package/src/services/chat/helper.ts +7 -31
- package/src/services/chat/index.ts +20 -9
- package/src/services/chat/types.ts +1 -2
- package/src/services/chatGroup/index.ts +64 -9
- package/src/services/config.ts +2 -66
- package/src/services/discover.ts +28 -17
- package/src/services/document/index.ts +44 -0
- package/src/services/electron/desktopNotification.ts +6 -6
- package/src/services/electron/file.ts +6 -6
- package/src/services/electron/localFileService.ts +4 -0
- package/src/services/electron/remoteServer.ts +8 -1
- package/src/services/export/index.ts +9 -4
- package/src/services/file/index.ts +70 -10
- package/src/services/import/index.ts +132 -7
- package/src/services/marketApi.ts +124 -0
- package/src/services/mcp.test.ts +783 -0
- package/src/services/mcp.ts +39 -4
- package/src/services/message/__tests__/metadata-race-condition.test.ts +157 -0
- package/src/services/message/index.ts +235 -10
- package/src/services/message/server.test.ts +44 -0
- package/src/services/models.ts +4 -12
- package/src/services/plugin/index.test.ts +8 -0
- package/src/services/plugin/index.ts +51 -10
- package/src/services/search.ts +2 -2
- package/src/services/session/index.test.ts +8 -0
- package/src/services/session/index.ts +129 -10
- package/src/services/tableViewer/client.ts +12 -15
- package/src/services/thread/index.test.ts +8 -0
- package/src/services/thread/index.ts +37 -7
- package/src/services/topic/index.test.ts +8 -0
- package/src/services/topic/index.ts +74 -10
- package/src/services/upload.ts +14 -43
- package/src/services/usage.ts +13 -0
- package/src/services/user/index.test.ts +8 -0
- package/src/services/user/index.ts +50 -11
- package/src/services/utils/abortableRequest.test.ts +161 -0
- package/src/services/utils/abortableRequest.ts +67 -0
- 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 +62 -0
- package/src/store/aiInfra/slices/aiProvider/action.ts +116 -37
- package/src/store/aiInfra/slices/aiProvider/selectors.ts +1 -1
- package/src/store/chat/agents/GeneralChatAgent.ts +377 -0
- package/src/store/chat/agents/__tests__/GeneralChatAgent.test.ts +1144 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/call-llm.test.ts +1217 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/call-tool.test.ts +1976 -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 +185 -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 +139 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/request-human-approve.test.ts +545 -0
- package/src/store/chat/agents/__tests__/createAgentExecutors/resolve-aborted-tools.test.ts +686 -0
- package/src/store/chat/agents/createAgentExecutors.ts +761 -0
- package/src/store/chat/agents/createToolEngine.ts +22 -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 +267 -0
- package/src/store/chat/slices/aiChat/actions/__tests__/fixtures.ts +0 -2
- package/src/store/chat/slices/aiChat/actions/__tests__/helpers.ts +19 -8
- package/src/store/chat/slices/aiChat/actions/__tests__/rag.test.ts +6 -6
- package/src/store/chat/slices/aiChat/actions/__tests__/streamingExecutor.test.ts +876 -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 +421 -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 +9 -6
- package/src/store/chat/slices/aiChat/actions/streamingExecutor.ts +898 -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 +221 -47
- package/src/store/chat/slices/builtinTool/actions/interpreter.ts +86 -51
- package/src/store/chat/slices/builtinTool/actions/localSystem.ts +116 -203
- package/src/store/chat/slices/builtinTool/actions/search.ts +170 -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 +276 -0
- package/src/store/chat/slices/message/actions/query.ts +122 -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 +513 -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 +375 -0
- package/src/store/chat/slices/operation/types.ts +160 -0
- package/src/store/chat/slices/plugin/action.test.ts +320 -352
- package/src/store/chat/slices/plugin/actions/index.ts +39 -0
- package/src/store/chat/slices/plugin/actions/internals.ts +69 -0
- package/src/store/chat/slices/plugin/actions/optimisticUpdate.ts +252 -0
- package/src/store/chat/slices/plugin/actions/pluginTypes.ts +264 -0
- package/src/store/chat/slices/plugin/actions/publicApi.ts +119 -0
- package/src/store/chat/slices/plugin/actions/workflow.ts +77 -0
- package/src/store/chat/slices/portal/selectors.test.ts +7 -7
- package/src/store/chat/slices/portal/selectors.ts +2 -2
- package/src/store/chat/slices/thread/action.test.ts +38 -32
- package/src/store/chat/slices/thread/action.ts +19 -12
- package/src/store/chat/slices/thread/selectors/index.ts +12 -8
- package/src/store/chat/slices/topic/action.test.ts +1 -1
- package/src/store/chat/slices/topic/action.ts +4 -5
- package/src/store/chat/slices/topic/reducer.ts +12 -5
- package/src/store/chat/slices/translate/action.test.ts +26 -32
- package/src/store/chat/slices/translate/action.ts +57 -44
- package/src/store/chat/store.ts +6 -3
- package/src/store/discover/slices/assistant/action.ts +20 -7
- package/src/store/file/initialState.ts +6 -1
- package/src/store/file/slices/chat/action.ts +3 -6
- package/src/store/file/slices/document/action.ts +359 -0
- package/src/store/file/slices/document/index.ts +3 -0
- package/src/store/file/slices/document/initialState.ts +22 -0
- package/src/store/file/slices/document/selectors.ts +25 -0
- package/src/store/file/slices/fileManager/action.test.ts +16 -9
- package/src/store/file/slices/fileManager/action.ts +12 -13
- package/src/store/file/store.ts +3 -0
- package/src/store/global/action.test.ts +3 -3
- package/src/store/global/actions/workspacePane.ts +2 -1
- package/src/store/global/initialState.ts +23 -3
- package/src/store/global/selectors/systemStatus.test.ts +0 -98
- package/src/store/global/selectors/systemStatus.ts +9 -30
- package/src/store/global/store.ts +1 -7
- package/src/store/serverConfig/selectors.test.ts +2 -2
- package/src/store/serverConfig/store.test.ts +0 -1
- package/src/store/session/slices/sessionGroup/action.test.ts +5 -5
- package/src/store/tool/slices/mcpStore/action.test.ts +95 -3
- package/src/store/tool/slices/mcpStore/action.ts +177 -53
- package/src/store/tool/slices/oldStore/initialState.ts +1 -2
- package/src/store/user/initialState.ts +1 -7
- package/src/store/user/selectors.ts +2 -5
- package/src/store/user/slices/common/action.test.ts +1 -4
- package/src/store/user/slices/common/action.ts +9 -4
- 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/index.ts +2 -0
- package/src/store/user/slices/settings/selectors/keyVaults.ts +21 -0
- package/src/store/user/slices/settings/selectors/settings.test.ts +0 -37
- package/src/store/user/slices/settings/selectors/settings.ts +0 -5
- package/src/store/user/slices/settings/selectors/toolIntervention.ts +17 -0
- package/src/store/user/store.ts +0 -3
- package/src/tools/code-interpreter/Render/index.tsx +1 -1
- package/src/tools/executionRuntimes.ts +3 -0
- package/src/tools/interventions.ts +30 -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 +35 -6
- package/src/tools/web-browsing/ExecutionRuntime/index.ts +5 -2
- package/src/tools/web-browsing/Placeholder/CrawlMultiPages.tsx +30 -0
- package/src/tools/web-browsing/Placeholder/CrawlSinglePage.tsx +12 -0
- package/src/tools/web-browsing/Placeholder/Search.tsx +4 -4
- package/src/tools/web-browsing/Portal/Search/Footer.tsx +11 -9
- package/src/tools/web-browsing/Render/CrawlMultiPages.tsx +15 -0
- package/src/tools/web-browsing/Render/CrawlSinglePage.tsx +15 -0
- package/src/tools/web-browsing/Render/Search/ConfigForm/Form.tsx +1 -1
- package/src/tools/web-browsing/Render/Search/index.tsx +39 -44
- package/src/tools/web-browsing/Render/index.ts +13 -0
- package/src/utils/electron/desktopRemoteRPCFetch.ts +87 -0
- package/src/utils/server/parseModels.ts +212 -0
- package/src/utils/server/routeVariants.test.ts +340 -0
- package/src/utils/server/routeVariants.ts +10 -10
- package/tsconfig.json +0 -1
- package/vitest.config.mts +2 -0
- package/Dockerfile.lite +0 -272
- package/packages/context-engine/ARCHITECTURE.md +0 -425
- package/packages/database/src/models/__tests__/message.grouping.test.ts +0 -812
- package/packages/database/src/models/__tests__/message.test.ts +0 -2704
- package/packages/database/src/schemas/document.ts +0 -106
- package/packages/database/src/utils/__tests__/groupMessages.test.ts +0 -1132
- package/packages/database/src/utils/groupMessages.ts +0 -361
- package/packages/model-runtime/src/utils/imageToBase64.test.ts +0 -91
- package/packages/model-runtime/src/utils/imageToBase64.ts +0 -62
- package/packages/utils/src/_deprecated/__snapshots__/parseModels.test.ts.snap +0 -104
- package/packages/utils/src/_deprecated/parseModels.test.ts +0 -287
- package/packages/utils/src/_deprecated/parseModels.ts +0 -165
- package/packages/utils/src/electron/desktopRemoteRPCFetch.ts +0 -87
- package/packages/utils/src/fetch/__tests__/fetchSSE.test.ts +0 -579
- package/packages/utils/src/fetch/__tests__/parseError.test.ts +0 -88
- package/packages/utils/src/fetch/fetchSSE.ts +0 -477
- package/packages/utils/src/fetch/headers.ts +0 -27
- package/packages/utils/src/fetch/parseError.ts +0 -24
- package/packages/utils/src/fetch/request.ts +0 -28
- package/packages/utils/src/parseModels.ts +0 -213
- package/packages/utils/src/tokenizer/client.ts +0 -35
- package/packages/utils/src/tokenizer/estimated.ts +0 -4
- package/packages/utils/src/tokenizer/server.ts +0 -11
- package/packages/utils/src/tokenizer/tokenizer.worker.ts +0 -12
- package/src/app/(backend)/trpc/edge/[trpc]/route.ts +0 -26
- 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/data/features/Category.tsx +0 -48
- package/src/app/[variants]/(main)/(mobile)/me/data/features/Header.tsx +0 -33
- package/src/app/[variants]/(main)/(mobile)/me/data/layout.tsx +0 -13
- package/src/app/[variants]/(main)/(mobile)/me/data/loading.tsx +0 -5
- package/src/app/[variants]/(main)/(mobile)/me/data/page.tsx +0 -29
- 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/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/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)/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 -229
- 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/features/Migration/DBReader.ts +0 -290
- package/src/app/[variants]/(main)/chat/features/Migration/ExportConfigButton.tsx +0 -35
- package/src/app/[variants]/(main)/chat/features/Migration/Failed.tsx +0 -120
- package/src/app/[variants]/(main)/chat/features/Migration/Modal.tsx +0 -81
- package/src/app/[variants]/(main)/chat/features/Migration/Start.tsx +0 -108
- package/src/app/[variants]/(main)/chat/features/Migration/UpgradeButton.tsx +0 -71
- package/src/app/[variants]/(main)/chat/features/Migration/const.ts +0 -15
- package/src/app/[variants]/(main)/chat/features/Migration/index.tsx +0 -50
- package/src/app/[variants]/(main)/chat/layout.ts +0 -11
- package/src/app/[variants]/(main)/chat/loading.tsx +0 -3
- 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/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/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 -47
- 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/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/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]/loading/Client/Content.tsx +0 -48
- package/src/app/[variants]/loading/Client/Error.tsx +0 -27
- package/src/app/[variants]/loading/Client/Redirect.tsx +0 -47
- package/src/app/[variants]/loading/Client/index.tsx +0 -22
- package/src/app/[variants]/oauth/consent/[uid]/Consent.tsx +0 -189
- package/src/components/InnerLink.tsx +0 -20
- package/src/database/_deprecated/core/__tests__/db-upgrade.test.ts +0 -42
- package/src/database/_deprecated/core/__tests__/db.test.ts +0 -79
- package/src/database/_deprecated/core/__tests__/model.test.ts +0 -55
- package/src/database/_deprecated/core/db.ts +0 -246
- package/src/database/_deprecated/core/index.ts +0 -2
- package/src/database/_deprecated/core/migrations/migrateSettingsToUser/fixtures/input.json +0 -55
- package/src/database/_deprecated/core/migrations/migrateSettingsToUser/fixtures/output.json +0 -60
- package/src/database/_deprecated/core/migrations/migrateSettingsToUser/index.test.ts +0 -14
- package/src/database/_deprecated/core/migrations/migrateSettingsToUser/index.ts +0 -22
- package/src/database/_deprecated/core/migrations/migrateSettingsToUser/type.ts +0 -105
- package/src/database/_deprecated/core/model.ts +0 -218
- package/src/database/_deprecated/core/schemas.ts +0 -88
- package/src/database/_deprecated/core/types/db.ts +0 -15
- package/src/database/_deprecated/models/__DEBUG.ts +0 -124
- package/src/database/_deprecated/models/__tests__/file.test.ts +0 -83
- package/src/database/_deprecated/models/__tests__/message.test.ts +0 -426
- package/src/database/_deprecated/models/__tests__/plugin.test.ts +0 -81
- package/src/database/_deprecated/models/__tests__/session.test.ts +0 -253
- package/src/database/_deprecated/models/__tests__/sessionGroup.test.ts +0 -220
- package/src/database/_deprecated/models/__tests__/topic.test.ts +0 -523
- package/src/database/_deprecated/models/__tests__/user.test.ts +0 -82
- package/src/database/_deprecated/models/file.ts +0 -51
- package/src/database/_deprecated/models/message.ts +0 -277
- package/src/database/_deprecated/models/plugin.ts +0 -62
- package/src/database/_deprecated/models/session.ts +0 -271
- package/src/database/_deprecated/models/sessionGroup.ts +0 -93
- package/src/database/_deprecated/models/topic.ts +0 -250
- package/src/database/_deprecated/models/user.ts +0 -69
- package/src/database/_deprecated/schemas/files.ts +0 -39
- package/src/database/_deprecated/schemas/message.ts +0 -50
- package/src/database/_deprecated/schemas/plugin.ts +0 -12
- package/src/database/_deprecated/schemas/session.ts +0 -54
- package/src/database/_deprecated/schemas/sessionGroup.ts +0 -8
- package/src/database/_deprecated/schemas/topic.ts +0 -12
- package/src/database/_deprecated/schemas/user.ts +0 -40
- package/src/envs/__tests__/auth.test.ts +0 -200
- package/src/features/ChatInput/ActionBar/Upload/ClientMode.tsx +0 -62
- package/src/features/Conversation/Error/InvalidAccessCode.tsx +0 -79
- 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/User/Actions.tsx +0 -158
- package/src/features/DataImporter/_deprecated.ts +0 -43
- 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/index.tsx +0 -27
- package/src/features/FileManager/index.tsx +0 -36
- package/src/features/InitClientDB/EnableModal.tsx +0 -118
- package/src/features/InitClientDB/ErrorResult.tsx +0 -143
- package/src/features/InitClientDB/InitIndicator.tsx +0 -124
- package/src/features/InitClientDB/PGliteIcon.tsx +0 -28
- package/src/features/InitClientDB/features/DatabaseRepair/Backup.tsx +0 -75
- package/src/features/InitClientDB/features/DatabaseRepair/Diagnosis.tsx +0 -98
- package/src/features/InitClientDB/features/DatabaseRepair/Repair.tsx +0 -218
- package/src/features/InitClientDB/features/DatabaseRepair/index.tsx +0 -91
- package/src/features/InitClientDB/index.tsx +0 -37
- package/src/hooks/_header.ts +0 -23
- package/src/libs/trpc/client/edge.ts +0 -26
- package/src/libs/trpc/edge/context.ts +0 -71
- package/src/libs/trpc/edge/index.ts +0 -45
- package/src/libs/trpc/edge/init.ts +0 -26
- package/src/libs/trpc/edge/middleware/jwtPayload.test.ts +0 -75
- package/src/libs/trpc/edge/middleware/jwtPayload.ts +0 -14
- package/src/migrations/FromV0ToV1.ts +0 -10
- package/src/migrations/FromV1ToV2/fixtures/input-v1-session.json +0 -191
- package/src/migrations/FromV1ToV2/fixtures/output-v2.json +0 -202
- package/src/migrations/FromV1ToV2/index.ts +0 -82
- package/src/migrations/FromV1ToV2/migrations.test.ts +0 -224
- package/src/migrations/FromV1ToV2/types/v1.ts +0 -78
- package/src/migrations/FromV1ToV2/types/v2.ts +0 -52
- package/src/migrations/FromV2ToV3/fixtures/input-v2-session.json +0 -72
- package/src/migrations/FromV2ToV3/fixtures/output-v3-from-v1.json +0 -203
- package/src/migrations/FromV2ToV3/fixtures/output-v3.json +0 -74
- package/src/migrations/FromV2ToV3/index.ts +0 -30
- package/src/migrations/FromV2ToV3/migrations.test.ts +0 -42
- package/src/migrations/FromV2ToV3/types/v3.ts +0 -27
- package/src/migrations/FromV3ToV4/fixtures/azure-input-v3.json +0 -79
- package/src/migrations/FromV3ToV4/fixtures/azure-output-v4.json +0 -75
- package/src/migrations/FromV3ToV4/fixtures/ollama-input-v3.json +0 -85
- package/src/migrations/FromV3ToV4/fixtures/ollama-output-v4.json +0 -86
- package/src/migrations/FromV3ToV4/fixtures/openai-input-v3.json +0 -77
- package/src/migrations/FromV3ToV4/fixtures/openai-output-v4.json +0 -77
- package/src/migrations/FromV3ToV4/fixtures/openrouter-input-v3.json +0 -82
- package/src/migrations/FromV3ToV4/fixtures/openrouter-output-v4.json +0 -85
- package/src/migrations/FromV3ToV4/fixtures/output-v4-from-v1.json +0 -203
- package/src/migrations/FromV3ToV4/index.ts +0 -102
- package/src/migrations/FromV3ToV4/migrations.test.ts +0 -195
- package/src/migrations/FromV3ToV4/types/v3.ts +0 -52
- package/src/migrations/FromV3ToV4/types/v4.ts +0 -37
- package/src/migrations/FromV4ToV5/fixtures/from-v1-to-v5-output.json +0 -245
- package/src/migrations/FromV4ToV5/fixtures/function-input-v4.json +0 -96
- package/src/migrations/FromV4ToV5/fixtures/function-output-v5.json +0 -120
- package/src/migrations/FromV4ToV5/index.ts +0 -58
- package/src/migrations/FromV4ToV5/migrations.test.ts +0 -49
- package/src/migrations/FromV4ToV5/types/v4.ts +0 -21
- package/src/migrations/FromV4ToV5/types/v5.ts +0 -27
- package/src/migrations/FromV5ToV6/fixtures/from-v1-to-v6-output.json +0 -247
- package/src/migrations/FromV5ToV6/fixtures/session-input-v5.json +0 -81
- package/src/migrations/FromV5ToV6/fixtures/session-output-v6.json +0 -85
- package/src/migrations/FromV5ToV6/index.ts +0 -61
- package/src/migrations/FromV5ToV6/migrations.test.ts +0 -50
- package/src/migrations/FromV5ToV6/types/v5.ts +0 -48
- package/src/migrations/FromV5ToV6/types/v6.ts +0 -63
- package/src/migrations/FromV6ToV7/fixtures/output-v7-from-v1.json +0 -203
- package/src/migrations/FromV6ToV7/fixtures/provider-input-v6.json +0 -103
- package/src/migrations/FromV6ToV7/fixtures/provider-output-v7.json +0 -118
- package/src/migrations/FromV6ToV7/index.ts +0 -101
- package/src/migrations/FromV6ToV7/migrations.test.ts +0 -64
- package/src/migrations/FromV6ToV7/types/v6.ts +0 -61
- package/src/migrations/FromV6ToV7/types/v7.ts +0 -69
- package/src/migrations/VersionController.test.ts +0 -88
- package/src/migrations/VersionController.ts +0 -67
- package/src/migrations/index.ts +0 -61
- package/src/server/globalConfig/_deprecated.test.ts +0 -92
- package/src/server/globalConfig/_deprecated.ts +0 -41
- package/src/server/routers/edge/appStatus.ts +0 -3
- package/src/server/routers/edge/index.ts +0 -14
- package/src/server/routers/edge/upload.ts +0 -16
- package/src/services/aiModel/client.ts +0 -70
- 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/client.ts +0 -58
- package/src/services/aiProvider/server.ts +0 -43
- package/src/services/aiProvider/type.ts +0 -27
- package/src/services/baseClientService/index.ts +0 -9
- package/src/services/chatGroup/client.ts +0 -63
- package/src/services/chatGroup/server.ts +0 -67
- package/src/services/chatGroup/type.ts +0 -22
- package/src/services/export/_deprecated.ts +0 -155
- package/src/services/export/client.ts +0 -15
- 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/_deprecated.test.ts +0 -119
- package/src/services/file/_deprecated.ts +0 -80
- package/src/services/file/client.test.ts +0 -199
- package/src/services/file/client.ts +0 -85
- package/src/services/file/server.ts +0 -53
- package/src/services/file/type.ts +0 -13
- package/src/services/import/_deprecated.ts +0 -115
- package/src/services/import/client.test.ts +0 -1015
- package/src/services/import/client.ts +0 -64
- 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/_deprecated.test.ts +0 -398
- package/src/services/message/_deprecated.ts +0 -168
- package/src/services/message/client.test.ts +0 -410
- package/src/services/message/client.ts +0 -192
- package/src/services/message/server.ts +0 -155
- package/src/services/message/type.ts +0 -59
- package/src/services/plugin/_deprecated.test.ts +0 -162
- package/src/services/plugin/_deprecated.ts +0 -42
- package/src/services/plugin/client.test.ts +0 -177
- package/src/services/plugin/client.ts +0 -46
- package/src/services/plugin/server.ts +0 -42
- package/src/services/plugin/type.ts +0 -23
- package/src/services/session/_deprecated.test.ts +0 -440
- package/src/services/session/_deprecated.ts +0 -190
- package/src/services/session/client.test.ts +0 -413
- package/src/services/session/client.ts +0 -193
- 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/client.ts +0 -51
- package/src/services/thread/server.ts +0 -32
- package/src/services/thread/type.ts +0 -21
- package/src/services/topic/_deprecated.test.ts +0 -245
- package/src/services/topic/_deprecated.ts +0 -75
- package/src/services/topic/client.ts +0 -89
- package/src/services/topic/pglite.test.ts +0 -212
- package/src/services/topic/server.ts +0 -57
- package/src/services/topic/type.ts +0 -40
- package/src/services/user/_deprecated.test.ts +0 -101
- package/src/services/user/_deprecated.ts +0 -70
- package/src/services/user/client.test.ts +0 -111
- package/src/services/user/client.ts +0 -104
- 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 -1209
- package/src/store/chat/slices/aiChat/actions/__tests__/generateAIChatV2.test.ts +0 -718
- package/src/store/chat/slices/aiChat/actions/generateAIChat.ts +0 -849
- package/src/store/chat/slices/aiChat/actions/generateAIChatV2.ts +0 -591
- package/src/store/chat/slices/message/action.ts +0 -641
- package/src/store/chat/slices/plugin/action.ts +0 -505
- package/src/store/global/actions/clientDb.ts +0 -67
- package/src/store/middleware/createHyperStorage/index.test.ts +0 -341
- package/src/store/middleware/createHyperStorage/index.ts +0 -126
- package/src/store/middleware/createHyperStorage/indexedDB.test.ts +0 -64
- package/src/store/middleware/createHyperStorage/indexedDB.ts +0 -26
- package/src/store/middleware/createHyperStorage/keyMapper.ts +0 -57
- package/src/store/middleware/createHyperStorage/localStorage.ts +0 -18
- package/src/store/middleware/createHyperStorage/type.ts +0 -25
- package/src/store/middleware/createHyperStorage/urlStorage.test.ts +0 -84
- package/src/store/middleware/createHyperStorage/urlStorage.ts +0 -81
- package/src/store/user/slices/modelList/__snapshots__/action.test.ts.snap +0 -12
- package/src/store/user/slices/modelList/action.test.ts +0 -359
- package/src/store/user/slices/modelList/action.ts +0 -223
- package/src/store/user/slices/modelList/initialState.ts +0 -15
- package/src/store/user/slices/modelList/reducers/customModelCard.test.ts +0 -204
- package/src/store/user/slices/modelList/reducers/customModelCard.ts +0 -64
- package/src/store/user/slices/modelList/selectors/index.ts +0 -3
- package/src/store/user/slices/modelList/selectors/keyVaults.test.ts +0 -201
- package/src/store/user/slices/modelList/selectors/keyVaults.ts +0 -50
- package/src/store/user/slices/modelList/selectors/modelConfig.test.ts +0 -219
- package/src/store/user/slices/modelList/selectors/modelConfig.ts +0 -95
- package/src/store/user/slices/modelList/selectors/modelProvider.test.ts +0 -138
- package/src/store/user/slices/modelList/selectors/modelProvider.ts +0 -170
- package/src/store/user/slices/preference/selectors.ts +0 -34
- package/src/tools/local-system/Placeholder/index.tsx +0 -25
- package/src/tools/local-system/Render/index.tsx +0 -40
- package/src/tools/web-browsing/Placeholder/PageContent.tsx +0 -27
- package/src/tools/web-browsing/Placeholder/index.tsx +0 -40
- package/src/tools/web-browsing/Render/index.tsx +0 -57
- /package/packages/{utils/src/fetch → fetch-sse/src}/index.ts +0 -0
- /package/src/app/[variants]/{@modal/(.)changelog/modal → (main)/changelog}/features/Pagination.tsx +0 -0
- /package/src/app/[variants]/{@modal/(.)changelog/modal → (main)/changelog}/features/UpdateChangelogStatus.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/default.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/Desktop/ClassicChat.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/Desktop/GroupChat.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/ChatList/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/TopicItem/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicSearchBar/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/CollapseGroup/Actions.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/CollapseGroup/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/DefaultMode.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/List/AddButton.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/ListItem/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/ConfigGroupModal/GroupItem.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/ConfigGroupModal/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/CreateGroupModal.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/RenameGroupModal.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/SearchMode.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionSearchBar.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session → session}/features/SkeletonList.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Desktop/PanelBody.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Desktop/SessionHeader.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Desktop/index.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Mobile/index.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/DetailProvider.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/Knowledge.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/KnowledgeItem.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/PluginItem.tsx +0 -0
- /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/Plugins.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/ActionButton/index.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)/settings/provider/features/ProviderConfig → components/Skeleton}/SkeletonInput.tsx +0 -0
- /package/src/features/Conversation/Messages/{Assistant → Group}/Tool/Inspector/Settings.tsx +0 -0
- /package/src/features/Conversation/Messages/{Assistant → Group}/Tool/Render/Arguments/ObjectEntity.tsx +0 -0
- /package/src/features/Conversation/Messages/{Assistant → Group}/Tool/Render/Arguments/ValueCell.tsx +0 -0
- /package/src/features/Conversation/Messages/{Assistant → Group}/Tool/Render/ErrorResponse.tsx +0 -0
- /package/src/features/Conversation/Messages/{Assistant/Tool → Tool}/Inspector/BuiltinPluginTitle.tsx +0 -0
- /package/src/features/Conversation/Messages/{Assistant/Tool → Tool}/Inspector/Debug.tsx +0 -0
- /package/src/features/Conversation/Messages/{Assistant/Tool → Tool}/Render/Arguments/index.tsx +0 -0
- /package/src/features/Conversation/Messages/{Assistant/Tool → Tool}/Render/KeyValueEditor.tsx +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/TogglePanelButton.tsx +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
|
@@ -236,6 +236,9 @@
|
|
|
236
236
|
"MiniMaxAI/MiniMax-M1-80k": {
|
|
237
237
|
"description": "MiniMax-M1はオープンソースの重みを持つ大規模混合注意力推論モデルで、4560億のパラメータを有し、各トークンで約459億のパラメータが活性化されます。モデルは100万トークンの超長文コンテキストをネイティブにサポートし、ライトニングアテンション機構により10万トークンの生成タスクでDeepSeek R1と比べて75%の浮動小数点演算量を削減します。また、MiniMax-M1はMoE(混合エキスパート)アーキテクチャを採用し、CISPOアルゴリズムと混合注意力設計による効率的な強化学習トレーニングを組み合わせ、長文入力推論および実際のソフトウェア工学シナリオで業界最高の性能を実現しています。"
|
|
238
238
|
},
|
|
239
|
+
"MiniMaxAI/MiniMax-M2": {
|
|
240
|
+
"description": "MiniMax-M2 は、エージェントの効率性を再定義するコンパクトで高速かつコスト効率に優れた MoE(Mixture of Experts)モデルです。総パラメータ数は2,300億、アクティブパラメータは100億で、コーディングやエージェントタスクにおいて最高レベルの性能を発揮しつつ、強力な汎用知能を維持します。わずか100億のアクティブパラメータで、大規模モデルに匹敵する性能を実現しており、高効率なアプリケーションに最適な選択肢です。"
|
|
241
|
+
},
|
|
239
242
|
"Moonshot-Kimi-K2-Instruct": {
|
|
240
243
|
"description": "総パラメータ数1兆、活性化パラメータ320億。非思考モデルの中で、先端知識、数学、コーディングにおいてトップレベルの性能を持ち、汎用エージェントタスクに優れています。エージェントタスクに特化して最適化されており、質問に答えるだけでなく行動も可能です。即興的で汎用的なチャットやエージェント体験に最適で、長時間の思考を必要としない反射的モデルです。"
|
|
241
244
|
},
|
|
@@ -1049,6 +1052,9 @@
|
|
|
1049
1052
|
"deepseek-r1-0528": {
|
|
1050
1053
|
"description": "685B フルスペックモデルで、2025年5月28日にリリースされました。DeepSeek-R1 は後期トレーニング段階で大規模に強化学習技術を活用し、極めて少ないラベル付きデータでモデルの推論能力を大幅に向上させました。数学、コード、自然言語推論などのタスクで高い性能と強力な能力を持ちます。"
|
|
1051
1054
|
},
|
|
1055
|
+
"deepseek-r1-250528": {
|
|
1056
|
+
"description": "DeepSeek R1 250528、フルスペックの DeepSeek-R1 推論モデルで、高度な数学および論理タスクに適しています。"
|
|
1057
|
+
},
|
|
1052
1058
|
"deepseek-r1-70b-fast-online": {
|
|
1053
1059
|
"description": "DeepSeek R1 70Bファスト版で、リアルタイムのオンライン検索をサポートし、モデルのパフォーマンスを維持しながら、より速い応答速度を提供します。"
|
|
1054
1060
|
},
|
|
@@ -1059,31 +1065,34 @@
|
|
|
1059
1065
|
"description": "deepseek-r1-distill-llama は、DeepSeek-R1 から Llama を蒸留したモデルです。"
|
|
1060
1066
|
},
|
|
1061
1067
|
"deepseek-r1-distill-llama-70b": {
|
|
1062
|
-
"description": "DeepSeek R1
|
|
1068
|
+
"description": "DeepSeek R1 Distill Llama 70B、汎用 R1 推論能力と Llama エコシステムを融合した蒸留モデルです。"
|
|
1063
1069
|
},
|
|
1064
1070
|
"deepseek-r1-distill-llama-8b": {
|
|
1065
|
-
"description": "DeepSeek-R1-Distill
|
|
1071
|
+
"description": "DeepSeek-R1-Distill-Llama-8B は Llama-3.1-8B をベースにした蒸留型大規模言語モデルで、DeepSeek R1 の出力を活用しています。"
|
|
1066
1072
|
},
|
|
1067
|
-
"deepseek-r1-distill-qianfan-
|
|
1068
|
-
"description": "
|
|
1073
|
+
"deepseek-r1-distill-qianfan-70b": {
|
|
1074
|
+
"description": "DeepSeek R1 Distill Qianfan 70B、Qianfan-70B をベースにした R1 蒸留モデルで、コストパフォーマンスに優れています。"
|
|
1069
1075
|
},
|
|
1070
|
-
"deepseek-r1-distill-qianfan-
|
|
1071
|
-
"description": "
|
|
1076
|
+
"deepseek-r1-distill-qianfan-8b": {
|
|
1077
|
+
"description": "DeepSeek R1 Distill Qianfan 8B、Qianfan-8B をベースにした R1 蒸留モデルで、中小規模のアプリケーションに適しています。"
|
|
1078
|
+
},
|
|
1079
|
+
"deepseek-r1-distill-qianfan-llama-70b": {
|
|
1080
|
+
"description": "DeepSeek R1 Distill Qianfan Llama 70B、Llama-70B をベースにした R1 蒸留モデルです。"
|
|
1072
1081
|
},
|
|
1073
1082
|
"deepseek-r1-distill-qwen": {
|
|
1074
1083
|
"description": "deepseek-r1-distill-qwen は、Qwen をベースに DeepSeek-R1 から蒸留されたモデルです。"
|
|
1075
1084
|
},
|
|
1076
1085
|
"deepseek-r1-distill-qwen-1.5b": {
|
|
1077
|
-
"description": "DeepSeek
|
|
1086
|
+
"description": "DeepSeek R1 Distill Qwen 1.5B、超軽量の R1 蒸留モデルで、リソースが極めて限られた環境に適しています。"
|
|
1078
1087
|
},
|
|
1079
1088
|
"deepseek-r1-distill-qwen-14b": {
|
|
1080
|
-
"description": "DeepSeek
|
|
1089
|
+
"description": "DeepSeek R1 Distill Qwen 14B、中規模の R1 蒸留モデルで、さまざまなシーンでの展開に適しています。"
|
|
1081
1090
|
},
|
|
1082
1091
|
"deepseek-r1-distill-qwen-32b": {
|
|
1083
|
-
"description": "DeepSeek
|
|
1092
|
+
"description": "DeepSeek R1 Distill Qwen 32B、Qwen-32B をベースにした R1 蒸留モデルで、性能とコストのバランスに優れています。"
|
|
1084
1093
|
},
|
|
1085
1094
|
"deepseek-r1-distill-qwen-7b": {
|
|
1086
|
-
"description": "DeepSeek
|
|
1095
|
+
"description": "DeepSeek R1 Distill Qwen 7B、軽量の R1 蒸留モデルで、エッジ環境や企業のオンプレミス環境に適しています。"
|
|
1087
1096
|
},
|
|
1088
1097
|
"deepseek-r1-fast-online": {
|
|
1089
1098
|
"description": "DeepSeek R1フルファスト版で、リアルタイムのオンライン検索をサポートし、671Bパラメータの強力な能力とより速い応答速度を組み合わせています。"
|
|
@@ -1112,12 +1121,24 @@
|
|
|
1112
1121
|
"deepseek-v3.1-terminus": {
|
|
1113
1122
|
"description": "DeepSeek-V3.1-Terminus は DeepSeek によって開発されたエッジデバイス向けに最適化された大規模言語モデルです。"
|
|
1114
1123
|
},
|
|
1124
|
+
"deepseek-v3.1-think-250821": {
|
|
1125
|
+
"description": "DeepSeek V3.1 Think 250821、Terminus バージョンに対応した深層思考モデルで、高性能な推論シナリオに適しています。"
|
|
1126
|
+
},
|
|
1115
1127
|
"deepseek-v3.1:671b": {
|
|
1116
1128
|
"description": "DeepSeek V3.1:次世代推論モデルで、複雑な推論と連鎖的思考能力を向上させ、深い分析を必要とするタスクに適しています。"
|
|
1117
1129
|
},
|
|
1118
1130
|
"deepseek-v3.2-exp": {
|
|
1119
1131
|
"description": "deepseek-v3.2-exp はスパースアテンション機構を導入し、長文処理時のトレーニングと推論の効率を向上させることを目的としており、価格は deepseek-v3.1 よりも低く設定されています。"
|
|
1120
1132
|
},
|
|
1133
|
+
"deepseek-v3.2-think": {
|
|
1134
|
+
"description": "DeepSeek V3.2 Think、フルスペックの深層思考モデルで、長い推論チェーンの能力を強化しています。"
|
|
1135
|
+
},
|
|
1136
|
+
"deepseek-vl2": {
|
|
1137
|
+
"description": "DeepSeek VL2、マルチモーダルモデルで、画像と言語の理解およびきめ細かな視覚的質問応答をサポートします。"
|
|
1138
|
+
},
|
|
1139
|
+
"deepseek-vl2-small": {
|
|
1140
|
+
"description": "DeepSeek VL2 Small、軽量なマルチモーダルバージョンで、リソース制限や高負荷環境に適しています。"
|
|
1141
|
+
},
|
|
1121
1142
|
"deepseek/deepseek-chat-v3-0324": {
|
|
1122
1143
|
"description": "DeepSeek V3は、685Bパラメータの専門的な混合モデルであり、DeepSeekチームのフラッグシップチャットモデルシリーズの最新のイテレーションです。\n\nこれは、[DeepSeek V3](/deepseek/deepseek-chat-v3)モデルを継承し、さまざまなタスクで優れたパフォーマンスを発揮します。"
|
|
1123
1144
|
},
|
|
@@ -1137,7 +1158,7 @@
|
|
|
1137
1158
|
"description": "DeepSeek-R1は極めて少ないラベル付きデータでモデルの推論能力を大幅に向上させました。最終回答を出力する前に、モデルは思考の連鎖を出力し、最終答えの正確性を高めます。"
|
|
1138
1159
|
},
|
|
1139
1160
|
"deepseek/deepseek-r1-distill-llama-70b": {
|
|
1140
|
-
"description": "DeepSeek
|
|
1161
|
+
"description": "DeepSeek R1 Distill Llama 70B は、Llama3.3 70B をベースにした大規模言語モデルであり、DeepSeek R1 によるファインチューニングを通じて、最先端の大規模モデルに匹敵する競争力のある性能を実現しています。"
|
|
1141
1162
|
},
|
|
1142
1163
|
"deepseek/deepseek-r1-distill-llama-8b": {
|
|
1143
1164
|
"description": "DeepSeek R1 Distill Llama 8BはLlama-3.1-8B-Instructに基づく蒸留大言語モデルで、DeepSeek R1の出力を使用してトレーニングされています。"
|
|
@@ -1253,83 +1274,89 @@
|
|
|
1253
1274
|
"emohaa": {
|
|
1254
1275
|
"description": "Emohaaは心理モデルで、専門的な相談能力を持ち、ユーザーが感情問題を理解するのを助けます。"
|
|
1255
1276
|
},
|
|
1256
|
-
"ernie-
|
|
1257
|
-
"description": "
|
|
1258
|
-
},
|
|
1259
|
-
"ernie-3.5-8k": {
|
|
1260
|
-
"description": "百度が独自に開発したフラッグシップの大規模言語モデルで、膨大な中英文コーパスをカバーし、強力な汎用能力を持ち、ほとんどの対話質問応答、創作生成、プラグインアプリケーションシーンの要求を満たすことができます。百度検索プラグインとの自動接続をサポートし、質問応答情報のタイムリーさを保証します。"
|
|
1261
|
-
},
|
|
1262
|
-
"ernie-3.5-8k-preview": {
|
|
1263
|
-
"description": "百度が独自に開発したフラッグシップの大規模言語モデルで、膨大な中英文コーパスをカバーし、強力な汎用能力を持ち、ほとんどの対話質問応答、創作生成、プラグインアプリケーションシーンの要求を満たすことができます。百度検索プラグインとの自動接続をサポートし、質問応答情報のタイムリーさを保証します。"
|
|
1264
|
-
},
|
|
1265
|
-
"ernie-4.0-8k-latest": {
|
|
1266
|
-
"description": "百度が独自に開発したフラッグシップの超大規模言語モデルで、ERNIE 3.5に比べてモデル能力が全面的にアップグレードされ、さまざまな分野の複雑なタスクシーンに広く適用されます。百度検索プラグインとの自動接続をサポートし、質問応答情報のタイムリーさを保証します。"
|
|
1267
|
-
},
|
|
1268
|
-
"ernie-4.0-8k-preview": {
|
|
1269
|
-
"description": "百度が独自に開発したフラッグシップの超大規模言語モデルで、ERNIE 3.5に比べてモデル能力が全面的にアップグレードされ、さまざまな分野の複雑なタスクシーンに広く適用されます。百度検索プラグインとの自動接続をサポートし、質問応答情報のタイムリーさを保証します。"
|
|
1270
|
-
},
|
|
1271
|
-
"ernie-4.0-turbo-128k": {
|
|
1272
|
-
"description": "百度が独自に開発したフラッグシップの超大規模言語モデルで、総合的なパフォーマンスが優れており、さまざまな分野の複雑なタスクシーンに広く適用されます。百度検索プラグインとの自動接続をサポートし、質問応答情報のタイムリーさを保証します。ERNIE 4.0に比べてパフォーマンスがさらに優れています。"
|
|
1273
|
-
},
|
|
1274
|
-
"ernie-4.0-turbo-8k-latest": {
|
|
1275
|
-
"description": "百度が独自に開発したフラッグシップの超大規模言語モデルで、総合的なパフォーマンスが優れており、さまざまな分野の複雑なタスクシーンに広く適用されます。百度検索プラグインとの自動接続をサポートし、質問応答情報のタイムリーさを保証します。ERNIE 4.0に比べてパフォーマンスがさらに優れています。"
|
|
1276
|
-
},
|
|
1277
|
-
"ernie-4.0-turbo-8k-preview": {
|
|
1278
|
-
"description": "百度が独自に開発したフラッグシップの超大規模言語モデルで、総合的なパフォーマンスが優れており、さまざまな分野の複雑なタスクシーンに広く適用されます。百度検索プラグインとの自動接続をサポートし、質問応答情報のタイムリーさを保証します。ERNIE 4.0に比べてパフォーマンスがさらに優れています。"
|
|
1277
|
+
"ernie-4.5-0.3b": {
|
|
1278
|
+
"description": "ERNIE 4.5 0.3B、オープンソースの軽量モデルで、ローカルおよびカスタマイズされたデプロイに適しています。"
|
|
1279
1279
|
},
|
|
1280
1280
|
"ernie-4.5-21b-a3b": {
|
|
1281
|
-
"description": "ERNIE 4.5 21B A3B
|
|
1281
|
+
"description": "ERNIE 4.5 21B A3B、オープンソースの大規模パラメータモデルで、理解と生成タスクにおいて優れた性能を発揮します。"
|
|
1282
1282
|
},
|
|
1283
1283
|
"ernie-4.5-300b-a47b": {
|
|
1284
1284
|
"description": "ERNIE 4.5 300B A47B は Baidu の文心によって開発された超大規模混合エキスパートモデルで、卓越した推論能力を誇ります。"
|
|
1285
1285
|
},
|
|
1286
1286
|
"ernie-4.5-8k-preview": {
|
|
1287
|
-
"description": "
|
|
1287
|
+
"description": "ERNIE 4.5 8K Preview、8K コンテキストのプレビューモデルで、文心 4.5 の機能を体験・テストできます。"
|
|
1288
1288
|
},
|
|
1289
1289
|
"ernie-4.5-turbo-128k": {
|
|
1290
|
-
"description": "
|
|
1290
|
+
"description": "ERNIE 4.5 Turbo 128K、高性能な汎用モデルで、検索強化やツール呼び出しをサポートし、QA、コード、エージェントなど多様な業務に対応します。"
|
|
1291
|
+
},
|
|
1292
|
+
"ernie-4.5-turbo-128k-preview": {
|
|
1293
|
+
"description": "ERNIE 4.5 Turbo 128K Preview、正式版と同等の機能を提供するプレビューバージョンで、統合テストや段階的導入に適しています。"
|
|
1291
1294
|
},
|
|
1292
1295
|
"ernie-4.5-turbo-32k": {
|
|
1293
|
-
"description": "
|
|
1296
|
+
"description": "ERNIE 4.5 Turbo 32K、中長文コンテキスト対応モデルで、QA、ナレッジ検索、多ターン対話などに適しています。"
|
|
1297
|
+
},
|
|
1298
|
+
"ernie-4.5-turbo-latest": {
|
|
1299
|
+
"description": "ERNIE 4.5 Turbo 最新版、総合的に最適化されたモデルで、プロダクション環境の主力汎用モデルとして適しています。"
|
|
1300
|
+
},
|
|
1301
|
+
"ernie-4.5-turbo-vl": {
|
|
1302
|
+
"description": "ERNIE 4.5 Turbo VL、成熟したマルチモーダルモデルで、画像と言語の理解・認識タスクに適しています。"
|
|
1294
1303
|
},
|
|
1295
1304
|
"ernie-4.5-turbo-vl-32k": {
|
|
1296
|
-
"description": "
|
|
1305
|
+
"description": "ERNIE 4.5 Turbo VL 32K、中長文対応のマルチモーダルモデルで、長文と画像の統合理解に適しています。"
|
|
1306
|
+
},
|
|
1307
|
+
"ernie-4.5-turbo-vl-32k-preview": {
|
|
1308
|
+
"description": "ERNIE 4.5 Turbo VL 32K Preview、32K コンテキスト対応のマルチモーダルプレビューモデルで、長文視覚理解能力の評価に適しています。"
|
|
1309
|
+
},
|
|
1310
|
+
"ernie-4.5-turbo-vl-latest": {
|
|
1311
|
+
"description": "ERNIE 4.5 Turbo VL Latest、最新のマルチモーダルバージョンで、より優れた画像と言語の理解・推論性能を提供します。"
|
|
1312
|
+
},
|
|
1313
|
+
"ernie-4.5-turbo-vl-preview": {
|
|
1314
|
+
"description": "ERNIE 4.5 Turbo VL Preview、マルチモーダルプレビューモデルで、画像と言語の理解・生成をサポートし、視覚的質問応答やコンテンツ理解に適しています。"
|
|
1315
|
+
},
|
|
1316
|
+
"ernie-4.5-vl-28b-a3b": {
|
|
1317
|
+
"description": "ERNIE 4.5 VL 28B A3B、オープンソースのマルチモーダルモデルで、画像と言語の理解・推論タスクに対応します。"
|
|
1318
|
+
},
|
|
1319
|
+
"ernie-5.0-thinking-preview": {
|
|
1320
|
+
"description": "文心5.0 Thinking Preview、ネイティブな全モーダル対応のフラッグシップモデルで、テキスト、画像、音声、動画の統一モデリングを実現し、複雑な質問応答、創作、エージェントシナリオに対応します。"
|
|
1297
1321
|
},
|
|
1298
1322
|
"ernie-char-8k": {
|
|
1299
|
-
"description": "
|
|
1323
|
+
"description": "ERNIE Character 8K、キャラクター人格対話モデルで、IP キャラクター構築や長期的な対話に適しています。"
|
|
1300
1324
|
},
|
|
1301
1325
|
"ernie-char-fiction-8k": {
|
|
1302
|
-
"description": "
|
|
1326
|
+
"description": "ERNIE Character Fiction 8K、小説やストーリー創作向けの人格モデルで、長文ストーリー生成に適しています。"
|
|
1327
|
+
},
|
|
1328
|
+
"ernie-char-fiction-8k-preview": {
|
|
1329
|
+
"description": "ERNIE Character Fiction 8K Preview、キャラクターとストーリー創作向けのプレビューモデルで、機能体験とテストに適しています。"
|
|
1303
1330
|
},
|
|
1304
1331
|
"ernie-irag-edit": {
|
|
1305
|
-
"description": "
|
|
1332
|
+
"description": "ERNIE iRAG Edit、画像の消去、再描画、バリエーション生成をサポートする画像編集モデルです。"
|
|
1306
1333
|
},
|
|
1307
1334
|
"ernie-lite-8k": {
|
|
1308
|
-
"description": "ERNIE Lite
|
|
1335
|
+
"description": "ERNIE Lite 8K、軽量な汎用モデルで、コストに敏感な日常的な質問応答やコンテンツ生成に適しています。"
|
|
1309
1336
|
},
|
|
1310
1337
|
"ernie-lite-pro-128k": {
|
|
1311
|
-
"description": "
|
|
1338
|
+
"description": "ERNIE Lite Pro 128K、軽量かつ高性能なモデルで、レイテンシーとコストに敏感な業務シナリオに適しています。"
|
|
1312
1339
|
},
|
|
1313
1340
|
"ernie-novel-8k": {
|
|
1314
|
-
"description": "
|
|
1341
|
+
"description": "ERNIE Novel 8K、長編小説や IP ストーリー創作向けモデルで、多キャラクター・多視点の物語構成に優れています。"
|
|
1315
1342
|
},
|
|
1316
1343
|
"ernie-speed-128k": {
|
|
1317
|
-
"description": "
|
|
1344
|
+
"description": "ERNIE Speed 128K、入出力コスト不要の大規模モデルで、長文理解や大規模試用に適しています。"
|
|
1345
|
+
},
|
|
1346
|
+
"ernie-speed-8k": {
|
|
1347
|
+
"description": "ERNIE Speed 8K、無料で高速なモデルで、日常会話や軽量なテキストタスクに適しています。"
|
|
1318
1348
|
},
|
|
1319
1349
|
"ernie-speed-pro-128k": {
|
|
1320
|
-
"description": "
|
|
1350
|
+
"description": "ERNIE Speed Pro 128K、高スループットかつ高コストパフォーマンスのモデルで、大規模オンラインサービスや企業向けアプリケーションに適しています。"
|
|
1321
1351
|
},
|
|
1322
1352
|
"ernie-tiny-8k": {
|
|
1323
|
-
"description": "ERNIE Tiny
|
|
1324
|
-
},
|
|
1325
|
-
"ernie-x1-32k": {
|
|
1326
|
-
"description": "より強力な理解、計画、反省、進化能力を備えています。より包括的な深い思考モデルとして、文心X1は正確さ、創造性、文才を兼ね備え、中国語の知識問答、文学創作、文書作成、日常会話、論理推論、複雑な計算およびツール呼び出しなどの分野で特に優れたパフォーマンスを発揮します。"
|
|
1327
|
-
},
|
|
1328
|
-
"ernie-x1-32k-preview": {
|
|
1329
|
-
"description": "文心大モデルX1は、より強力な理解、計画、反省、進化の能力を備えています。より包括的な深い思考モデルとして、文心X1は正確さ、創造性、文才を兼ね備え、中国語の知識問答、文学創作、文書作成、日常会話、論理推論、複雑な計算、ツールの呼び出しなどの分野で特に優れたパフォーマンスを発揮します。"
|
|
1353
|
+
"description": "ERNIE Tiny 8K、超軽量モデルで、簡単な質問応答や分類などの低コスト推論シナリオに適しています。"
|
|
1330
1354
|
},
|
|
1331
1355
|
"ernie-x1-turbo-32k": {
|
|
1332
|
-
"description": "ERNIE
|
|
1356
|
+
"description": "ERNIE X1 Turbo 32K、高速思考モデルで、32K の長文コンテキストに対応し、複雑な推論や多ターン対話に適しています。"
|
|
1357
|
+
},
|
|
1358
|
+
"ernie-x1.1-preview": {
|
|
1359
|
+
"description": "ERNIE X1.1 Preview、ERNIE X1.1 思考モデルのプレビューバージョンで、機能検証やテストに適しています。"
|
|
1333
1360
|
},
|
|
1334
1361
|
"fal-ai/bytedance/seedream/v4": {
|
|
1335
1362
|
"description": "Seedream 4.0 画像生成モデルはバイトダンスの Seed チームによって開発され、テキストと画像の入力をサポートし、高い制御性と高品質な画像生成体験を提供します。テキストプロンプトに基づいて画像を生成します。"
|
|
@@ -1389,7 +1416,7 @@
|
|
|
1389
1416
|
"description": "FLUX.1 [schnell]は現時点で最先端の少ステップモデルであり、同種の競合モデルを凌駕し、Midjourney v6.0やDALL·E 3 (HD)などの強力な非蒸留モデルよりも優れています。専用の微調整により、事前学習段階の出力多様性を完全に保持し、市場の最先端モデルと比較して視覚品質、指示遵守、サイズ・比率変化、フォント処理、出力多様性の面で大幅に向上。ユーザーにより豊かで多様な創造的画像生成体験を提供します。"
|
|
1390
1417
|
},
|
|
1391
1418
|
"flux.1-schnell": {
|
|
1392
|
-
"description": "
|
|
1419
|
+
"description": "FLUX.1-schnell、高性能な画像生成モデルで、多様なスタイルの画像を素早く生成できます。"
|
|
1393
1420
|
},
|
|
1394
1421
|
"gemini-1.0-pro-001": {
|
|
1395
1422
|
"description": "Gemini 1.0 Pro 001(チューニング)は、安定した調整可能な性能を提供し、複雑なタスクのソリューションに理想的な選択肢です。"
|
|
@@ -1454,9 +1481,6 @@
|
|
|
1454
1481
|
"gemini-2.0-flash-lite-001": {
|
|
1455
1482
|
"description": "Gemini 2.0 Flashモデルのバリアントで、コスト効率と低遅延などの目標に最適化されています。"
|
|
1456
1483
|
},
|
|
1457
|
-
"gemini-2.0-flash-preview-image-generation": {
|
|
1458
|
-
"description": "Gemini 2.0 Flash プレビュー モデル、画像生成をサポート"
|
|
1459
|
-
},
|
|
1460
1484
|
"gemini-2.5-flash": {
|
|
1461
1485
|
"description": "Gemini 2.5 FlashはGoogleのコストパフォーマンスに優れたモデルで、包括的な機能を提供します。"
|
|
1462
1486
|
},
|
|
@@ -1484,9 +1508,6 @@
|
|
|
1484
1508
|
"gemini-2.5-flash-preview-04-17": {
|
|
1485
1509
|
"description": "Gemini 2.5 Flash Previewは、Googleのコストパフォーマンスに優れたモデルで、包括的な機能を提供します。"
|
|
1486
1510
|
},
|
|
1487
|
-
"gemini-2.5-flash-preview-05-20": {
|
|
1488
|
-
"description": "Gemini 2.5 Flash PreviewはGoogleのコストパフォーマンスに優れたモデルで、包括的な機能を提供します。"
|
|
1489
|
-
},
|
|
1490
1511
|
"gemini-2.5-flash-preview-09-2025": {
|
|
1491
1512
|
"description": "Gemini 2.5 Flash のプレビューリリース(2025年9月25日)"
|
|
1492
1513
|
},
|
|
@@ -1502,6 +1523,9 @@
|
|
|
1502
1523
|
"gemini-2.5-pro-preview-06-05": {
|
|
1503
1524
|
"description": "Gemini 2.5 Pro Preview は Google の最先端思考モデルで、コード、数学、STEM 分野の複雑な問題を推論し、長いコンテキストを用いて大規模なデータセット、コードベース、ドキュメントを分析できます。"
|
|
1504
1525
|
},
|
|
1526
|
+
"gemini-3-pro-preview": {
|
|
1527
|
+
"description": "Gemini 3 Pro は、Google で最も高度なモデルであり、最先端の推論能力とマルチモーダルな理解力、さらに強力なエージェント機能とコンテキスト認識機能を備えています。"
|
|
1528
|
+
},
|
|
1505
1529
|
"gemini-flash-latest": {
|
|
1506
1530
|
"description": "Gemini Flash の最新リリース"
|
|
1507
1531
|
},
|
|
@@ -1538,6 +1562,9 @@
|
|
|
1538
1562
|
"glm-4-0520": {
|
|
1539
1563
|
"description": "GLM-4-0520は最新のモデルバージョンで、高度に複雑で多様なタスクのために設計され、優れたパフォーマンスを発揮します。"
|
|
1540
1564
|
},
|
|
1565
|
+
"glm-4-32b-0414": {
|
|
1566
|
+
"description": "GLM-4 32B 0414、GLM シリーズの汎用大規模モデルで、マルチタスクのテキスト生成と理解をサポートします。"
|
|
1567
|
+
},
|
|
1541
1568
|
"glm-4-9b-chat": {
|
|
1542
1569
|
"description": "GLM-4-9B-Chat は意味理解、数学、推論、コード、知識など多方面で高い性能を発揮します。ウェブ閲覧、コード実行、カスタムツールの呼び出し、長文推論にも対応。日本語、韓国語、ドイツ語を含む26言語をサポート。"
|
|
1543
1570
|
},
|
|
@@ -1826,6 +1853,18 @@
|
|
|
1826
1853
|
"gpt-5-pro": {
|
|
1827
1854
|
"description": "GPT-5 pro は、より多くの計算資源を活用して深く思考し、常により優れた回答を提供します。"
|
|
1828
1855
|
},
|
|
1856
|
+
"gpt-5.1": {
|
|
1857
|
+
"description": "GPT-5.1 — コーディングおよびエージェントタスク向けに最適化されたフラッグシップモデルで、推論強度の調整やより長いコンテキストに対応。"
|
|
1858
|
+
},
|
|
1859
|
+
"gpt-5.1-chat-latest": {
|
|
1860
|
+
"description": "GPT-5.1 Chat:ChatGPT 用に調整された GPT-5.1 のバリアントで、会話シナリオに最適。"
|
|
1861
|
+
},
|
|
1862
|
+
"gpt-5.1-codex": {
|
|
1863
|
+
"description": "GPT-5.1 Codex:エージェント型のコーディングタスクに特化した GPT-5.1 バージョンで、Responses API においてより複雑なコードやエージェントのワークフローに対応。"
|
|
1864
|
+
},
|
|
1865
|
+
"gpt-5.1-codex-mini": {
|
|
1866
|
+
"description": "GPT-5.1 Codex mini:より小型でコスト効率の高い Codex バリアントで、エージェント型のコーディングタスクに最適化。"
|
|
1867
|
+
},
|
|
1829
1868
|
"gpt-audio": {
|
|
1830
1869
|
"description": "GPT Audioは音声の入出力に対応した汎用チャットモデルで、Chat Completions APIでの音声I/O利用をサポートしています。"
|
|
1831
1870
|
},
|
|
@@ -2001,13 +2040,13 @@
|
|
|
2001
2040
|
"description": "Imagen 第4世代のテキストから画像への生成モデルシリーズ"
|
|
2002
2041
|
},
|
|
2003
2042
|
"imagen-4.0-generate-preview-06-06": {
|
|
2004
|
-
"description": "Imagen 第4
|
|
2043
|
+
"description": "Imagen 第4世代のテキストから画像を生成するモデルシリーズ"
|
|
2005
2044
|
},
|
|
2006
2045
|
"imagen-4.0-ultra-generate-001": {
|
|
2007
2046
|
"description": "Imagen 第4世代 テキスト→画像生成モデルシリーズ(Ultra版)"
|
|
2008
2047
|
},
|
|
2009
2048
|
"imagen-4.0-ultra-generate-preview-06-06": {
|
|
2010
|
-
"description": "Imagen 第4
|
|
2049
|
+
"description": "Imagen 第4世代テキスト画像生成モデルシリーズの Ultra バージョン"
|
|
2011
2050
|
},
|
|
2012
2051
|
"inception/mercury-coder-small": {
|
|
2013
2052
|
"description": "Mercury Coder Small はコード生成、デバッグ、リファクタリングタスクに最適で、最小遅延を実現します。"
|
|
@@ -2036,14 +2075,26 @@
|
|
|
2036
2075
|
"internlm3-latest": {
|
|
2037
2076
|
"description": "私たちの最新のモデルシリーズは、卓越した推論性能を持ち、同等のオープンソースモデルの中でリーダーシップを発揮しています。デフォルトで最新のInternLM3シリーズモデルを指します。"
|
|
2038
2077
|
},
|
|
2078
|
+
"internvl2.5-38b-mpo": {
|
|
2079
|
+
"description": "InternVL2.5 38B MPO、マルチモーダル事前学習モデルで、複雑な画像と言語の推論タスクに対応します。"
|
|
2080
|
+
},
|
|
2039
2081
|
"internvl2.5-latest": {
|
|
2040
2082
|
"description": "私たちが引き続きメンテナンスしている InternVL2.5 バージョンは、優れた安定した性能を持っています。デフォルトでは、私たちの最新の InternVL2.5 シリーズモデルに指向されており、現在は internvl2.5-78b に指向しています。"
|
|
2041
2083
|
},
|
|
2084
|
+
"internvl3-14b": {
|
|
2085
|
+
"description": "InternVL3 14B、中規模のマルチモーダルモデルで、性能とコストのバランスに優れています。"
|
|
2086
|
+
},
|
|
2087
|
+
"internvl3-1b": {
|
|
2088
|
+
"description": "InternVL3 1B、軽量なマルチモーダルモデルで、リソース制限のある環境での導入に適しています。"
|
|
2089
|
+
},
|
|
2090
|
+
"internvl3-38b": {
|
|
2091
|
+
"description": "InternVL3 38B、大規模なマルチモーダルオープンソースモデルで、高精度な画像と言語の理解タスクに適しています。"
|
|
2092
|
+
},
|
|
2042
2093
|
"internvl3-latest": {
|
|
2043
2094
|
"description": "私たちの最新のマルチモーダル大規模モデルは、より強力な画像と言語の理解能力と長期的な画像理解能力を備えており、トップクラスのクローズドソースモデルに匹敵する性能を持っています。デフォルトでは、私たちの最新の InternVL シリーズモデルに指向されており、現在は internvl3-78b に指向しています。"
|
|
2044
2095
|
},
|
|
2045
2096
|
"irag-1.0": {
|
|
2046
|
-
"description": "
|
|
2097
|
+
"description": "ERNIE iRAG、画像検索強化生成モデルで、画像検索、画像と言語の検索、コンテンツ生成をサポートします。"
|
|
2047
2098
|
},
|
|
2048
2099
|
"jamba-large": {
|
|
2049
2100
|
"description": "私たちの最も強力で先進的なモデルで、企業レベルの複雑なタスクを処理するために設計されており、卓越した性能を備えています。"
|
|
@@ -2064,7 +2115,7 @@
|
|
|
2064
2115
|
"description": "kimi-k2-0905-previewモデルは256kのコンテキスト長を持ち、より強力なエージェントコーディング能力、より優れたフロントエンドコードの美観と実用性、そしてより良いコンテキスト理解能力を備えています。"
|
|
2065
2116
|
},
|
|
2066
2117
|
"kimi-k2-instruct": {
|
|
2067
|
-
"description": "Kimi K2 Instruct
|
|
2118
|
+
"description": "Kimi K2 Instruct、Kimi 公式の推論モデルで、長文コンテキスト、コード、QA など多様なシナリオに対応します。"
|
|
2068
2119
|
},
|
|
2069
2120
|
"kimi-k2-turbo-preview": {
|
|
2070
2121
|
"description": "kimi-k2 は高度なコード処理能力とエージェント機能を備えた MoE(Mixture of Experts)アーキテクチャの基盤モデルで、総パラメータ数は1T、アクティブパラメータは32Bです。一般的な知識推論、プログラミング、数学、エージェントなどの主要カテゴリにおけるベンチマークで、K2モデルは他の主要なオープンソースモデルを上回る性能を示しています。"
|
|
@@ -2174,6 +2225,9 @@
|
|
|
2174
2225
|
"megrez-3b-instruct": {
|
|
2175
2226
|
"description": "Megrez 3B Instruct は WuWenXinQiong によって開発された小規模パラメータの高効率モデルです。"
|
|
2176
2227
|
},
|
|
2228
|
+
"meituan/longcat-flash-chat": {
|
|
2229
|
+
"description": "美団がオープンソースで提供する、対話型インタラクションとエージェントタスクに最適化された非推論型基盤モデルであり、ツールの呼び出しや複雑なマルチターン対話シナリオにおいて優れた性能を発揮します。"
|
|
2230
|
+
},
|
|
2177
2231
|
"meta-llama-3-70b-instruct": {
|
|
2178
2232
|
"description": "推論、コーディング、広範な言語アプリケーションに優れた70億パラメータの強力なモデルです。"
|
|
2179
2233
|
},
|
|
@@ -2405,6 +2459,12 @@
|
|
|
2405
2459
|
"minimax-m2": {
|
|
2406
2460
|
"description": "MiniMax M2は、コーディングおよびエージェントワークフローのために構築された高効率な大規模言語モデルです。"
|
|
2407
2461
|
},
|
|
2462
|
+
"minimax/minimax-m2": {
|
|
2463
|
+
"description": "効率的なコーディングとエージェントワークフローのために設計されたモデルです。"
|
|
2464
|
+
},
|
|
2465
|
+
"minimaxai/minimax-m2": {
|
|
2466
|
+
"description": "MiniMax-M2 は、コンパクトで高速、かつコスト効率に優れた混合エキスパート(MoE)モデルで、総パラメータ数は2,300億、アクティブパラメータは100億です。コーディングやエージェントタスクにおいて最高の性能を発揮しながら、強力な汎用知能を維持します。複数ファイルの編集、コードの実行と修正のループ、テストによる検証と修復、複雑な長距離ツールチェーンの処理において優れた性能を示し、開発者のワークフローに最適なモデルです。"
|
|
2467
|
+
},
|
|
2408
2468
|
"ministral-3b-latest": {
|
|
2409
2469
|
"description": "Ministral 3BはMistralの世界トップクラスのエッジモデルです。"
|
|
2410
2470
|
},
|
|
@@ -2735,6 +2795,54 @@
|
|
|
2735
2795
|
"pro-deepseek-v3": {
|
|
2736
2796
|
"description": "企業向け専用サービスモデルで、同時接続サービスを含みます。"
|
|
2737
2797
|
},
|
|
2798
|
+
"qianfan-70b": {
|
|
2799
|
+
"description": "Qianfan 70B、大規模パラメータの中国語モデルで、高品質なコンテンツ生成や複雑な推論タスクに適しています。"
|
|
2800
|
+
},
|
|
2801
|
+
"qianfan-8b": {
|
|
2802
|
+
"description": "Qianfan 8B、中規模の汎用モデルで、コストと効果のバランスが取れたテキスト生成やQAシナリオに適しています。"
|
|
2803
|
+
},
|
|
2804
|
+
"qianfan-agent-intent-32k": {
|
|
2805
|
+
"description": "Qianfan Agent Intent 32K、意図認識とエージェントのオーケストレーション向けモデルで、長文脈シナリオをサポートします。"
|
|
2806
|
+
},
|
|
2807
|
+
"qianfan-agent-lite-8k": {
|
|
2808
|
+
"description": "Qianfan Agent Lite 8K、軽量なエージェントモデルで、低コストのマルチターン対話や業務オーケストレーションに適しています。"
|
|
2809
|
+
},
|
|
2810
|
+
"qianfan-agent-speed-32k": {
|
|
2811
|
+
"description": "Qianfan Agent Speed 32K、高スループットのエージェントモデルで、大規模かつ多タスクなエージェントアプリケーションに適しています。"
|
|
2812
|
+
},
|
|
2813
|
+
"qianfan-agent-speed-8k": {
|
|
2814
|
+
"description": "Qianfan Agent Speed 8K、中短距離の対話や高速応答に対応した高並列エージェントモデルです。"
|
|
2815
|
+
},
|
|
2816
|
+
"qianfan-check-vl": {
|
|
2817
|
+
"description": "Qianfan Check VL、マルチモーダルなコンテンツ審査・検出モデルで、画像とテキストの適合性チェックや認識タスクをサポートします。"
|
|
2818
|
+
},
|
|
2819
|
+
"qianfan-composition": {
|
|
2820
|
+
"description": "Qianfan Composition、マルチモーダル創作モデルで、画像とテキストの統合的な理解と生成を可能にします。"
|
|
2821
|
+
},
|
|
2822
|
+
"qianfan-engcard-vl": {
|
|
2823
|
+
"description": "Qianfan EngCard VL、英語シナリオに特化したマルチモーダル認識モデルです。"
|
|
2824
|
+
},
|
|
2825
|
+
"qianfan-lightning-128b-a19b": {
|
|
2826
|
+
"description": "Qianfan Lightning 128B A19B、高性能な中国語汎用モデルで、複雑なQAや大規模推論タスクに適しています。"
|
|
2827
|
+
},
|
|
2828
|
+
"qianfan-llama-vl-8b": {
|
|
2829
|
+
"description": "Qianfan Llama VL 8B、Llamaベースのマルチモーダルモデルで、汎用的な画像と言語の理解タスクに対応します。"
|
|
2830
|
+
},
|
|
2831
|
+
"qianfan-multipicocr": {
|
|
2832
|
+
"description": "Qianfan MultiPicOCR、複数画像対応のOCRモデルで、複数の画像からの文字検出と認識をサポートします。"
|
|
2833
|
+
},
|
|
2834
|
+
"qianfan-qi-vl": {
|
|
2835
|
+
"description": "Qianfan QI VL、マルチモーダルQAモデルで、複雑な画像と言語のシナリオにおける高精度な検索と応答を実現します。"
|
|
2836
|
+
},
|
|
2837
|
+
"qianfan-singlepicocr": {
|
|
2838
|
+
"description": "Qianfan SinglePicOCR、単一画像用のOCRモデルで、高精度な文字認識をサポートします。"
|
|
2839
|
+
},
|
|
2840
|
+
"qianfan-vl-70b": {
|
|
2841
|
+
"description": "Qianfan VL 70B、大規模パラメータのビジュアル・ランゲージモデルで、複雑な画像と言語の理解に適しています。"
|
|
2842
|
+
},
|
|
2843
|
+
"qianfan-vl-8b": {
|
|
2844
|
+
"description": "Qianfan VL 8B、軽量なビジュアル・ランゲージモデルで、日常的な画像と言語のQAや分析に適しています。"
|
|
2845
|
+
},
|
|
2738
2846
|
"qvq-72b-preview": {
|
|
2739
2847
|
"description": "QVQモデルはQwenチームによって開発された実験的研究モデルで、視覚推論能力の向上に特化しており、特に数学推論の分野で優れた性能を発揮。"
|
|
2740
2848
|
},
|
|
@@ -2886,7 +2994,7 @@
|
|
|
2886
2994
|
"description": "通義千問2.5の対外オープンソースの72B規模のモデルです。"
|
|
2887
2995
|
},
|
|
2888
2996
|
"qwen2.5-7b-instruct": {
|
|
2889
|
-
"description": "
|
|
2997
|
+
"description": "Qwen2.5 7B Instruct、成熟したオープンソースの指示モデルで、様々な対話や生成シナリオに対応します。"
|
|
2890
2998
|
},
|
|
2891
2999
|
"qwen2.5-coder-1.5b-instruct": {
|
|
2892
3000
|
"description": "通義千問コードモデルのオープンソース版です。"
|
|
@@ -2919,13 +3027,13 @@
|
|
|
2919
3027
|
"description": "Qwen-Omniシリーズモデルは、動画、音声、画像、テキストなどの多様なモダリティのデータを入力としてサポートし、音声とテキストを出力します。"
|
|
2920
3028
|
},
|
|
2921
3029
|
"qwen2.5-vl-32b-instruct": {
|
|
2922
|
-
"description": "Qwen2.5
|
|
3030
|
+
"description": "Qwen2.5 VL 32B Instruct、マルチモーダルなオープンソースモデルで、オンプレミス導入や多様なシナリオに適しています。"
|
|
2923
3031
|
},
|
|
2924
3032
|
"qwen2.5-vl-72b-instruct": {
|
|
2925
3033
|
"description": "指示に従い、数学、問題解決、コード全体の向上、万物認識能力の向上を実現し、多様な形式で視覚要素を直接的に正確に特定し、長い動画ファイル(最大10分)を理解し、秒単位のイベント時刻を特定でき、時間の前後や速さを理解し、解析と特定能力に基づいてOSやモバイルのエージェントを操作し、重要な情報抽出能力とJson形式出力能力が強化されています。このバージョンは72Bバージョンで、本シリーズの中で最も強力なバージョンです。"
|
|
2926
3034
|
},
|
|
2927
3035
|
"qwen2.5-vl-7b-instruct": {
|
|
2928
|
-
"description": "
|
|
3036
|
+
"description": "Qwen2.5 VL 7B Instruct、軽量なマルチモーダルモデルで、導入コストと認識能力のバランスが取れています。"
|
|
2929
3037
|
},
|
|
2930
3038
|
"qwen2.5-vl-instruct": {
|
|
2931
3039
|
"description": "Qwen2.5-VLは、Qwenモデルファミリーにおける最新の視覚言語モデルです。"
|
|
@@ -2952,46 +3060,46 @@
|
|
|
2952
3060
|
"description": "Qwen3は、Alibabaの次世代大規模言語モデルであり、優れた性能で多様なアプリケーションニーズをサポートします。"
|
|
2953
3061
|
},
|
|
2954
3062
|
"qwen3-0.6b": {
|
|
2955
|
-
"description": "Qwen3
|
|
3063
|
+
"description": "Qwen3 0.6B、入門レベルのモデルで、簡単な推論やリソースが極めて限られた環境に適しています。"
|
|
2956
3064
|
},
|
|
2957
3065
|
"qwen3-1.7b": {
|
|
2958
|
-
"description": "Qwen3
|
|
3066
|
+
"description": "Qwen3 1.7B、超軽量モデルで、エッジやエンドデバイスへの導入に適しています。"
|
|
2959
3067
|
},
|
|
2960
3068
|
"qwen3-14b": {
|
|
2961
|
-
"description": "Qwen3
|
|
3069
|
+
"description": "Qwen3 14B、中規模モデルで、多言語のQAやテキスト生成に適しています。"
|
|
2962
3070
|
},
|
|
2963
3071
|
"qwen3-235b-a22b": {
|
|
2964
|
-
"description": "Qwen3
|
|
3072
|
+
"description": "Qwen3 235B A22B、汎用の大規模モデルで、様々な複雑なタスクに対応します。"
|
|
2965
3073
|
},
|
|
2966
3074
|
"qwen3-235b-a22b-instruct-2507": {
|
|
2967
|
-
"description": "Qwen3
|
|
3075
|
+
"description": "Qwen3 235B A22B Instruct 2507、汎用フラッグシップのInstructモデルで、多様な生成や推論タスクに適しています。"
|
|
2968
3076
|
},
|
|
2969
3077
|
"qwen3-235b-a22b-thinking-2507": {
|
|
2970
|
-
"description": "Qwen3
|
|
3078
|
+
"description": "Qwen3 235B A22B Thinking 2507、超大規模な思考モデルで、高難度の推論に対応します。"
|
|
2971
3079
|
},
|
|
2972
3080
|
"qwen3-30b-a3b": {
|
|
2973
|
-
"description": "Qwen3
|
|
3081
|
+
"description": "Qwen3 30B A3B、中〜大規模の汎用モデルで、コストと性能のバランスが取れています。"
|
|
2974
3082
|
},
|
|
2975
3083
|
"qwen3-30b-a3b-instruct-2507": {
|
|
2976
|
-
"description": "
|
|
3084
|
+
"description": "Qwen3 30B A3B Instruct 2507、中〜大規模のInstructモデルで、高品質な生成やQAに適しています。"
|
|
2977
3085
|
},
|
|
2978
3086
|
"qwen3-30b-a3b-thinking-2507": {
|
|
2979
|
-
"description": "Qwen3
|
|
3087
|
+
"description": "Qwen3 30B A3B Thinking 2507、中〜大規模の思考モデルで、精度とコストのバランスを実現します。"
|
|
2980
3088
|
},
|
|
2981
3089
|
"qwen3-32b": {
|
|
2982
|
-
"description": "Qwen3
|
|
3090
|
+
"description": "Qwen3 32B、より高度な理解能力が求められる汎用タスクに適しています。"
|
|
2983
3091
|
},
|
|
2984
3092
|
"qwen3-4b": {
|
|
2985
|
-
"description": "Qwen3
|
|
3093
|
+
"description": "Qwen3 4B、中小規模のアプリケーションやローカル推論シナリオに適しています。"
|
|
2986
3094
|
},
|
|
2987
3095
|
"qwen3-8b": {
|
|
2988
|
-
"description": "Qwen3
|
|
3096
|
+
"description": "Qwen3 8B、軽量モデルで、柔軟な導入が可能で高並列な業務に適しています。"
|
|
2989
3097
|
},
|
|
2990
3098
|
"qwen3-coder-30b-a3b-instruct": {
|
|
2991
3099
|
"description": "通義千問のコード生成モデルのオープンソース版。最新の qwen3-coder-30b-a3b-instruct は Qwen3 に基づくコード生成モデルで、強力な Coding Agent 機能を備え、ツールの呼び出しや環境との対話に長けており、自律的なプログラミングと卓越したコード生成能力、さらに汎用的な能力も兼ね備えています。"
|
|
2992
3100
|
},
|
|
2993
3101
|
"qwen3-coder-480b-a35b-instruct": {
|
|
2994
|
-
"description": "
|
|
3102
|
+
"description": "Qwen3 Coder 480B A35B Instruct、フラッグシップ級のコードモデルで、多言語プログラミングや複雑なコード理解に対応します。"
|
|
2995
3103
|
},
|
|
2996
3104
|
"qwen3-coder-flash": {
|
|
2997
3105
|
"description": "通義千問コードモデル。最新のQwen3-CoderシリーズモデルはQwen3をベースにしたコード生成モデルで、強力なコーディングエージェント能力を持ち、ツール呼び出しや環境とのインタラクションに長けています。自主的なプログラミングが可能で、コード能力に優れると同時に汎用能力も兼ね備えています。"
|
|
@@ -3005,32 +3113,41 @@
|
|
|
3005
3113
|
"qwen3-max": {
|
|
3006
3114
|
"description": "Tongyi Qianwen 3シリーズのMaxモデルは、2.5シリーズに比べて全体的な汎用能力が大幅に向上しており、中国語・英語のテキスト理解能力、複雑な指示遵守能力、主観的なオープンタスク能力、多言語能力、ツール呼び出し能力が著しく強化されています。モデルの知識幻覚も減少しています。最新のqwen3-maxモデルは、qwen3-max-previewバージョンに比べて、エージェントプログラミングとツール呼び出しの方向で特別なアップグレードが施されています。今回リリースされた正式版モデルは、ドメインのSOTAレベルに達しており、より複雑なエージェントニーズに対応可能です。"
|
|
3007
3115
|
},
|
|
3116
|
+
"qwen3-max-preview": {
|
|
3117
|
+
"description": "通義千問シリーズで最も高性能なモデル。複雑かつ多段階のタスクに適しており、プレビュー版では思考機能もサポート。"
|
|
3118
|
+
},
|
|
3008
3119
|
"qwen3-next-80b-a3b-instruct": {
|
|
3009
3120
|
"description": "Qwen3に基づく次世代の非思考モードのオープンソースモデルで、前バージョン(通義千問3-235B-A22B-Instruct-2507)と比べて中国語テキストの理解能力が向上し、論理推論能力が強化され、テキスト生成タスクのパフォーマンスがより優れています。"
|
|
3010
3121
|
},
|
|
3011
3122
|
"qwen3-next-80b-a3b-thinking": {
|
|
3012
|
-
"description": "Qwen3
|
|
3123
|
+
"description": "Qwen3 Next 80B A3B Thinking、複雑なタスクに対応するフラッグシップ推論モデルです。"
|
|
3013
3124
|
},
|
|
3014
3125
|
"qwen3-omni-flash": {
|
|
3015
3126
|
"description": "Qwen-Omni モデルは、テキスト、画像、音声、動画など複数のモダリティを組み合わせた入力に対応し、テキストまたは音声での応答を生成可能。多様な人間らしい音声スタイルを提供し、多言語・方言での音声出力をサポート。文章生成、視覚認識、音声アシスタントなどのシーンに応用可能です。"
|
|
3016
3127
|
},
|
|
3017
3128
|
"qwen3-vl-235b-a22b-instruct": {
|
|
3018
|
-
"description": "Qwen3 VL 235B A22B
|
|
3129
|
+
"description": "Qwen3 VL 235B A22B Instruct、フラッグシップのマルチモーダルモデルで、高度な理解と創作シナリオに対応します。"
|
|
3019
3130
|
},
|
|
3020
3131
|
"qwen3-vl-235b-a22b-thinking": {
|
|
3021
|
-
"description": "Qwen3 VL 235B A22B
|
|
3132
|
+
"description": "Qwen3 VL 235B A22B Thinking、フラッグシップの思考版で、複雑なマルチモーダル推論や計画タスクに適しています。"
|
|
3022
3133
|
},
|
|
3023
3134
|
"qwen3-vl-30b-a3b-instruct": {
|
|
3024
|
-
"description": "Qwen3 VL 30B
|
|
3135
|
+
"description": "Qwen3 VL 30B A3B Instruct、マルチモーダルの大規模モデルで、精度と推論性能の両立を実現します。"
|
|
3025
3136
|
},
|
|
3026
3137
|
"qwen3-vl-30b-a3b-thinking": {
|
|
3027
|
-
"description": "
|
|
3138
|
+
"description": "Qwen3 VL 30B A3B Thinking、複雑なマルチモーダルタスクに対応する深層思考バージョンです。"
|
|
3139
|
+
},
|
|
3140
|
+
"qwen3-vl-32b-instruct": {
|
|
3141
|
+
"description": "Qwen3 VL 32B Instruct、マルチモーダルの指示調整モデルで、高品質な画像と言語のQAや創作に適しています。"
|
|
3142
|
+
},
|
|
3143
|
+
"qwen3-vl-32b-thinking": {
|
|
3144
|
+
"description": "Qwen3 VL 32B Thinking、マルチモーダルの深層思考バージョンで、複雑な推論や長距離の因果分析を強化します。"
|
|
3028
3145
|
},
|
|
3029
3146
|
"qwen3-vl-8b-instruct": {
|
|
3030
|
-
"description": "Qwen3 VL 8B
|
|
3147
|
+
"description": "Qwen3 VL 8B Instruct、軽量なマルチモーダルモデルで、日常的なビジュアルQAやアプリ統合に適しています。"
|
|
3031
3148
|
},
|
|
3032
3149
|
"qwen3-vl-8b-thinking": {
|
|
3033
|
-
"description": "Qwen3 VL 8B
|
|
3150
|
+
"description": "Qwen3 VL 8B Thinking、マルチモーダルの思考チェーンモデルで、視覚情報に対する精緻な推論に適しています。"
|
|
3034
3151
|
},
|
|
3035
3152
|
"qwen3-vl-flash": {
|
|
3036
3153
|
"description": "Qwen3 VL Flash:軽量かつ高速な推論バージョンで、低遅延が求められるシナリオや大量リクエストに最適です。"
|
|
@@ -3263,6 +3380,12 @@
|
|
|
3263
3380
|
"wizardlm2:8x22b": {
|
|
3264
3381
|
"description": "WizardLM 2は、Microsoft AIが提供する言語モデルであり、複雑な対話、多言語、推論、インテリジェントアシスタントの分野で特に優れた性能を発揮します。"
|
|
3265
3382
|
},
|
|
3383
|
+
"x-ai/grok-4-fast": {
|
|
3384
|
+
"description": "Grok 4 Fast をリリースできることを嬉しく思います。これは、コスト効率の高い推論モデルにおける最新の進展です。"
|
|
3385
|
+
},
|
|
3386
|
+
"x-ai/grok-code-fast-1": {
|
|
3387
|
+
"description": "grok-code-fast-1 を発表できることを嬉しく思います。これは、高速かつ経済的な推論モデルであり、エージェントによるコーディングにおいて優れた性能を発揮します。"
|
|
3388
|
+
},
|
|
3266
3389
|
"x1": {
|
|
3267
3390
|
"description": "Spark X1 モデルはさらにアップグレードされ、元の数学タスクで国内のリーダーシップを維持しつつ、推論、テキスト生成、言語理解などの一般的なタスクで OpenAI o1 および DeepSeek R1 に匹敵する効果を実現します。"
|
|
3268
3391
|
},
|
|
@@ -3323,6 +3446,9 @@
|
|
|
3323
3446
|
"yi-vision-v2": {
|
|
3324
3447
|
"description": "複雑な視覚タスクモデルで、複数の画像に基づく高性能な理解と分析能力を提供します。"
|
|
3325
3448
|
},
|
|
3449
|
+
"z-ai/glm-4.6": {
|
|
3450
|
+
"description": "智譜の最新フラッグシップモデル GLM-4.6 は、高度なコーディング、長文処理、推論およびエージェント能力において前世代を大きく上回る性能を実現しています。"
|
|
3451
|
+
},
|
|
3326
3452
|
"zai-org/GLM-4.5": {
|
|
3327
3453
|
"description": "GLM-4.5はエージェントアプリケーション向けに設計された基盤モデルで、混合専門家(Mixture-of-Experts)アーキテクチャを採用。ツール呼び出し、ウェブブラウジング、ソフトウェア工学、フロントエンドプログラミング分野で深く最適化され、Claude CodeやRoo Codeなどのコードエージェントへのシームレスな統合をサポートします。混合推論モードを採用し、複雑な推論や日常利用など多様なシナリオに適応可能です。"
|
|
3328
3454
|
},
|