@lobehub/lobehub 2.0.0-next.7 → 2.0.0-next.70
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 +14 -15
- package/.github/workflows/docker.yml +17 -16
- package/.github/workflows/e2e.yml +17 -3
- package/.github/workflows/release-desktop-beta.yml +12 -12
- package/.github/workflows/release.yml +3 -5
- package/.github/workflows/test.yml +48 -12
- package/.nvmrc +1 -1
- package/CHANGELOG.md +1561 -0
- package/Dockerfile +1 -3
- package/README.md +8 -51
- package/README.zh-CN.md +8 -51
- package/apps/desktop/package.json +18 -18
- package/apps/desktop/src/main/controllers/AuthCtr.ts +78 -39
- package/apps/desktop/src/main/controllers/LocalFileCtr.ts +25 -5
- 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 +4 -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/tsconfig.json +0 -1
- package/changelog/v1.json +540 -0
- package/docker-compose/local/.env.example +3 -0
- package/docs/development/database-schema.dbml +5 -1
- 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/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 +27 -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/file.json +87 -2
- package/locales/ar/labs.json +4 -0
- package/locales/ar/marketAuth.json +42 -0
- package/locales/ar/modelProvider.json +13 -1
- package/locales/ar/models.json +196 -88
- 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 +8 -0
- package/locales/ar/topic.json +1 -0
- package/locales/bg-BG/auth.json +45 -1
- package/locales/bg-BG/chat.json +27 -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/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 +13 -1
- package/locales/bg-BG/models.json +196 -88
- 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 +8 -0
- package/locales/bg-BG/topic.json +1 -0
- package/locales/de-DE/auth.json +45 -1
- package/locales/de-DE/chat.json +27 -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/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 +13 -1
- package/locales/de-DE/models.json +196 -88
- 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 +8 -0
- package/locales/de-DE/topic.json +1 -0
- package/locales/en-US/auth.json +45 -1
- package/locales/en-US/chat.json +32 -0
- package/locales/en-US/common.json +2 -0
- package/locales/en-US/components.json +6 -0
- package/locales/en-US/discover.json +45 -0
- 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 +13 -1
- package/locales/en-US/models.json +196 -88
- 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 +8 -0
- package/locales/en-US/topic.json +1 -0
- package/locales/es-ES/auth.json +45 -1
- package/locales/es-ES/chat.json +27 -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/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 +13 -1
- package/locales/es-ES/models.json +196 -88
- 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 +8 -0
- package/locales/es-ES/topic.json +1 -0
- package/locales/fa-IR/auth.json +45 -1
- package/locales/fa-IR/chat.json +27 -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/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 +13 -1
- package/locales/fa-IR/models.json +196 -88
- 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 +8 -0
- package/locales/fa-IR/topic.json +1 -0
- package/locales/fr-FR/auth.json +45 -1
- package/locales/fr-FR/chat.json +27 -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/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 +13 -1
- package/locales/fr-FR/models.json +196 -88
- 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 +8 -0
- package/locales/fr-FR/topic.json +1 -0
- package/locales/it-IT/auth.json +45 -1
- package/locales/it-IT/chat.json +27 -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/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 +13 -1
- package/locales/it-IT/models.json +196 -88
- 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 +8 -0
- package/locales/it-IT/topic.json +1 -0
- package/locales/ja-JP/auth.json +45 -1
- package/locales/ja-JP/chat.json +27 -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/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 +13 -1
- package/locales/ja-JP/models.json +196 -88
- 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 +8 -0
- package/locales/ja-JP/topic.json +1 -0
- package/locales/ko-KR/auth.json +45 -1
- package/locales/ko-KR/chat.json +27 -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/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 +13 -1
- package/locales/ko-KR/models.json +202 -94
- 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 +8 -0
- package/locales/ko-KR/topic.json +1 -0
- package/locales/nl-NL/auth.json +45 -1
- package/locales/nl-NL/chat.json +27 -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/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 +13 -1
- package/locales/nl-NL/models.json +196 -88
- 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 +8 -0
- package/locales/nl-NL/topic.json +1 -0
- package/locales/pl-PL/auth.json +45 -1
- package/locales/pl-PL/chat.json +27 -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/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 +13 -1
- package/locales/pl-PL/models.json +196 -88
- 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 +8 -0
- package/locales/pl-PL/topic.json +1 -0
- package/locales/pt-BR/auth.json +45 -1
- package/locales/pt-BR/chat.json +27 -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/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 +13 -1
- package/locales/pt-BR/models.json +196 -88
- 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 +8 -0
- package/locales/pt-BR/topic.json +1 -0
- package/locales/ru-RU/auth.json +45 -1
- package/locales/ru-RU/chat.json +27 -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/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 +13 -1
- package/locales/ru-RU/models.json +196 -88
- 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 +8 -0
- package/locales/ru-RU/topic.json +1 -0
- package/locales/tr-TR/auth.json +45 -1
- package/locales/tr-TR/chat.json +27 -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/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 +13 -1
- package/locales/tr-TR/models.json +196 -88
- 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 +8 -0
- package/locales/tr-TR/topic.json +1 -0
- package/locales/vi-VN/auth.json +45 -1
- package/locales/vi-VN/chat.json +27 -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/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 +13 -1
- package/locales/vi-VN/models.json +196 -88
- 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 +8 -0
- package/locales/vi-VN/topic.json +1 -0
- package/locales/zh-CN/auth.json +45 -1
- package/locales/zh-CN/chat.json +32 -0
- package/locales/zh-CN/common.json +2 -0
- package/locales/zh-CN/components.json +6 -0
- package/locales/zh-CN/discover.json +45 -0
- 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 +13 -1
- package/locales/zh-CN/models.json +196 -88
- 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 +8 -0
- package/locales/zh-CN/topic.json +1 -0
- package/locales/zh-TW/auth.json +45 -1
- package/locales/zh-TW/chat.json +27 -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/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 +13 -1
- package/locales/zh-TW/models.json +196 -88
- 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 +8 -0
- package/locales/zh-TW/topic.json +1 -0
- package/next.config.ts +5 -6
- package/package.json +78 -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 +68 -19
- package/packages/agent-runtime/src/types/event.ts +3 -1
- package/packages/agent-runtime/src/types/generalAgent.ts +56 -0
- package/packages/agent-runtime/src/types/index.ts +1 -0
- package/packages/agent-runtime/src/types/instruction.ts +13 -5
- 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/index.ts +0 -1
- package/packages/const/src/models.ts +4 -2
- package/packages/const/src/settings/tool.ts +1 -5
- package/packages/const/src/url.ts +2 -4
- package/packages/const/src/user.ts +4 -2
- package/packages/const/src/utils/merge.ts +3 -3
- package/packages/const/src/version.ts +0 -5
- package/packages/context-engine/package.json +2 -2
- package/packages/context-engine/src/base/BaseProcessor.ts +13 -13
- package/packages/context-engine/src/base/BaseProvider.ts +2 -2
- package/packages/context-engine/src/base/__tests__/BaseProcessor.test.ts +5 -5
- package/packages/context-engine/src/index.ts +1 -6
- package/packages/context-engine/src/processors/GroupMessageFlatten.ts +20 -8
- 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 +18 -18
- package/packages/context-engine/src/processors/ToolMessageReorder.ts +10 -10
- package/packages/context-engine/src/processors/__tests__/GroupMessageFlatten.test.ts +83 -19
- package/packages/context-engine/src/processors/__tests__/MessageCleanup.test.ts +28 -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/providers/index.ts +0 -2
- package/packages/context-engine/src/tools/ToolsEngine.ts +8 -8
- package/packages/context-engine/src/types.ts +35 -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/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/_journal.json +28 -0
- package/packages/database/package.json +4 -4
- 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 +52 -7
- 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/drizzleMigration.ts +1 -1
- package/packages/database/src/models/file.ts +30 -5
- package/packages/database/src/models/message.ts +47 -81
- 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/document.ts +1 -2
- package/packages/database/src/schemas/file.ts +1 -2
- package/packages/database/src/schemas/message.ts +5 -8
- package/packages/database/src/schemas/topic.ts +1 -2
- package/packages/database/src/schemas/user.ts +1 -1
- package/packages/database/src/server/models/__tests__/user.test.ts +1 -1
- 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 +26 -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 +477 -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 +107 -2
- package/packages/model-bank/src/aiModels/google.ts +10 -6
- package/packages/model-bank/src/aiModels/mistral.ts +2 -1
- 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/qwen.ts +76 -7
- package/packages/model-bank/src/aiModels/vertexai.ts +2 -0
- package/packages/model-bank/src/aiModels/wenxin.ts +1348 -291
- package/packages/model-bank/src/types/aiModel.ts +16 -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 +1 -1
- package/packages/model-runtime/src/core/contextBuilders/google.ts +3 -6
- package/packages/model-runtime/src/core/contextBuilders/openai.test.ts +93 -7
- package/packages/model-runtime/src/core/contextBuilders/openai.ts +45 -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 +3 -6
- package/packages/model-runtime/src/core/openaiCompatibleFactory/index.ts +3 -2
- 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/responsesStream.test.ts +1 -1
- 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 +1 -4
- 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/mistral/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/moonshot/index.test.ts +1 -1
- 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/index.test.ts +44 -0
- package/packages/model-runtime/src/providers/openrouter/index.test.ts +1 -1
- package/packages/model-runtime/src/providers/perplexity/index.test.ts +1 -1
- 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 +4 -0
- 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 +8 -8
- 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 +17 -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 +14 -1
- package/packages/types/src/message/common/image.ts +8 -0
- package/packages/types/src/message/common/metadata.ts +51 -1
- package/packages/types/src/message/common/tools.ts +27 -1
- package/packages/types/src/message/db/item.ts +15 -1
- package/packages/types/src/message/db/params.ts +47 -1
- package/packages/types/src/message/ui/chat.ts +29 -3
- 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 +20 -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/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/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/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/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 +7 -2
- package/src/app/(backend)/trpc/async/[trpc]/route.ts +9 -3
- package/src/app/(backend)/trpc/desktop/[trpc]/route.ts +9 -3
- 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/stt/openai/route.ts +0 -2
- 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__/useCategory.test.tsx +9 -20
- package/src/app/[variants]/(main)/(mobile)/me/(home)/features/UserBanner.tsx +3 -6
- package/src/app/[variants]/(main)/(mobile)/me/(home)/features/useCategory.tsx +4 -33
- package/src/app/[variants]/(main)/(mobile)/me/(home)/layout.tsx +0 -2
- package/src/app/[variants]/(main)/(mobile)/me/profile/features/Category.tsx +18 -23
- package/src/app/[variants]/(main)/(mobile)/me/settings/features/useCategory.tsx +6 -15
- package/src/app/[variants]/(main)/_layout/Desktop/SideBar/PinList/index.tsx +4 -2
- package/src/app/[variants]/(main)/_layout/Desktop/SideBar/TopActions.tsx +1 -4
- package/src/app/[variants]/(main)/chat/ChatRouter.tsx +83 -0
- package/src/app/[variants]/(main)/chat/_layout/ChatLayout.tsx +22 -0
- package/src/app/[variants]/(main)/chat/_layout/Desktop/SessionPanel.tsx +12 -7
- package/src/app/[variants]/(main)/chat/_layout/Desktop/index.tsx +2 -4
- package/src/app/[variants]/(main)/chat/_layout/FeatureFlagsProvider.tsx +24 -0
- package/src/app/[variants]/(main)/chat/_layout/Mobile.tsx +4 -7
- 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/MainChatPage.tsx +25 -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/SettingsPage.tsx +94 -0
- package/src/app/[variants]/(main)/chat/components/TopicSidebar.tsx +30 -0
- package/src/app/[variants]/(main)/chat/components/WorkspaceLayout.tsx +73 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/MessageFromUrl.tsx +32 -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 +104 -0
- package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/useSend.ts +321 -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/topic/features/Topic/TopicListContent/TopicItem/TopicContent.tsx +241 -0
- package/src/app/[variants]/(main)/chat/layout.tsx +10 -0
- package/src/app/[variants]/(main)/chat/page.tsx +12 -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/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)/discover/(detail)/assistant/AssistantDetailPage.tsx +11 -2
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/Client.tsx +12 -1
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Nav.tsx +19 -12
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Overview/TagList.tsx +14 -5
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Overview/index.tsx +2 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Related/index.tsx +14 -5
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/SystemRole/TagList.tsx +14 -5
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/SystemRole/index.tsx +43 -29
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Versions/index.tsx +137 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/index.tsx +2 -0
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Header.tsx +9 -10
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/ActionButton/AddAgent.tsx +105 -14
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/Related/index.tsx +20 -6
- package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/StatusPage/index.tsx +113 -0
- package/src/app/[variants]/(main)/discover/(detail)/features/Breadcrumb.tsx +4 -3
- package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/ActionButton/ProviderConfig.tsx +4 -11
- package/src/app/[variants]/(main)/discover/(list)/_layout/Desktop/Nav.tsx +3 -1
- package/src/app/[variants]/(main)/discover/(list)/assistant/AssistantPage.tsx +4 -1
- package/src/app/[variants]/(main)/discover/(list)/assistant/Client.tsx +6 -2
- package/src/app/[variants]/(main)/discover/(list)/assistant/features/Category/index.tsx +7 -3
- 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)/features/Pagination.tsx +1 -0
- package/src/app/[variants]/(main)/discover/(list)/features/SortButton/index.tsx +27 -8
- package/src/app/[variants]/(main)/discover/(list)/mcp/features/List/Item.tsx +1 -0
- package/src/app/[variants]/(main)/discover/(list)/model/features/List/Item.tsx +1 -0
- package/src/app/[variants]/(main)/discover/(list)/provider/features/List/Item.tsx +1 -0
- package/src/app/[variants]/(main)/discover/components/CategoryMenu.tsx +9 -1
- 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/features/PromptInput/index.tsx +1 -1
- package/src/app/[variants]/(main)/image/layout.tsx +0 -4
- package/src/app/[variants]/(main)/image/page.tsx +0 -2
- package/src/app/[variants]/(main)/knowledge/KnowledgeRouter.tsx +2 -1
- package/src/app/[variants]/(main)/knowledge/components/KnowledgeBaseItem/index.tsx +0 -2
- package/src/app/[variants]/(main)/knowledge/hooks/useFileCategory.ts +6 -3
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/index.tsx +2 -2
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/CategoryMenu.tsx +35 -0
- 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 +20 -7
- package/src/app/[variants]/(main)/labs/components/LabCard.tsx +8 -6
- package/src/app/[variants]/(main)/labs/page.tsx +10 -22
- package/src/app/[variants]/(main)/profile/_layout/Desktop/index.tsx +18 -19
- package/src/app/[variants]/(main)/profile/_layout/Mobile/index.tsx +5 -9
- package/src/app/[variants]/(main)/profile/hooks/useCategory.tsx +20 -14
- package/src/app/[variants]/(main)/profile/stats/features/ShareButton/Preview.tsx +2 -14
- 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 +145 -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/page.tsx +23 -0
- package/src/app/[variants]/(main)/settings/_layout/Desktop/index.tsx +2 -5
- package/src/app/[variants]/(main)/settings/_layout/Mobile/index.tsx +0 -2
- 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/index.tsx +11 -10
- 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/ProviderMenu/Item.tsx +35 -36
- 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/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/vertexai/index.tsx +1 -1
- package/src/app/[variants]/(main)/settings/provider/features/ModelList/DisabledModels.tsx +144 -8
- package/src/app/[variants]/(main)/settings/provider/features/ProviderConfig/index.tsx +4 -8
- 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]/loading/index.tsx +1 -10
- 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/market-auth-callback/layout.tsx +39 -0
- package/src/app/market-auth-callback/page.tsx +196 -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/Thinking/index.tsx +4 -3
- 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/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/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/AgentPlugin/index.tsx +2 -2
- package/src/features/AgentSetting/AgentPrompt/TokenTag.tsx +3 -2
- package/src/features/AgentSetting/AgentTTS/SelectWithTTSPreview.tsx +1 -1
- package/src/features/AgentSetting/store/action.ts +1 -1
- package/src/features/ChatInput/ActionBar/Knowledge/index.tsx +4 -5
- package/src/features/ChatInput/ActionBar/Model/ControlsForm.tsx +12 -0
- package/src/features/ChatInput/ActionBar/Model/GPT51ReasoningEffortSlider.tsx +58 -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/Tools/useControls.tsx +1 -3
- package/src/features/ChatInput/ActionBar/Upload/index.tsx +1 -3
- 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/ErrorJsonViewer.tsx +4 -3
- package/src/features/Conversation/Error/OAuthForm.tsx +1 -1
- package/src/features/Conversation/Error/OllamaBizError/index.tsx +7 -2
- package/src/features/Conversation/Error/index.tsx +15 -10
- package/src/features/Conversation/MarkdownElements/LobeArtifact/Render/index.tsx +2 -2
- 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 +10 -11
- package/src/features/Conversation/Messages/Assistant/MessageContent.tsx +27 -38
- package/src/features/Conversation/Messages/Assistant/index.tsx +297 -180
- package/src/features/Conversation/Messages/Default.tsx +3 -2
- 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 +53 -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 +47 -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/ToolTitle.tsx +90 -0
- package/src/features/Conversation/Messages/Group/Tool/Inspector/index.tsx +208 -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 +134 -0
- package/src/features/Conversation/Messages/Group/Tool/index.tsx +97 -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/BuiltinPluginTitle.tsx +54 -0
- 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/Extra.tsx +2 -2
- 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 +50 -14
- 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/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 -24
- 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/PluginTag/index.tsx +1 -3
- package/src/features/PluginsUI/Render/BuiltinType/index.test.tsx +45 -30
- 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 +2 -2
- package/src/features/PluginsUI/Render/index.tsx +17 -0
- package/src/features/Portal/Artifacts/Body/Renderer/SVG.tsx +23 -6
- package/src/features/Portal/Artifacts/Body/index.tsx +2 -2
- 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/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/index.tsx +7 -13
- package/src/features/ShareModal/style.ts +40 -30
- package/src/features/User/UserPanel/PanelContent.tsx +6 -8
- package/src/helpers/isCanUseFC.ts +0 -8
- package/src/hooks/useAgentOwnershipCheck.ts +143 -0
- package/src/hooks/useCheckPluginsIsInstalled.ts +1 -4
- 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 +9 -10
- package/src/hooks/useInterceptingRoutes.ts +1 -7
- 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/useScreenshot.ts +44 -28
- 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/StoreInitialization.tsx +2 -4
- 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 +12 -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 +33 -0
- package/src/locales/default/common.ts +2 -0
- package/src/locales/default/components.ts +6 -0
- package/src/locales/default/discover.ts +46 -0
- 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 +15 -1
- 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 +8 -0
- package/src/locales/default/topic.ts +1 -0
- 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/ModelRuntime/trace.ts +11 -4
- package/src/server/modules/S3/index.test.ts +379 -0
- package/src/server/routers/async/__tests__/caller.test.ts +333 -0
- package/src/server/routers/async/caller.ts +2 -1
- package/src/server/routers/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 +72 -0
- 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 +59 -56
- 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 +69 -52
- package/src/services/chat/clientModelRuntime.test.ts +109 -173
- package/src/services/chat/contextEngineering.test.ts +4 -30
- package/src/services/chat/contextEngineering.ts +8 -18
- package/src/services/chat/helper.ts +7 -31
- package/src/services/chat/index.ts +18 -16
- 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 +61 -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 +226 -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/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 +279 -0
- package/src/store/chat/agents/__tests__/GeneralChatAgent.test.ts +778 -0
- package/src/store/chat/agents/createAgentExecutors.ts +513 -0
- package/src/store/chat/agents/createToolEngine.ts +22 -0
- package/src/store/chat/helpers.ts +10 -2
- package/src/store/chat/selectors.ts +1 -1
- package/src/store/chat/slices/aiChat/actions/__tests__/conversationControl.test.ts +332 -0
- package/src/store/chat/slices/aiChat/actions/__tests__/conversationLifecycle.test.ts +257 -0
- package/src/store/chat/slices/aiChat/actions/__tests__/helpers.ts +19 -6
- package/src/store/chat/slices/aiChat/actions/__tests__/rag.test.ts +6 -6
- package/src/store/chat/slices/aiChat/actions/__tests__/streamingExecutor.test.ts +391 -0
- package/src/store/chat/slices/aiChat/actions/__tests__/streamingStates.test.ts +179 -0
- package/src/store/chat/slices/aiChat/actions/conversationControl.ts +273 -0
- package/src/store/chat/slices/aiChat/actions/conversationLifecycle.ts +382 -0
- package/src/store/chat/slices/aiChat/actions/generateAIGroupChat.ts +19 -14
- 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 +694 -0
- package/src/store/chat/slices/aiChat/actions/streamingStates.ts +84 -0
- package/src/store/chat/slices/builtinTool/actions/__tests__/localSystem.test.ts +7 -7
- package/src/store/chat/slices/builtinTool/actions/__tests__/search.test.ts +17 -17
- package/src/store/chat/slices/builtinTool/actions/index.ts +1 -4
- package/src/store/chat/slices/builtinTool/actions/interpreter.ts +10 -10
- package/src/store/chat/slices/builtinTool/actions/localSystem.ts +5 -5
- package/src/store/chat/slices/builtinTool/actions/search.ts +16 -16
- package/src/store/chat/slices/message/action.test.ts +204 -48
- package/src/store/chat/slices/message/actions/index.ts +39 -0
- package/src/store/chat/slices/message/actions/internals.ts +77 -0
- package/src/store/chat/slices/message/actions/optimisticUpdate.ts +272 -0
- package/src/store/chat/slices/message/actions/publicApi.ts +261 -0
- package/src/store/chat/slices/message/actions/query.ts +120 -0
- package/src/store/chat/slices/message/actions/runtimeState.ts +108 -0
- package/src/store/chat/slices/message/initialState.ts +18 -0
- package/src/store/chat/slices/message/reducer.test.ts +48 -12
- package/src/store/chat/slices/message/reducer.ts +25 -4
- package/src/store/chat/slices/message/selectors/chat.test.ts +92 -0
- package/src/store/chat/slices/message/selectors/chat.ts +106 -0
- package/src/store/chat/slices/message/selectors/dbMessage.test.ts +51 -0
- package/src/store/chat/slices/message/selectors/dbMessage.ts +140 -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/index.ts +2 -0
- package/src/store/chat/slices/message/selectors/messageState.test.ts +36 -0
- package/src/store/chat/slices/message/selectors/messageState.ts +92 -0
- package/src/store/chat/slices/plugin/action.test.ts +169 -210
- package/src/store/chat/slices/plugin/actions/index.ts +39 -0
- package/src/store/chat/slices/plugin/actions/internals.ts +83 -0
- package/src/store/chat/slices/plugin/actions/optimisticUpdate.ts +213 -0
- package/src/store/chat/slices/plugin/actions/pluginTypes.ts +213 -0
- package/src/store/chat/slices/plugin/actions/publicApi.ts +115 -0
- package/src/store/chat/slices/plugin/actions/workflow.ts +121 -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 +17 -12
- package/src/store/chat/slices/thread/selectors/index.ts +8 -6
- package/src/store/chat/slices/topic/action.test.ts +1 -1
- package/src/store/chat/slices/topic/action.ts +1 -2
- 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 +3 -3
- package/src/store/chat/store.ts +2 -2
- 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/initialState.ts +13 -1
- 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/selectors/tool.test.ts +1 -1
- package/src/store/tool/selectors/tool.ts +6 -8
- package/src/store/tool/slices/builtin/action.test.ts +83 -35
- package/src/store/tool/slices/builtin/action.ts +0 -9
- package/src/store/tool/slices/builtin/selectors.test.ts +4 -30
- package/src/store/tool/slices/builtin/selectors.ts +15 -21
- 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 +5 -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/index.ts +0 -6
- package/src/tools/interventions.ts +30 -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/index.ts +11 -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/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 +2 -1
- 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 +21 -0
- package/src/tools/local-system/index.ts +185 -4
- package/src/tools/local-system/systemRole.ts +62 -8
- package/src/tools/placeholders.ts +39 -8
- package/src/tools/renders.ts +35 -9
- 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 +2 -2
- 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/const/src/guide.ts +0 -89
- package/packages/context-engine/ARCHITECTURE.md +0 -425
- package/packages/context-engine/src/providers/InboxGuide.ts +0 -102
- package/packages/context-engine/src/providers/__tests__/InboxGuideProvider.test.ts +0 -121
- package/packages/database/src/models/__tests__/message.test.ts +0 -2552
- package/packages/database/src/utils/__tests__/groupMessages.test.ts +0 -989
- package/packages/database/src/utils/groupMessages.ts +0 -359
- 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/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)/chat/(workspace)/@conversation/features/ChatInput/Desktop/MessageFromUrl.tsx +0 -32
- 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 -102
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/useSend.ts +0 -316
- 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)/@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/default.tsx +0 -31
- 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 -156
- 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/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/page.tsx +0 -62
- package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ModelSelect.tsx +0 -161
- 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)/settings/storage/IndexedDBStorage.tsx +0 -55
- 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/BuiltinPluginTitle.tsx +0 -54
- 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 -92
- 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/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/chat/__snapshots__/chat.test.ts.snap +0 -110
- 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 -186
- package/src/services/message/server.ts +0 -150
- package/src/services/message/type.ts +0 -54
- 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/builtinTool/actions/__tests__/dalle.test.ts +0 -121
- package/src/store/chat/slices/builtinTool/actions/dalle.ts +0 -124
- package/src/store/chat/slices/message/action.ts +0 -553
- package/src/store/chat/slices/message/selectors.test.ts +0 -473
- package/src/store/chat/slices/message/selectors.ts +0 -322
- package/src/store/chat/slices/plugin/action.ts +0 -548
- 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/dalle/Render/GalleyGrid.tsx +0 -60
- package/src/tools/dalle/Render/Item/EditMode.tsx +0 -66
- package/src/tools/dalle/Render/Item/Error.tsx +0 -49
- package/src/tools/dalle/Render/Item/Image.tsx +0 -44
- package/src/tools/dalle/Render/Item/ImageFileItem.tsx +0 -57
- package/src/tools/dalle/Render/Item/index.tsx +0 -88
- package/src/tools/dalle/Render/ToolBar.tsx +0 -56
- package/src/tools/dalle/Render/index.tsx +0 -52
- package/src/tools/dalle/index.ts +0 -92
- 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]/(main)/chat/{(workspace)/@conversation → components/conversation}/default.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatHydration/index.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/index.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/ThreadHydration.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/SessionHydration.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/Inbox/index.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/List/index.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/SessionHeader.tsx +0 -0
- /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Mobile/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/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/FilesSearchBar.tsx +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
|
@@ -191,6 +191,9 @@
|
|
|
191
191
|
"Kwai-Kolors/Kolors": {
|
|
192
192
|
"description": "Kolors, Kuaishou Kolors ekibi tarafından geliştirilen, latent difüzyon tabanlı büyük ölçekli metinden görüntüye üretim modelidir. Milyarlarca metin-görüntü çiftinden eğitilerek görsel kalite, karmaşık anlamsal doğruluk ve Çince-İngilizce karakter işleme alanlarında üstün performans gösterir. Hem Çince hem İngilizce girişleri destekler ve özellikle Çince içerik anlama ve üretiminde başarılıdır."
|
|
193
193
|
},
|
|
194
|
+
"Kwaipilot/KAT-Dev": {
|
|
195
|
+
"description": "KAT-Dev (32B), yazılım mühendisliği görevleri için özel olarak tasarlanmış açık kaynaklı bir 32B parametreli modeldir. SWE-Bench Verified kıyaslamasında %62,4 başarı oranı elde etmiş ve farklı boyutlardaki tüm açık kaynak modeller arasında beşinci sırada yer almıştır. Model; ara eğitim, denetimli ince ayar (SFT) ve pekiştirmeli öğrenme (RL) dahil olmak üzere çok aşamalı bir süreçle optimize edilmiştir. Kod tamamlama, hata düzeltme, kod incelemesi gibi karmaşık programlama görevlerinde güçlü destek sunmak üzere tasarlanmıştır."
|
|
196
|
+
},
|
|
194
197
|
"Llama-3.2-11B-Vision-Instruct": {
|
|
195
198
|
"description": "Yüksek çözünürlüklü görüntülerde mükemmel görüntü akıl yürütme yeteneği, görsel anlama uygulamaları için uygundur."
|
|
196
199
|
},
|
|
@@ -788,12 +791,6 @@
|
|
|
788
791
|
"claude-3-5-haiku-latest": {
|
|
789
792
|
"description": "Claude 3.5 Haiku hızlı yanıtlar sunar ve hafif görevler için uygundur."
|
|
790
793
|
},
|
|
791
|
-
"claude-3-5-sonnet-20240620": {
|
|
792
|
-
"description": "Claude 3.5 Sonnet, Opus'tan daha fazla yetenek ve Sonnet'ten daha hızlı bir performans sunar, aynı zamanda Sonnet ile aynı fiyatı korur. Sonnet, programlama, veri bilimi, görsel işleme ve ajan görevlerinde özellikle başarılıdır."
|
|
793
|
-
},
|
|
794
|
-
"claude-3-5-sonnet-20241022": {
|
|
795
|
-
"description": "Claude 3.5 Sonnet, Opus'tan daha fazla yetenek ve Sonnet'ten daha hızlı performans sunarken, aynı fiyatta kalmaktadır. Sonnet, programlama, veri bilimi, görsel işleme ve aracı görevlerde özellikle güçlüdür."
|
|
796
|
-
},
|
|
797
794
|
"claude-3-7-sonnet-20250219": {
|
|
798
795
|
"description": "Claude 3.7 Sonnet, endüstri standartlarını yükselterek, rakip modelleri ve Claude 3 Opus'u geride bırakarak, geniş bir değerlendirme yelpazesinde mükemmel performans sergilemekte, orta seviye modellerimizin hız ve maliyet avantajlarını sunmaktadır."
|
|
799
796
|
},
|
|
@@ -1052,6 +1049,9 @@
|
|
|
1052
1049
|
"deepseek-r1-0528": {
|
|
1053
1050
|
"description": "685 milyar parametreli tam sürüm model, 28 Mayıs 2025'te yayınlandı. DeepSeek-R1, son eğitim aşamasında pek az etiketli veriyle güçlendirilmiş öğrenme tekniklerini geniş çapta kullanarak modelin çıkarım yeteneğini büyük ölçüde artırdı. Matematik, kodlama, doğal dil çıkarımı gibi görevlerde yüksek performans ve güçlü yetenekler sergiler."
|
|
1054
1051
|
},
|
|
1052
|
+
"deepseek-r1-250528": {
|
|
1053
|
+
"description": "DeepSeek R1 250528, tam özellikli DeepSeek-R1 çıkarım modeli, zorlu matematik ve mantık görevleri için uygundur."
|
|
1054
|
+
},
|
|
1055
1055
|
"deepseek-r1-70b-fast-online": {
|
|
1056
1056
|
"description": "DeepSeek R1 70B hızlı versiyonu, gerçek zamanlı çevrimiçi arama desteği ile, model performansını korurken daha hızlı yanıt süreleri sunar."
|
|
1057
1057
|
},
|
|
@@ -1062,31 +1062,34 @@
|
|
|
1062
1062
|
"description": "deepseek-r1-distill-llama, DeepSeek-R1'den Llama tabanlı damıtılarak elde edilmiş bir modeldir."
|
|
1063
1063
|
},
|
|
1064
1064
|
"deepseek-r1-distill-llama-70b": {
|
|
1065
|
-
"description": "DeepSeek R1
|
|
1065
|
+
"description": "DeepSeek R1 Distill Llama 70B, genel amaçlı R1 çıkarım yeteneğini Llama ekosistemiyle birleştiren distilasyon modeli."
|
|
1066
1066
|
},
|
|
1067
1067
|
"deepseek-r1-distill-llama-8b": {
|
|
1068
|
-
"description": "DeepSeek-R1-Distill
|
|
1068
|
+
"description": "DeepSeek-R1-Distill-Llama-8B, Llama-3.1-8B tabanlı bir distilasyon büyük dil modelidir ve DeepSeek R1 çıktılarıyla eğitilmiştir."
|
|
1069
1069
|
},
|
|
1070
|
-
"deepseek-r1-distill-qianfan-
|
|
1071
|
-
"description": "
|
|
1070
|
+
"deepseek-r1-distill-qianfan-70b": {
|
|
1071
|
+
"description": "DeepSeek R1 Distill Qianfan 70B, Qianfan-70B tabanlı R1 distilasyon modeli, yüksek maliyet-performans oranına sahiptir."
|
|
1072
|
+
},
|
|
1073
|
+
"deepseek-r1-distill-qianfan-8b": {
|
|
1074
|
+
"description": "DeepSeek R1 Distill Qianfan 8B, Qianfan-8B tabanlı R1 distilasyon modeli, orta ve küçük ölçekli uygulamalar için uygundur."
|
|
1072
1075
|
},
|
|
1073
|
-
"deepseek-r1-distill-qianfan-llama-
|
|
1074
|
-
"description": "
|
|
1076
|
+
"deepseek-r1-distill-qianfan-llama-70b": {
|
|
1077
|
+
"description": "DeepSeek R1 Distill Qianfan Llama 70B, Llama-70B tabanlı R1 distilasyon modelidir."
|
|
1075
1078
|
},
|
|
1076
1079
|
"deepseek-r1-distill-qwen": {
|
|
1077
1080
|
"description": "deepseek-r1-distill-qwen, Qwen temel alınarak DeepSeek-R1'den damıtılmış bir modeldir."
|
|
1078
1081
|
},
|
|
1079
1082
|
"deepseek-r1-distill-qwen-1.5b": {
|
|
1080
|
-
"description": "DeepSeek
|
|
1083
|
+
"description": "DeepSeek R1 Distill Qwen 1.5B, son derece hafif R1 distilasyon modeli, düşük kaynaklı ortamlar için uygundur."
|
|
1081
1084
|
},
|
|
1082
1085
|
"deepseek-r1-distill-qwen-14b": {
|
|
1083
|
-
"description": "DeepSeek
|
|
1086
|
+
"description": "DeepSeek R1 Distill Qwen 14B, orta ölçekli R1 distilasyon modeli, çoklu senaryo dağıtımı için uygundur."
|
|
1084
1087
|
},
|
|
1085
1088
|
"deepseek-r1-distill-qwen-32b": {
|
|
1086
|
-
"description": "DeepSeek
|
|
1089
|
+
"description": "DeepSeek R1 Distill Qwen 32B, Qwen-32B tabanlı R1 distilasyon modeli, performans ve maliyet arasında denge sağlar."
|
|
1087
1090
|
},
|
|
1088
1091
|
"deepseek-r1-distill-qwen-7b": {
|
|
1089
|
-
"description": "DeepSeek
|
|
1092
|
+
"description": "DeepSeek R1 Distill Qwen 7B, hafif R1 distilasyon modeli, uç nokta ve kurumsal özel ortamlar için uygundur."
|
|
1090
1093
|
},
|
|
1091
1094
|
"deepseek-r1-fast-online": {
|
|
1092
1095
|
"description": "DeepSeek R1 tam hızlı versiyonu, gerçek zamanlı çevrimiçi arama desteği ile, 671B parametrenin güçlü yetenekleri ile daha hızlı yanıt sürelerini birleştirir."
|
|
@@ -1115,12 +1118,24 @@
|
|
|
1115
1118
|
"deepseek-v3.1-terminus": {
|
|
1116
1119
|
"description": "DeepSeek-V3.1-Terminus, DeepSeek tarafından geliştirilen ve uç cihazlar için optimize edilmiş büyük dil modeli sürümüdür."
|
|
1117
1120
|
},
|
|
1121
|
+
"deepseek-v3.1-think-250821": {
|
|
1122
|
+
"description": "DeepSeek V3.1 Think 250821, Terminus sürümüne karşılık gelen derin düşünme modeli, yüksek performanslı çıkarım senaryoları için uygundur."
|
|
1123
|
+
},
|
|
1118
1124
|
"deepseek-v3.1:671b": {
|
|
1119
1125
|
"description": "DeepSeek V3.1: Karmaşık çıkarım ve bağlantılı düşünme yeteneklerini geliştiren yeni nesil çıkarım modeli, derinlemesine analiz gerektiren görevler için uygundur."
|
|
1120
1126
|
},
|
|
1121
1127
|
"deepseek-v3.2-exp": {
|
|
1122
1128
|
"description": "deepseek-v3.2-exp seyrek dikkat mekanizması getirir, uzun metinlerin işlenmesinde eğitim ve çıkarım verimliliğini artırmayı amaçlar, fiyatı deepseek-v3.1'den daha düşüktür."
|
|
1123
1129
|
},
|
|
1130
|
+
"deepseek-v3.2-think": {
|
|
1131
|
+
"description": "DeepSeek V3.2 Think, tam özellikli derin düşünme modeli, uzun zincirli çıkarım yeteneklerini güçlendirir."
|
|
1132
|
+
},
|
|
1133
|
+
"deepseek-vl2": {
|
|
1134
|
+
"description": "DeepSeek VL2, çok modlu model, görsel ve metin anlayışı ile ayrıntılı görsel soru-cevap desteği sunar."
|
|
1135
|
+
},
|
|
1136
|
+
"deepseek-vl2-small": {
|
|
1137
|
+
"description": "DeepSeek VL2 Small, hafif çok modlu sürüm, kaynak kısıtlı ve yüksek eşzamanlılık gerektiren senaryolar için uygundur."
|
|
1138
|
+
},
|
|
1124
1139
|
"deepseek/deepseek-chat-v3-0324": {
|
|
1125
1140
|
"description": "DeepSeek V3, 685B parametreye sahip bir uzman karışık modeldir ve DeepSeek ekibinin amiral gemisi sohbet modeli serisinin en son iterasyonudur.\n\nÇeşitli görevlerde mükemmel performans sergileyen [DeepSeek V3](/deepseek/deepseek-chat-v3) modelini devralmıştır."
|
|
1126
1141
|
},
|
|
@@ -1256,83 +1271,89 @@
|
|
|
1256
1271
|
"emohaa": {
|
|
1257
1272
|
"description": "Emohaa, duygusal sorunları anlamalarına yardımcı olmak için profesyonel danışmanlık yeteneklerine sahip bir psikolojik modeldir."
|
|
1258
1273
|
},
|
|
1259
|
-
"ernie-
|
|
1260
|
-
"description": "
|
|
1261
|
-
},
|
|
1262
|
-
"ernie-3.5-8k": {
|
|
1263
|
-
"description": "Baidu tarafından geliştirilen amiral gemisi büyük ölçekli dil modeli, geniş bir Çince ve İngilizce veri kümesini kapsar, güçlü genel yeteneklere sahiptir ve çoğu diyalog soru-cevap, yaratım, eklenti uygulama senaryolarını karşılayabilir; Baidu arama eklentisi ile otomatik entegrasyon desteği sunarak soru-cevap bilgilerini güncel tutar."
|
|
1264
|
-
},
|
|
1265
|
-
"ernie-3.5-8k-preview": {
|
|
1266
|
-
"description": "Baidu tarafından geliştirilen amiral gemisi büyük ölçekli dil modeli, geniş bir Çince ve İngilizce veri kümesini kapsar, güçlü genel yeteneklere sahiptir ve çoğu diyalog soru-cevap, yaratım, eklenti uygulama senaryolarını karşılayabilir; Baidu arama eklentisi ile otomatik entegrasyon desteği sunarak soru-cevap bilgilerini güncel tutar."
|
|
1267
|
-
},
|
|
1268
|
-
"ernie-4.0-8k-latest": {
|
|
1269
|
-
"description": "Baidu tarafından geliştirilen amiral gemisi ultra büyük ölçekli dil modeli, ERNIE 3.5'e göre model yeteneklerinde kapsamlı bir yükseltme gerçekleştirmiştir, çeşitli alanlardaki karmaşık görev senaryolarında geniş bir şekilde uygulanabilir; Baidu arama eklentisi ile otomatik entegrasyon desteği sunarak soru-cevap bilgilerini güncel tutar."
|
|
1270
|
-
},
|
|
1271
|
-
"ernie-4.0-8k-preview": {
|
|
1272
|
-
"description": "Baidu tarafından geliştirilen amiral gemisi ultra büyük ölçekli dil modeli, ERNIE 3.5'e göre model yeteneklerinde kapsamlı bir yükseltme gerçekleştirmiştir, çeşitli alanlardaki karmaşık görev senaryolarında geniş bir şekilde uygulanabilir; Baidu arama eklentisi ile otomatik entegrasyon desteği sunarak soru-cevap bilgilerini güncel tutar."
|
|
1273
|
-
},
|
|
1274
|
-
"ernie-4.0-turbo-128k": {
|
|
1275
|
-
"description": "Baidu tarafından geliştirilen amiral gemisi ultra büyük ölçekli dil modeli, genel performansı mükemmel, çeşitli alanlardaki karmaşık görev senaryolarında geniş bir şekilde uygulanabilir; Baidu arama eklentisi ile otomatik entegrasyon desteği sunarak soru-cevap bilgilerini güncel tutar. ERNIE 4.0'a göre performans açısından daha üstündür."
|
|
1276
|
-
},
|
|
1277
|
-
"ernie-4.0-turbo-8k-latest": {
|
|
1278
|
-
"description": "Baidu tarafından geliştirilen amiral gemisi ultra büyük ölçekli dil modeli, genel performansı mükemmel, çeşitli alanlardaki karmaşık görev senaryolarında geniş bir şekilde uygulanabilir; Baidu arama eklentisi ile otomatik entegrasyon desteği sunarak soru-cevap bilgilerini güncel tutar. ERNIE 4.0'a göre performans açısından daha üstündür."
|
|
1279
|
-
},
|
|
1280
|
-
"ernie-4.0-turbo-8k-preview": {
|
|
1281
|
-
"description": "Baidu tarafından geliştirilen amiral gemisi ultra büyük ölçekli dil modeli, genel performansı mükemmel, çeşitli alanlardaki karmaşık görev senaryolarında geniş bir şekilde uygulanabilir; Baidu arama eklentisi ile otomatik entegrasyon desteği sunarak soru-cevap bilgilerini güncel tutar. ERNIE 4.0'a göre performans açısından daha üstündür."
|
|
1274
|
+
"ernie-4.5-0.3b": {
|
|
1275
|
+
"description": "ERNIE 4.5 0.3B, açık kaynaklı hafif model, yerel ve özelleştirilmiş dağıtım çözümleri için uygundur."
|
|
1282
1276
|
},
|
|
1283
1277
|
"ernie-4.5-21b-a3b": {
|
|
1284
|
-
"description": "ERNIE 4.5 21B A3B,
|
|
1278
|
+
"description": "ERNIE 4.5 21B A3B, büyük parametreli açık kaynak modeli, anlama ve üretim görevlerinde üstün performans sunar."
|
|
1285
1279
|
},
|
|
1286
1280
|
"ernie-4.5-300b-a47b": {
|
|
1287
1281
|
"description": "ERNIE 4.5 300B A47B, Baidu Wenxin tarafından geliştirilen son derece büyük ölçekli karma uzman modelidir ve üstün akıl yürütme yeteneklerine sahiptir."
|
|
1288
1282
|
},
|
|
1289
1283
|
"ernie-4.5-8k-preview": {
|
|
1290
|
-
"description": "
|
|
1284
|
+
"description": "ERNIE 4.5 8K Preview, 8K bağlam önizleme modeli, Wenxin 4.5 yeteneklerini deneyimlemek ve test etmek için kullanılır."
|
|
1291
1285
|
},
|
|
1292
1286
|
"ernie-4.5-turbo-128k": {
|
|
1293
|
-
"description": "
|
|
1287
|
+
"description": "ERNIE 4.5 Turbo 128K, yüksek performanslı genel model, arama destekli ve araç çağrılı görevleri destekler, soru-cevap, kodlama ve akıllı ajanlar gibi çeşitli iş senaryolarına uygundur."
|
|
1288
|
+
},
|
|
1289
|
+
"ernie-4.5-turbo-128k-preview": {
|
|
1290
|
+
"description": "ERNIE 4.5 Turbo 128K Preview, resmi sürümle aynı yetenek deneyimini sunar, entegrasyon ve kademeli testler için uygundur."
|
|
1294
1291
|
},
|
|
1295
1292
|
"ernie-4.5-turbo-32k": {
|
|
1296
|
-
"description": "
|
|
1293
|
+
"description": "ERNIE 4.5 Turbo 32K, orta-uzun bağlam sürümü, soru-cevap, bilgi tabanı arama ve çok turlu diyalog gibi senaryolar için uygundur."
|
|
1294
|
+
},
|
|
1295
|
+
"ernie-4.5-turbo-latest": {
|
|
1296
|
+
"description": "ERNIE 4.5 Turbo En Son Sürüm, kapsamlı performans optimizasyonu ile üretim ortamında genel amaçlı ana model olarak uygundur."
|
|
1297
|
+
},
|
|
1298
|
+
"ernie-4.5-turbo-vl": {
|
|
1299
|
+
"description": "ERNIE 4.5 Turbo VL, olgun çok modlu model, üretim ortamında görsel-metin anlama ve tanıma görevleri için uygundur."
|
|
1297
1300
|
},
|
|
1298
1301
|
"ernie-4.5-turbo-vl-32k": {
|
|
1299
|
-
"description": "
|
|
1302
|
+
"description": "ERNIE 4.5 Turbo VL 32K, orta-uzun metin çok modlu sürüm, uzun belgeler ve görsellerin birlikte anlaşılması için uygundur."
|
|
1303
|
+
},
|
|
1304
|
+
"ernie-4.5-turbo-vl-32k-preview": {
|
|
1305
|
+
"description": "ERNIE 4.5 Turbo VL 32K Preview, çok modlu 32K önizleme sürümü, uzun bağlamlı görsel yeteneklerin değerlendirilmesini kolaylaştırır."
|
|
1306
|
+
},
|
|
1307
|
+
"ernie-4.5-turbo-vl-latest": {
|
|
1308
|
+
"description": "ERNIE 4.5 Turbo VL En Son Sürüm, en yeni çok modlu sürüm, daha iyi görsel-metin anlama ve çıkarım performansı sunar."
|
|
1309
|
+
},
|
|
1310
|
+
"ernie-4.5-turbo-vl-preview": {
|
|
1311
|
+
"description": "ERNIE 4.5 Turbo VL Preview, çok modlu önizleme modeli, görsel-metin anlama ve üretimi destekler, görsel soru-cevap ve içerik anlama deneyimi için uygundur."
|
|
1312
|
+
},
|
|
1313
|
+
"ernie-4.5-vl-28b-a3b": {
|
|
1314
|
+
"description": "ERNIE 4.5 VL 28B A3B, çok modlu açık kaynak modeli, görsel-metin anlama ve çıkarım görevlerini destekler."
|
|
1315
|
+
},
|
|
1316
|
+
"ernie-5.0-thinking-preview": {
|
|
1317
|
+
"description": "Wenxin 5.0 Thinking Önizleme Sürümü, yerel tam modlu amiral gemisi modeli, metin, görsel, ses ve video için birleşik modelleme desteği sunar, karmaşık soru-cevap, yaratım ve akıllı ajan senaryoları için uygundur."
|
|
1300
1318
|
},
|
|
1301
1319
|
"ernie-char-8k": {
|
|
1302
|
-
"description": "
|
|
1320
|
+
"description": "ERNIE Character 8K, karakter kişiliği diyalog modeli, IP karakter oluşturma ve uzun vadeli sohbet için uygundur."
|
|
1303
1321
|
},
|
|
1304
1322
|
"ernie-char-fiction-8k": {
|
|
1305
|
-
"description": "
|
|
1323
|
+
"description": "ERNIE Character Fiction 8K, roman ve hikaye yaratımı için kişilik modeli, uzun metinli hikaye üretimi için uygundur."
|
|
1324
|
+
},
|
|
1325
|
+
"ernie-char-fiction-8k-preview": {
|
|
1326
|
+
"description": "ERNIE Character Fiction 8K Preview, karakter ve hikaye yaratımı modeli önizleme sürümü, işlev deneyimi ve test için kullanılır."
|
|
1306
1327
|
},
|
|
1307
1328
|
"ernie-irag-edit": {
|
|
1308
|
-
"description": "
|
|
1329
|
+
"description": "ERNIE iRAG Edit, görsel silme, yeniden çizim ve varyant üretimini destekleyen görsel düzenleme modeli."
|
|
1309
1330
|
},
|
|
1310
1331
|
"ernie-lite-8k": {
|
|
1311
|
-
"description": "ERNIE Lite,
|
|
1332
|
+
"description": "ERNIE Lite 8K, hafif genel model, maliyet duyarlı günlük soru-cevap ve içerik üretimi senaryoları için uygundur."
|
|
1312
1333
|
},
|
|
1313
1334
|
"ernie-lite-pro-128k": {
|
|
1314
|
-
"description": "
|
|
1335
|
+
"description": "ERNIE Lite Pro 128K, hafif ve yüksek performanslı model, gecikme ve maliyet hassas iş senaryoları için uygundur."
|
|
1315
1336
|
},
|
|
1316
1337
|
"ernie-novel-8k": {
|
|
1317
|
-
"description": "
|
|
1338
|
+
"description": "ERNIE Novel 8K, uzun roman ve IP hikaye yaratımı modeli, çok karakterli ve çok katmanlı anlatımda uzmandır."
|
|
1318
1339
|
},
|
|
1319
1340
|
"ernie-speed-128k": {
|
|
1320
|
-
"description": "
|
|
1341
|
+
"description": "ERNIE Speed 128K, giriş-çıkış ücreti olmayan büyük model, uzun metin anlama ve büyük ölçekli deneme senaryoları için uygundur."
|
|
1342
|
+
},
|
|
1343
|
+
"ernie-speed-8k": {
|
|
1344
|
+
"description": "ERNIE Speed 8K, ücretsiz ve hızlı model, günlük diyalog ve hafif metin görevleri için uygundur."
|
|
1321
1345
|
},
|
|
1322
1346
|
"ernie-speed-pro-128k": {
|
|
1323
|
-
"description": "
|
|
1347
|
+
"description": "ERNIE Speed Pro 128K, yüksek eşzamanlılık ve yüksek maliyet-performans oranına sahip model, büyük ölçekli çevrimiçi hizmetler ve kurumsal uygulamalar için uygundur."
|
|
1324
1348
|
},
|
|
1325
1349
|
"ernie-tiny-8k": {
|
|
1326
|
-
"description": "ERNIE Tiny,
|
|
1327
|
-
},
|
|
1328
|
-
"ernie-x1-32k": {
|
|
1329
|
-
"description": "Daha güçlü anlama, planlama, düşünme ve evrim yeteneklerine sahiptir. Daha kapsamlı bir derin düşünme modeli olarak, Wenxin X1, doğru, yaratıcı ve edebi bir şekilde, Çince bilgi sorgulama, edebi yaratım, metin yazımı, günlük diyalog, mantıksal akıl yürütme, karmaşık hesaplamalar ve araç çağırma gibi alanlarda özellikle başarılıdır."
|
|
1330
|
-
},
|
|
1331
|
-
"ernie-x1-32k-preview": {
|
|
1332
|
-
"description": "Wenxin Büyük Model X1, daha güçlü anlama, planlama, düşünme ve evrim yeteneklerine sahiptir. Daha kapsamlı bir derin düşünme modeli olarak, Wenxin X1, doğru, yaratıcı ve edebi bir üslup sunarak, Çince bilgi sorgulama, edebi yaratım, metin yazımı, günlük diyalog, mantıksal akıl yürütme, karmaşık hesaplamalar ve araç çağırma gibi alanlarda özellikle başarılıdır."
|
|
1350
|
+
"description": "ERNIE Tiny 8K, son derece hafif model, basit soru-cevap, sınıflandırma gibi düşük maliyetli çıkarım senaryoları için uygundur."
|
|
1333
1351
|
},
|
|
1334
1352
|
"ernie-x1-turbo-32k": {
|
|
1335
|
-
"description": "ERNIE
|
|
1353
|
+
"description": "ERNIE X1 Turbo 32K, yüksek hızlı düşünme modeli, 32K uzun bağlam desteği ile karmaşık çıkarım ve çok turlu diyaloglar için uygundur."
|
|
1354
|
+
},
|
|
1355
|
+
"ernie-x1.1-preview": {
|
|
1356
|
+
"description": "ERNIE X1.1 Preview, ERNIE X1.1 düşünme modeli önizleme sürümü, yetenek doğrulama ve test için uygundur."
|
|
1336
1357
|
},
|
|
1337
1358
|
"fal-ai/bytedance/seedream/v4": {
|
|
1338
1359
|
"description": "Seedream 4.0 resim oluşturma modeli, ByteDance Seed ekibi tarafından geliştirilmiştir; metin ve resim girişini destekler, yüksek kontrol ve kaliteli resim oluşturma deneyimi sunar. Metin istemlerine dayalı olarak resim oluşturur."
|
|
@@ -1392,7 +1413,7 @@
|
|
|
1392
1413
|
"description": "FLUX.1 [schnell], şu anda açık kaynaklı en gelişmiş az adımlı modeldir; benzer rakiplerini aşmakla kalmaz, Midjourney v6.0 ve DALL·E 3 (HD) gibi güçlü damıtılmamış modellerden bile üstündür. Model, ön eğitim aşamasındaki tüm çıktı çeşitliliğini koruyacak şekilde özel olarak ince ayar yapılmıştır. Piyasadaki en gelişmiş modellere kıyasla görsel kalite, talimat uyumu, boyut/oran değişiklikleri, yazı tipi işleme ve çıktı çeşitliliği gibi alanlarda belirgin iyileştirmeler sunar ve kullanıcılara daha zengin ve çeşitli yaratıcı görüntü üretim deneyimi sağlar."
|
|
1393
1414
|
},
|
|
1394
1415
|
"flux.1-schnell": {
|
|
1395
|
-
"description": "
|
|
1416
|
+
"description": "FLUX.1-schnell, yüksek performanslı görsel üretim modeli, çok çeşitli tarzlarda hızlı görsel üretimi destekler."
|
|
1396
1417
|
},
|
|
1397
1418
|
"gemini-1.0-pro-001": {
|
|
1398
1419
|
"description": "Gemini 1.0 Pro 001 (Tuning), kararlı ve ayarlanabilir bir performans sunar, karmaşık görev çözümleri için ideal bir seçimdir."
|
|
@@ -1541,6 +1562,9 @@
|
|
|
1541
1562
|
"glm-4-0520": {
|
|
1542
1563
|
"description": "GLM-4-0520, son derece karmaşık ve çeşitli görevler için tasarlanmış en yeni model versiyonudur, olağanüstü performans sergiler."
|
|
1543
1564
|
},
|
|
1565
|
+
"glm-4-32b-0414": {
|
|
1566
|
+
"description": "GLM-4 32B 0414, GLM serisi genel büyük model sürümü, çok görevli metin üretimi ve anlama desteği sunar."
|
|
1567
|
+
},
|
|
1544
1568
|
"glm-4-9b-chat": {
|
|
1545
1569
|
"description": "GLM-4-9B-Chat, anlamsal anlama, matematik, akıl yürütme, kodlama ve bilgi alanlarında yüksek performans sergiler. Web tarama, kod yürütme, özel araç çağırma ve uzun metin akıl yürütme gibi özellikleri destekler. Japonca, Korece ve Almanca dahil olmak üzere 26 dili destekler."
|
|
1546
1570
|
},
|
|
@@ -1829,6 +1853,18 @@
|
|
|
1829
1853
|
"gpt-5-pro": {
|
|
1830
1854
|
"description": "GPT-5 pro, daha derin düşünme için daha fazla hesaplama gücü kullanır ve sürekli olarak daha iyi yanıtlar sunar."
|
|
1831
1855
|
},
|
|
1856
|
+
"gpt-5.1": {
|
|
1857
|
+
"description": "GPT-5.1 — Kodlama ve ajan görevleri için optimize edilmiş amiral gemisi modelidir; yapılandırılabilir akıl yürütme gücü ve daha uzun bağlam desteği sunar."
|
|
1858
|
+
},
|
|
1859
|
+
"gpt-5.1-chat-latest": {
|
|
1860
|
+
"description": "GPT-5.1 Chat: Sohbet senaryoları için uygun, ChatGPT’ye özel GPT-5.1 varyantı."
|
|
1861
|
+
},
|
|
1862
|
+
"gpt-5.1-codex": {
|
|
1863
|
+
"description": "GPT-5.1 Codex: Ajan tabanlı kodlama görevleri için optimize edilmiş GPT-5.1 sürümüdür; daha karmaşık kod/ajan iş akışları için Responses API ile kullanılabilir."
|
|
1864
|
+
},
|
|
1865
|
+
"gpt-5.1-codex-mini": {
|
|
1866
|
+
"description": "GPT-5.1 Codex mini: Daha küçük boyutlu ve daha düşük maliyetli Codex varyantı; ajan tabanlı kodlama görevleri için optimize edilmiştir."
|
|
1867
|
+
},
|
|
1832
1868
|
"gpt-audio": {
|
|
1833
1869
|
"description": "GPT Audio, ses giriş ve çıkışına yönelik genel sohbet modelidir ve Chat Completions API’de ses I/O kullanımını destekler."
|
|
1834
1870
|
},
|
|
@@ -2004,13 +2040,13 @@
|
|
|
2004
2040
|
"description": "Imagen 4. nesil metinden görüntüye model serisi"
|
|
2005
2041
|
},
|
|
2006
2042
|
"imagen-4.0-generate-preview-06-06": {
|
|
2007
|
-
"description": "Imagen
|
|
2043
|
+
"description": "Imagen dördüncü nesil metinden görsele model serisi"
|
|
2008
2044
|
},
|
|
2009
2045
|
"imagen-4.0-ultra-generate-001": {
|
|
2010
2046
|
"description": "Imagen 4. nesil metinden-görüntüye model serisi, Ultra sürümü"
|
|
2011
2047
|
},
|
|
2012
2048
|
"imagen-4.0-ultra-generate-preview-06-06": {
|
|
2013
|
-
"description": "Imagen
|
|
2049
|
+
"description": "Imagen dördüncü nesil metinden görsele model serisinin Ultra versiyonu"
|
|
2014
2050
|
},
|
|
2015
2051
|
"inception/mercury-coder-small": {
|
|
2016
2052
|
"description": "Mercury Coder Small, kod üretimi, hata ayıklama ve yeniden yapılandırma görevleri için ideal olup, minimum gecikme sunar."
|
|
@@ -2039,14 +2075,26 @@
|
|
|
2039
2075
|
"internlm3-latest": {
|
|
2040
2076
|
"description": "En son model serimiz, olağanüstü çıkarım performansına sahiptir ve aynı ölçekli açık kaynak modeller arasında liderdir. Varsayılan olarak en son yayımlanan InternLM3 serisi modellerine işaret eder."
|
|
2041
2077
|
},
|
|
2078
|
+
"internvl2.5-38b-mpo": {
|
|
2079
|
+
"description": "InternVL2.5 38B MPO, çok modlu ön eğitimli model, karmaşık görsel-metin çıkarım görevlerini destekler."
|
|
2080
|
+
},
|
|
2042
2081
|
"internvl2.5-latest": {
|
|
2043
2082
|
"description": "Hala bakımını yaptığımız InternVL2.5 sürümü, mükemmel ve istikrarlı bir performansa sahiptir. Varsayılan olarak en son yayımladığımız InternVL2.5 serisi modele işaret eder, şu anda internvl2.5-78b'ye işaret ediyor."
|
|
2044
2083
|
},
|
|
2084
|
+
"internvl3-14b": {
|
|
2085
|
+
"description": "InternVL3 14B, orta ölçekli çok modlu model, performans ve maliyet arasında denge sağlar."
|
|
2086
|
+
},
|
|
2087
|
+
"internvl3-1b": {
|
|
2088
|
+
"description": "InternVL3 1B, hafif çok modlu model, kaynak kısıtlı ortamlar için uygundur."
|
|
2089
|
+
},
|
|
2090
|
+
"internvl3-38b": {
|
|
2091
|
+
"description": "InternVL3 38B, büyük ölçekli çok modlu açık kaynak modeli, yüksek hassasiyetli görsel-metin anlama görevleri için uygundur."
|
|
2092
|
+
},
|
|
2045
2093
|
"internvl3-latest": {
|
|
2046
2094
|
"description": "En son yayımladığımız çok modlu büyük model, daha güçlü metin-görüntü anlama yeteneği ve uzun süreli görüntü anlama yeteneğine sahiptir; performansı en iyi kapalı kaynak modellerle karşılaştırılabilir. Varsayılan olarak en son yayımladığımız InternVL serisi modele işaret eder, şu anda internvl3-78b'ye işaret ediyor."
|
|
2047
2095
|
},
|
|
2048
2096
|
"irag-1.0": {
|
|
2049
|
-
"description": "
|
|
2097
|
+
"description": "ERNIE iRAG, görsel arama destekli üretim modeli, görselle arama, görsel-metin arama ve içerik üretimini destekler."
|
|
2050
2098
|
},
|
|
2051
2099
|
"jamba-large": {
|
|
2052
2100
|
"description": "En güçlü ve en gelişmiş modelimiz, kurumsal düzeyde karmaşık görevleri işlemek için tasarlanmıştır ve olağanüstü performans sunar."
|
|
@@ -2067,7 +2115,7 @@
|
|
|
2067
2115
|
"description": "kimi-k2-0905-preview modelinin bağlam uzunluğu 256k’dır, daha güçlü Agentic Kodlama yeteneklerine, ön uç kodlarının estetik ve işlevselliğinde belirgin gelişmelere ve daha iyi bağlam anlama yeteneğine sahiptir."
|
|
2068
2116
|
},
|
|
2069
2117
|
"kimi-k2-instruct": {
|
|
2070
|
-
"description": "Kimi K2 Instruct,
|
|
2118
|
+
"description": "Kimi K2 Instruct, Kimi'nin resmi çıkarım modeli, uzun bağlam, kodlama, soru-cevap gibi çoklu senaryoları destekler."
|
|
2071
2119
|
},
|
|
2072
2120
|
"kimi-k2-turbo-preview": {
|
|
2073
2121
|
"description": "kimi-k2, son derece güçlü kod yazma ve Agent yeteneklerine sahip MoE mimarisine dayanan bir temel modeldir; toplam parametre sayısı 1T, aktif (etkin) parametre sayısı 32B. Genel bilgi çıkarımı, programlama, matematik ve Agent gibi ana kategorilerde yapılan karşılaştırmalı performans testlerinde K2 modelinin performansı diğer önde gelen açık kaynak modellerinin üzerindedir."
|
|
@@ -2405,6 +2453,9 @@
|
|
|
2405
2453
|
"minicpm-v": {
|
|
2406
2454
|
"description": "MiniCPM-V, OpenBMB tarafından sunulan yeni nesil çok modlu büyük bir modeldir; olağanüstü OCR tanıma ve çok modlu anlama yeteneklerine sahiptir ve geniş bir uygulama yelpazesini destekler."
|
|
2407
2455
|
},
|
|
2456
|
+
"minimax-m2": {
|
|
2457
|
+
"description": "MiniMax M2, kodlama ve yardımcı iş akışları için özel olarak geliştirilmiş, verimli bir büyük dil modelidir."
|
|
2458
|
+
},
|
|
2408
2459
|
"ministral-3b-latest": {
|
|
2409
2460
|
"description": "Ministral 3B, Mistral'ın dünya çapında en üst düzey kenar modelidir."
|
|
2410
2461
|
},
|
|
@@ -2735,6 +2786,54 @@
|
|
|
2735
2786
|
"pro-deepseek-v3": {
|
|
2736
2787
|
"description": "Kurumsal özel hizmetler için tasarlanmış modeldir ve eşzamanlı hizmetleri içerir."
|
|
2737
2788
|
},
|
|
2789
|
+
"qianfan-70b": {
|
|
2790
|
+
"description": "Qianfan 70B, yüksek parametreli Çince model, yüksek kaliteli içerik üretimi ve karmaşık akıl yürütme görevleri için uygundur."
|
|
2791
|
+
},
|
|
2792
|
+
"qianfan-8b": {
|
|
2793
|
+
"description": "Qianfan 8B, orta ölçekli genel amaçlı model, maliyet ve performans dengesi gerektiren metin üretimi ve soru-cevap senaryoları için uygundur."
|
|
2794
|
+
},
|
|
2795
|
+
"qianfan-agent-intent-32k": {
|
|
2796
|
+
"description": "Qianfan Agent Intent 32K, niyet tanıma ve akıllı ajan düzenlemesi için tasarlanmış model, uzun bağlam senaryolarını destekler."
|
|
2797
|
+
},
|
|
2798
|
+
"qianfan-agent-lite-8k": {
|
|
2799
|
+
"description": "Qianfan Agent Lite 8K, hafif akıllı ajan modeli, düşük maliyetli çok turlu diyaloglar ve iş akışı düzenlemeleri için uygundur."
|
|
2800
|
+
},
|
|
2801
|
+
"qianfan-agent-speed-32k": {
|
|
2802
|
+
"description": "Qianfan Agent Speed 32K, yüksek akış kontrolüne sahip akıllı ajan modeli, büyük ölçekli ve çok görevli ajan uygulamaları için uygundur."
|
|
2803
|
+
},
|
|
2804
|
+
"qianfan-agent-speed-8k": {
|
|
2805
|
+
"description": "Qianfan Agent Speed 8K, orta ve kısa diyaloglar ile hızlı yanıt gerektiren yüksek eşzamanlı akıllı ajan modeli."
|
|
2806
|
+
},
|
|
2807
|
+
"qianfan-check-vl": {
|
|
2808
|
+
"description": "Qianfan Check VL, çok modlu içerik denetimi ve tespit modeli, görsel ve metin uyumluluğu ile tanıma görevlerini destekler."
|
|
2809
|
+
},
|
|
2810
|
+
"qianfan-composition": {
|
|
2811
|
+
"description": "Qianfan Composition, çok modlu içerik üretim modeli, görsel ve metinlerin birleşik anlaşılması ve üretimini destekler."
|
|
2812
|
+
},
|
|
2813
|
+
"qianfan-engcard-vl": {
|
|
2814
|
+
"description": "Qianfan EngCard VL, İngilizce odaklı çok modlu tanıma modeli."
|
|
2815
|
+
},
|
|
2816
|
+
"qianfan-lightning-128b-a19b": {
|
|
2817
|
+
"description": "Qianfan Lightning 128B A19B, yüksek performanslı Çince genel model, karmaşık soru-cevap ve büyük ölçekli akıl yürütme görevleri için uygundur."
|
|
2818
|
+
},
|
|
2819
|
+
"qianfan-llama-vl-8b": {
|
|
2820
|
+
"description": "Qianfan Llama VL 8B, Llama tabanlı çok modlu model, genel görsel-metin anlama görevlerine yöneliktir."
|
|
2821
|
+
},
|
|
2822
|
+
"qianfan-multipicocr": {
|
|
2823
|
+
"description": "Qianfan MultiPicOCR, çoklu görsel OCR modeli, birden fazla görseldeki metinleri tespit ve tanıma yeteneğine sahiptir."
|
|
2824
|
+
},
|
|
2825
|
+
"qianfan-qi-vl": {
|
|
2826
|
+
"description": "Qianfan QI VL, çok modlu soru-cevap modeli, karmaşık görsel-metin senaryolarında hassas arama ve cevaplama desteği sunar."
|
|
2827
|
+
},
|
|
2828
|
+
"qianfan-singlepicocr": {
|
|
2829
|
+
"description": "Qianfan SinglePicOCR, tek görsel OCR modeli, yüksek doğrulukta karakter tanıma sağlar."
|
|
2830
|
+
},
|
|
2831
|
+
"qianfan-vl-70b": {
|
|
2832
|
+
"description": "Qianfan VL 70B, yüksek parametreli görsel-dil modeli, karmaşık görsel-metin anlama senaryoları için uygundur."
|
|
2833
|
+
},
|
|
2834
|
+
"qianfan-vl-8b": {
|
|
2835
|
+
"description": "Qianfan VL 8B, hafif görsel-dil modeli, günlük görsel-metin soru-cevap ve analiz için uygundur."
|
|
2836
|
+
},
|
|
2738
2837
|
"qvq-72b-preview": {
|
|
2739
2838
|
"description": "QVQ modeli, Qwen ekibi tarafından geliştirilen deneysel bir araştırma modelidir; görsel akıl yürütme yeteneğini artırmaya odaklanır, özellikle matematik akıl yürütme alanında."
|
|
2740
2839
|
},
|
|
@@ -2886,7 +2985,7 @@
|
|
|
2886
2985
|
"description": "Tongyi Qianwen 2.5, halka açık 72B ölçeğinde bir modeldir."
|
|
2887
2986
|
},
|
|
2888
2987
|
"qwen2.5-7b-instruct": {
|
|
2889
|
-
"description": "
|
|
2988
|
+
"description": "Qwen2.5 7B Instruct, olgun açık kaynaklı talimat modeli, çoklu senaryolarda diyalog ve üretim için uygundur."
|
|
2890
2989
|
},
|
|
2891
2990
|
"qwen2.5-coder-1.5b-instruct": {
|
|
2892
2991
|
"description": "Tongyi Qianwen kodlama modelinin açık kaynak sürümüdür."
|
|
@@ -2919,13 +3018,13 @@
|
|
|
2919
3018
|
"description": "Qwen-Omni serisi modeller, video, ses, resim ve metin gibi çeşitli modlarda veri girişi destekler ve ses ile metin çıktısı verir."
|
|
2920
3019
|
},
|
|
2921
3020
|
"qwen2.5-vl-32b-instruct": {
|
|
2922
|
-
"description": "Qwen2.5
|
|
3021
|
+
"description": "Qwen2.5 VL 32B Instruct, çok modlu açık kaynak modeli, özelleştirilmiş kurulum ve çoklu senaryo uygulamaları için uygundur."
|
|
2923
3022
|
},
|
|
2924
3023
|
"qwen2.5-vl-72b-instruct": {
|
|
2925
3024
|
"description": "Talimat takibi, matematik, problem çözme, kodlama genelinde iyileştirme, her türlü nesneyi tanıma yeteneği artışı, çeşitli formatları doğrudan hassas bir şekilde görsel unsurları konumlandırma desteği, uzun video dosyalarını (en fazla 10 dakika) anlama ve saniye düzeyinde olay anlarını konumlandırma yeteneği, zaman sıralamasını ve hızını anlama, analiz ve konumlandırma yeteneğine dayanarak OS veya Mobil ajanları kontrol etme desteği, anahtar bilgileri çıkarma yeteneği ve Json formatında çıktı verme yeteneği güçlüdür, bu sürüm 72B versiyonudur, bu serinin en güçlü versiyonudur."
|
|
2926
3025
|
},
|
|
2927
3026
|
"qwen2.5-vl-7b-instruct": {
|
|
2928
|
-
"description": "
|
|
3027
|
+
"description": "Qwen2.5 VL 7B Instruct, hafif çok modlu model, kurulum maliyeti ve tanıma yeteneği arasında denge sağlar."
|
|
2929
3028
|
},
|
|
2930
3029
|
"qwen2.5-vl-instruct": {
|
|
2931
3030
|
"description": "Qwen2.5-VL, Qwen model ailesinin en yeni görsel-dil modeli sürümüdür."
|
|
@@ -2952,46 +3051,46 @@
|
|
|
2952
3051
|
"description": "Qwen3, Alibaba'nın yeni nesil büyük ölçekli dil modelidir ve çeşitli uygulama ihtiyaçlarını mükemmel bir performansla destekler."
|
|
2953
3052
|
},
|
|
2954
3053
|
"qwen3-0.6b": {
|
|
2955
|
-
"description": "Qwen3,
|
|
3054
|
+
"description": "Qwen3 0.6B, giriş seviyesi model, basit akıl yürütme ve kaynakların son derece sınırlı olduğu ortamlar için uygundur."
|
|
2956
3055
|
},
|
|
2957
3056
|
"qwen3-1.7b": {
|
|
2958
|
-
"description": "Qwen3,
|
|
3057
|
+
"description": "Qwen3 1.7B, ultra hafif model, uç ve yerel cihazlara dağıtım için uygundur."
|
|
2959
3058
|
},
|
|
2960
3059
|
"qwen3-14b": {
|
|
2961
|
-
"description": "Qwen3,
|
|
3060
|
+
"description": "Qwen3 14B, orta ölçekli model, çok dilli soru-cevap ve metin üretimi için uygundur."
|
|
2962
3061
|
},
|
|
2963
3062
|
"qwen3-235b-a22b": {
|
|
2964
|
-
"description": "Qwen3
|
|
3063
|
+
"description": "Qwen3 235B A22B, genel amaçlı büyük model, çeşitli karmaşık görevler için uygundur."
|
|
2965
3064
|
},
|
|
2966
3065
|
"qwen3-235b-a22b-instruct-2507": {
|
|
2967
|
-
"description": "Qwen3
|
|
3066
|
+
"description": "Qwen3 235B A22B Instruct 2507, genel amaçlı amiral gemisi talimat modeli, çoklu üretim ve akıl yürütme görevleri için uygundur."
|
|
2968
3067
|
},
|
|
2969
3068
|
"qwen3-235b-a22b-thinking-2507": {
|
|
2970
|
-
"description": "Qwen3
|
|
3069
|
+
"description": "Qwen3 235B A22B Thinking 2507, ultra büyük ölçekli düşünme modeli, yüksek zorlukta akıl yürütme için uygundur."
|
|
2971
3070
|
},
|
|
2972
3071
|
"qwen3-30b-a3b": {
|
|
2973
|
-
"description": "Qwen3
|
|
3072
|
+
"description": "Qwen3 30B A3B, orta-büyük ölçekli genel model, maliyet ve performans arasında denge sağlar."
|
|
2974
3073
|
},
|
|
2975
3074
|
"qwen3-30b-a3b-instruct-2507": {
|
|
2976
|
-
"description": "
|
|
3075
|
+
"description": "Qwen3 30B A3B Instruct 2507, orta-büyük ölçekli talimat modeli, yüksek kaliteli üretim ve soru-cevap için uygundur."
|
|
2977
3076
|
},
|
|
2978
3077
|
"qwen3-30b-a3b-thinking-2507": {
|
|
2979
|
-
"description": "Qwen3
|
|
3078
|
+
"description": "Qwen3 30B A3B Thinking 2507, orta-büyük ölçekli düşünme modeli, doğruluk ve maliyet arasında denge sağlar."
|
|
2980
3079
|
},
|
|
2981
3080
|
"qwen3-32b": {
|
|
2982
|
-
"description": "Qwen3
|
|
3081
|
+
"description": "Qwen3 32B, daha güçlü anlama yeteneği gerektiren genel görev senaryoları için uygundur."
|
|
2983
3082
|
},
|
|
2984
3083
|
"qwen3-4b": {
|
|
2985
|
-
"description": "Qwen3,
|
|
3084
|
+
"description": "Qwen3 4B, orta-küçük ölçekli uygulamalar ve yerel akıl yürütme senaryoları için uygundur."
|
|
2986
3085
|
},
|
|
2987
3086
|
"qwen3-8b": {
|
|
2988
|
-
"description": "Qwen3,
|
|
3087
|
+
"description": "Qwen3 8B, hafif model, esnek dağıtım imkanı sunar ve yüksek eşzamanlı iş yükleri için uygundur."
|
|
2989
3088
|
},
|
|
2990
3089
|
"qwen3-coder-30b-a3b-instruct": {
|
|
2991
3090
|
"description": "Qwen3 tabanlı kod üretim modeli olan en yeni açık kaynaklı Tongyi Qianwen kod modeli. Güçlü Kodlama Ajanı yeteneklerine sahiptir, araç kullanımı ve çevre ile etkileşimde uzmandır. Kendi kendine programlama yapabilir, üstün kodlama yeteneklerinin yanı sıra genel amaçlı beceriler de sunar."
|
|
2992
3091
|
},
|
|
2993
3092
|
"qwen3-coder-480b-a35b-instruct": {
|
|
2994
|
-
"description": "
|
|
3093
|
+
"description": "Qwen3 Coder 480B A35B Instruct, amiral gemisi kod modeli, çoklu programlama dili ve karmaşık kod anlama desteği sunar."
|
|
2995
3094
|
},
|
|
2996
3095
|
"qwen3-coder-flash": {
|
|
2997
3096
|
"description": "Tongyi Qianwen kod modeli. En yeni Qwen3-Coder serisi modeller, Qwen3 tabanlı kod üretim modelleridir, güçlü Kodlama Ajanı yeteneklerine sahiptir, araç çağrıları ve ortam etkileşiminde uzmandır, bağımsız programlama yapabilir, üstün kodlama yeteneklerinin yanı sıra genel yeteneklere de sahiptir."
|
|
@@ -3005,32 +3104,41 @@
|
|
|
3005
3104
|
"qwen3-max": {
|
|
3006
3105
|
"description": "Tongyi Qianwen 3 serisi Max modeli, 2.5 serisine kıyasla genel yeteneklerde büyük gelişme göstermiştir; hem Çince hem İngilizce metin anlama, karmaşık talimat takibi, öznel açık görevler, çoklu dil yetenekleri ve araç çağrısı yetenekleri belirgin şekilde artmıştır; model bilgi halüsinasyonları azalmıştır. En yeni qwen3-max modeli, qwen3-max-preview versiyonuna göre akıllı ajan programlama ve araç çağrısı alanlarında özel yükseltmeler içermektedir. Bu resmi sürüm modeli, alanında SOTA seviyesine ulaşmış olup, daha karmaşık ajan ihtiyaçlarına uyarlanmıştır."
|
|
3007
3106
|
},
|
|
3107
|
+
"qwen3-max-preview": {
|
|
3108
|
+
"description": "Tongyi Qianwen serisinin en yetenekli modeli; karmaşık ve çok adımlı görevler için uygundur. Önizleme sürümü düşünme yeteneğini desteklemektedir."
|
|
3109
|
+
},
|
|
3008
3110
|
"qwen3-next-80b-a3b-instruct": {
|
|
3009
3111
|
"description": "Qwen3 tabanlı yeni nesil düşünmeden çalışan açık kaynak modeli, önceki sürüme (Tongyi Qianwen 3-235B-A22B-Instruct-2507) kıyasla Çince metin anlama yeteneği daha iyi, mantıksal çıkarım yeteneği geliştirilmiş ve metin üretimi görevlerinde daha başarılıdır."
|
|
3010
3112
|
},
|
|
3011
3113
|
"qwen3-next-80b-a3b-thinking": {
|
|
3012
|
-
"description": "Qwen3
|
|
3114
|
+
"description": "Qwen3 Next 80B A3B Thinking, karmaşık görevler için amiral gemisi akıl yürütme modeli sürümüdür."
|
|
3013
3115
|
},
|
|
3014
3116
|
"qwen3-omni-flash": {
|
|
3015
3117
|
"description": "Qwen-Omni modeli, metin, görsel, ses ve video gibi çoklu modların birleşik girişlerini kabul edebilir ve metin ya da ses biçiminde yanıtlar üretebilir. Çeşitli insansı ses tonları sunar, çok dilli ve lehçeli ses çıktısını destekler. Metin üretimi, görsel tanıma ve sesli asistan gibi senaryolarda kullanılabilir."
|
|
3016
3118
|
},
|
|
3017
3119
|
"qwen3-vl-235b-a22b-instruct": {
|
|
3018
|
-
"description": "Qwen3 VL 235B A22B
|
|
3120
|
+
"description": "Qwen3 VL 235B A22B Instruct, amiral gemisi çok modlu model, yüksek düzeyde anlama ve içerik üretimi senaryoları için uygundur."
|
|
3019
3121
|
},
|
|
3020
3122
|
"qwen3-vl-235b-a22b-thinking": {
|
|
3021
|
-
"description": "Qwen3 VL 235B A22B
|
|
3123
|
+
"description": "Qwen3 VL 235B A22B Thinking, amiral gemisi düşünme sürümü, karmaşık çok modlu akıl yürütme ve planlama görevleri için uygundur."
|
|
3022
3124
|
},
|
|
3023
3125
|
"qwen3-vl-30b-a3b-instruct": {
|
|
3024
|
-
"description": "Qwen3 VL 30B
|
|
3126
|
+
"description": "Qwen3 VL 30B A3B Instruct, çok modlu büyük model, doğruluk ve akıl yürütme performansını dengeler."
|
|
3025
3127
|
},
|
|
3026
3128
|
"qwen3-vl-30b-a3b-thinking": {
|
|
3027
|
-
"description": "
|
|
3129
|
+
"description": "Qwen3 VL 30B A3B Thinking, karmaşık çok modlu görevler için derin düşünme sürümüdür."
|
|
3130
|
+
},
|
|
3131
|
+
"qwen3-vl-32b-instruct": {
|
|
3132
|
+
"description": "Qwen3 VL 32B Instruct, çok modlu talimatla ince ayarlanmış model, yüksek kaliteli görsel-metin soru-cevap ve içerik üretimi için uygundur."
|
|
3133
|
+
},
|
|
3134
|
+
"qwen3-vl-32b-thinking": {
|
|
3135
|
+
"description": "Qwen3 VL 32B Thinking, çok modlu derin düşünme sürümü, karmaşık akıl yürütme ve uzun zincirli analizleri güçlendirir."
|
|
3028
3136
|
},
|
|
3029
3137
|
"qwen3-vl-8b-instruct": {
|
|
3030
|
-
"description": "Qwen3 VL 8B
|
|
3138
|
+
"description": "Qwen3 VL 8B Instruct, hafif çok modlu model, günlük görsel soru-cevap ve uygulama entegrasyonu için uygundur."
|
|
3031
3139
|
},
|
|
3032
3140
|
"qwen3-vl-8b-thinking": {
|
|
3033
|
-
"description": "Qwen3 VL 8B
|
|
3141
|
+
"description": "Qwen3 VL 8B Thinking, çok modlu düşünce zinciri modeli, görsel bilgilerin ayrıntılı akıl yürütmesi için uygundur."
|
|
3034
3142
|
},
|
|
3035
3143
|
"qwen3-vl-flash": {
|
|
3036
3144
|
"description": "Qwen3 VL Flash: Gecikmeye duyarlı veya yüksek hacimli istek senaryoları için uygun, hafif ve yüksek hızlı akıl yürütme sürümüdür."
|
package/locales/tr-TR/oauth.json
CHANGED
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"permissionsTitle": "Aşağıdaki izinleri talep et:",
|
|
20
20
|
"redirectUri": "İzin verildikten sonra şu adrese yönlendirileceksiniz",
|
|
21
|
+
"redirecting": "Yetkilendirme başarılı, yönlendiriliyor...",
|
|
21
22
|
"scope": {
|
|
22
23
|
"email": "E-posta adresinize erişim",
|
|
23
24
|
"offline_access": "Müşterinin verilerinize erişmesine izin ver",
|
|
@@ -236,6 +236,8 @@
|
|
|
236
236
|
},
|
|
237
237
|
"inspector": {
|
|
238
238
|
"args": "Parametre listesini görüntüle",
|
|
239
|
+
"delete": "Araç çağrısını sil",
|
|
240
|
+
"orphanedToolCall": "Bu araç çağrısı mesajı, beklenmeyen bir nedenle yetim kalmış olabilir ve bu durum Ajansın düzgün çalışmasını etkileyebilir. Lütfen bunu kaldırın.",
|
|
239
241
|
"pluginRender": "Eklenti arayüzünü görüntüle"
|
|
240
242
|
},
|
|
241
243
|
"list": {
|
|
@@ -251,14 +253,20 @@
|
|
|
251
253
|
},
|
|
252
254
|
"localSystem": {
|
|
253
255
|
"apiName": {
|
|
256
|
+
"editLocalFile": "Dosyayı Düzenle",
|
|
257
|
+
"getCommandOutput": "Komut Çıktısını Al",
|
|
258
|
+
"globLocalFiles": "Dosyaları Ara",
|
|
259
|
+
"grepContent": "İçeriği Ara",
|
|
260
|
+
"killCommand": "Komut Yürütmesini Durdur",
|
|
254
261
|
"listLocalFiles": "Dosya listesini görüntüle",
|
|
255
262
|
"moveLocalFiles": "Dosya taşı",
|
|
256
263
|
"readLocalFile": "Dosya içeriğini oku",
|
|
257
264
|
"renameLocalFile": "Dosya adını değiştir",
|
|
265
|
+
"runCommand": "Komutu Çalıştır",
|
|
258
266
|
"searchLocalFiles": "Dosya ara",
|
|
259
267
|
"writeLocalFile": "Dosyaya yaz"
|
|
260
268
|
},
|
|
261
|
-
"title": "Yerel
|
|
269
|
+
"title": "Yerel Sistem"
|
|
262
270
|
},
|
|
263
271
|
"mcpInstall": {
|
|
264
272
|
"CHECKING_INSTALLATION": "Kurulum ortamı kontrol ediliyor...",
|