@lobehub/chat 1.135.4 → 1.135.6

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.
@@ -6,18 +6,16 @@ alwaysApply: true
6
6
 
7
7
  You are developing an open-source, modern-design AI chat framework: lobehub(previous lobe-chat).
8
8
 
9
- support platforms:
9
+ Supported platforms:
10
10
 
11
11
  - web desktop/mobile
12
12
  - desktop(electron)
13
- - mobile app(react native). coming soon
13
+ - mobile app(react native), coming soon
14
14
 
15
15
  logo emoji: 🤯
16
16
 
17
17
  ## Project Technologies Stack
18
18
 
19
- read [package.json](mdc:package.json) to know all npm packages you can use.
20
-
21
19
  - Next.js 15
22
20
  - react 19
23
21
  - TypeScript
@@ -33,6 +31,6 @@ read [package.json](mdc:package.json) to know all npm packages you can use.
33
31
  - dayjs for time library
34
32
  - lodash-es for utility library
35
33
  - TRPC for type safe backend
36
- - PGLite for client DB and PostgreSQL for backend DB
34
+ - PGLite for client DB and Neon PostgreSQL for backend DB
37
35
  - Drizzle ORM
38
36
  - Vitest for testing
@@ -5,11 +5,11 @@ alwaysApply: false
5
5
 
6
6
  # LobeChat Project Structure
7
7
 
8
- note: some not very important files are not shown for simplicity.
9
-
10
8
  ## Complete Project Structure
11
9
 
12
- this project use common monorepo structure. The workspace packages name use `@lobechat/` namespace.
10
+ This project uses common monorepo structure. The workspace packages name use `@lobechat/` namespace.
11
+
12
+ **note**: some not very important files are not shown for simplicity.
13
13
 
14
14
  ```plaintext
15
15
  lobe-chat/
@@ -28,10 +28,12 @@ lobe-chat/
28
28
  │ │ │ ├── schemas/
29
29
  │ │ │ └── repositories/
30
30
  │ ├── model-bank/
31
+ │ │ └── src/
32
+ │ │ └── aiModels/
31
33
  │ ├── model-runtime/
32
34
  │ │ └── src/
33
- │ │ ├── openai/
34
- │ │ └── anthropic/
35
+ │ │ ├── core/
36
+ │ │ └── providers/
35
37
  │ ├── types/
36
38
  │ │ └── src/
37
39
  │ │ ├── message/
@@ -96,14 +98,14 @@ lobe-chat/
96
98
  - UI Components: `src/components`, `src/features`
97
99
  - Global providers: `src/layout`
98
100
  - Zustand stores: `src/store`
99
- - Client Services: `src/services/`
101
+ - Client Services: `src/services/` cross-platform services
100
102
  - clientDB: `src/services/<domain>/client.ts`
101
103
  - serverDB: `src/services/<domain>/server.ts`
102
104
  - API Routers:
103
105
  - `src/app/(backend)/webapi` (REST)
104
106
  - `src/server/routers/{edge|lambda|async|desktop|tools}` (tRPC)
105
107
  - Server:
106
- - Services(can access serverDB): `src/server/services`
108
+ - Services(can access serverDB): `src/server/services` server-used-only services
107
109
  - Modules(can't access db): `src/server/modules` (Server only Third-party Service Module)
108
110
  - Database:
109
111
  - Schema (Drizzle): `packages/database/src/schemas`
@@ -113,8 +115,8 @@ lobe-chat/
113
115
 
114
116
  ## Data Flow Architecture
115
117
 
116
- - **Browser/PWA**: React UI → Client Service → Direct Model Access → PGLite (Web WASM)
117
- - **Server**: React UI → Client Service → tRPC Lambda → Server Services → PostgreSQL (Remote)
118
+ - **Web with ClientDB**: React UI → Client Service → Direct Model Access → PGLite (Web WASM)
119
+ - **Web with ServerDB**: React UI → Client Service → tRPC Lambda → Server Services → PostgreSQL (Remote)
118
120
  - **Desktop**:
119
121
  - Cloud sync disabled: Electron UI → Client Service → tRPC Lambda → Local Server Services → PGLite (Node WASM)
120
122
  - Cloud sync enabled: Electron UI → Client Service → tRPC Lambda → Cloud Server Services → PostgreSQL (Remote)
@@ -29,16 +29,11 @@ alwaysApply: false
29
29
 
30
30
  ## Code Structure and Readability
31
31
 
32
- - Refactor repeated logic into reusable functions.
33
32
  - Prefer object destructuring when accessing and using properties.
34
33
  - Use consistent, descriptive naming; avoid obscure abbreviations.
35
34
  - Use semantically meaningful variable, function, and class names.
36
35
  - Replace magic numbers or strings with well-named constants.
37
- - Keep meaningful code comments; do not remove them when applying edits. Update comments when behavior changes.
38
- - Ensure JSDoc comments accurately reflect the implementation.
39
- - Look for opportunities to simplify or modernize code with the latest JavaScript/TypeScript features where it improves clarity.
40
36
  - Defer formatting to tooling; ignore purely formatting-only issues and autofixable lint problems.
41
- - Respect project Prettier settings.
42
37
 
43
38
  ## UI and Theming
44
39
 
@@ -50,15 +45,14 @@ alwaysApply: false
50
45
  ## Performance
51
46
 
52
47
  - Prefer `for…of` loops to index-based `for` loops when feasible.
53
- - Decide whether callbacks should be debounced or throttled based on UX and performance needs.
54
- - Reuse existing npm packages rather than reinventing the wheel (e.g., `lodash-es/omit`).
48
+ - Reuse existing utils inside `packages/utils` or installed npm packages rather than reinventing the wheel.
55
49
  - Query only the required columns from a database rather than selecting entire rows.
56
50
 
57
51
  ## Time and Consistency
58
52
 
59
53
  - Instead of calling `Date.now()` multiple times, assign it to a constant once and reuse it to ensure consistency and improve readability.
60
54
 
61
- ## Some logging rules
55
+ ## Logging
62
56
 
63
57
  - Never log user private information like api key, etc
64
58
  - Don't use `import { log } from 'debug'` to log messages, because it will directly log the message to the console.
@@ -95,7 +95,7 @@ jobs:
95
95
  runs-on: ${{ matrix.os }}
96
96
  strategy:
97
97
  matrix:
98
- os: [macos-latest, macos-13, windows-2025, ubuntu-latest]
98
+ os: [macos-latest, macos-15-intel, windows-2025, ubuntu-latest]
99
99
  steps:
100
100
  - uses: actions/checkout@v5
101
101
  with:
@@ -129,11 +129,11 @@ jobs:
129
129
  run: npm run desktop:build
130
130
  env:
131
131
  # 设置更新通道,PR构建为nightly,否则为stable
132
- UPDATE_CHANNEL: 'nightly'
132
+ UPDATE_CHANNEL: "nightly"
133
133
  APP_URL: http://localhost:3015
134
- DATABASE_URL: 'postgresql://postgres@localhost:5432/postgres'
134
+ DATABASE_URL: "postgresql://postgres@localhost:5432/postgres"
135
135
  # 默认添加一个加密 SECRET
136
- KEY_VAULTS_SECRET: 'oLXWIiR/AKF+rWaqy9lHkrYgzpATbW3CtJp3UfkVgpE='
136
+ KEY_VAULTS_SECRET: "oLXWIiR/AKF+rWaqy9lHkrYgzpATbW3CtJp3UfkVgpE="
137
137
  # macOS 签名和公证配置
138
138
  CSC_LINK: ${{ secrets.APPLE_CERTIFICATE_BASE64 }}
139
139
  CSC_KEY_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
@@ -152,10 +152,10 @@ jobs:
152
152
  run: npm run desktop:build
153
153
  env:
154
154
  # 设置更新通道,PR构建为nightly,否则为stable
155
- UPDATE_CHANNEL: 'nightly'
155
+ UPDATE_CHANNEL: "nightly"
156
156
  APP_URL: http://localhost:3015
157
- DATABASE_URL: 'postgresql://postgres@localhost:5432/postgres'
158
- KEY_VAULTS_SECRET: 'oLXWIiR/AKF+rWaqy9lHkrYgzpATbW3CtJp3UfkVgpE='
157
+ DATABASE_URL: "postgresql://postgres@localhost:5432/postgres"
158
+ KEY_VAULTS_SECRET: "oLXWIiR/AKF+rWaqy9lHkrYgzpATbW3CtJp3UfkVgpE="
159
159
  NEXT_PUBLIC_DESKTOP_PROJECT_ID: ${{ secrets.UMAMI_NIGHTLY_DESKTOP_PROJECT_ID }}
160
160
  NEXT_PUBLIC_DESKTOP_UMAMI_BASE_URL: ${{ secrets.UMAMI_NIGHTLY_DESKTOP_BASE_URL }}
161
161
  # 将 TEMP 和 TMP 目录设置到 C 盘
@@ -168,10 +168,10 @@ jobs:
168
168
  run: npm run desktop:build
169
169
  env:
170
170
  # 设置更新通道,PR构建为nightly,否则为stable
171
- UPDATE_CHANNEL: 'nightly'
171
+ UPDATE_CHANNEL: "nightly"
172
172
  APP_URL: http://localhost:3015
173
- DATABASE_URL: 'postgresql://postgres@localhost:5432/postgres'
174
- KEY_VAULTS_SECRET: 'oLXWIiR/AKF+rWaqy9lHkrYgzpATbW3CtJp3UfkVgpE='
173
+ DATABASE_URL: "postgresql://postgres@localhost:5432/postgres"
174
+ KEY_VAULTS_SECRET: "oLXWIiR/AKF+rWaqy9lHkrYgzpATbW3CtJp3UfkVgpE="
175
175
  NEXT_PUBLIC_DESKTOP_PROJECT_ID: ${{ secrets.UMAMI_NIGHTLY_DESKTOP_PROJECT_ID }}
176
176
  NEXT_PUBLIC_DESKTOP_UMAMI_BASE_URL: ${{ secrets.UMAMI_NIGHTLY_DESKTOP_BASE_URL }}
177
177
 
@@ -82,7 +82,7 @@ jobs:
82
82
  runs-on: ${{ matrix.os }}
83
83
  strategy:
84
84
  matrix:
85
- os: [macos-latest, macos-13, windows-2025, ubuntu-latest]
85
+ os: [macos-latest, macos-15-intel, windows-2025, ubuntu-latest]
86
86
  steps:
87
87
  - uses: actions/checkout@v5
88
88
  with:
@@ -116,9 +116,9 @@ jobs:
116
116
  run: npm run desktop:build
117
117
  env:
118
118
  APP_URL: http://localhost:3015
119
- DATABASE_URL: 'postgresql://postgres@localhost:5432/postgres'
119
+ DATABASE_URL: "postgresql://postgres@localhost:5432/postgres"
120
120
  # 默认添加一个加密 SECRET
121
- KEY_VAULTS_SECRET: 'oLXWIiR/AKF+rWaqy9lHkrYgzpATbW3CtJp3UfkVgpE='
121
+ KEY_VAULTS_SECRET: "oLXWIiR/AKF+rWaqy9lHkrYgzpATbW3CtJp3UfkVgpE="
122
122
  # macOS 签名和公证配置
123
123
  CSC_LINK: ${{ secrets.APPLE_CERTIFICATE_BASE64 }}
124
124
  CSC_KEY_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
@@ -137,8 +137,8 @@ jobs:
137
137
  run: npm run desktop:build
138
138
  env:
139
139
  APP_URL: http://localhost:3015
140
- DATABASE_URL: 'postgresql://postgres@localhost:5432/postgres'
141
- KEY_VAULTS_SECRET: 'oLXWIiR/AKF+rWaqy9lHkrYgzpATbW3CtJp3UfkVgpE='
140
+ DATABASE_URL: "postgresql://postgres@localhost:5432/postgres"
141
+ KEY_VAULTS_SECRET: "oLXWIiR/AKF+rWaqy9lHkrYgzpATbW3CtJp3UfkVgpE="
142
142
  NEXT_PUBLIC_DESKTOP_PROJECT_ID: ${{ secrets.UMAMI_BETA_DESKTOP_PROJECT_ID }}
143
143
  NEXT_PUBLIC_DESKTOP_UMAMI_BASE_URL: ${{ secrets.UMAMI_BETA_DESKTOP_BASE_URL }}
144
144
 
@@ -152,8 +152,8 @@ jobs:
152
152
  run: npm run desktop:build
153
153
  env:
154
154
  APP_URL: http://localhost:3015
155
- DATABASE_URL: 'postgresql://postgres@localhost:5432/postgres'
156
- KEY_VAULTS_SECRET: 'oLXWIiR/AKF+rWaqy9lHkrYgzpATbW3CtJp3UfkVgpE='
155
+ DATABASE_URL: "postgresql://postgres@localhost:5432/postgres"
156
+ KEY_VAULTS_SECRET: "oLXWIiR/AKF+rWaqy9lHkrYgzpATbW3CtJp3UfkVgpE="
157
157
  NEXT_PUBLIC_DESKTOP_PROJECT_ID: ${{ secrets.UMAMI_BETA_DESKTOP_PROJECT_ID }}
158
158
  NEXT_PUBLIC_DESKTOP_UMAMI_BASE_URL: ${{ secrets.UMAMI_BETA_DESKTOP_BASE_URL }}
159
159
 
package/CHANGELOG.md CHANGED
@@ -2,6 +2,56 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.135.6](https://github.com/lobehub/lobe-chat/compare/v1.135.5...v1.135.6)
6
+
7
+ <sup>Released on **2025-10-08**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **desktop**: Macos26 small icon.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **desktop**: Macos26 small icon, closes [#9421](https://github.com/lobehub/lobe-chat/issues/9421) ([ca03342](https://github.com/lobehub/lobe-chat/commit/ca03342))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
30
+ ### [Version 1.135.5](https://github.com/lobehub/lobe-chat/compare/v1.135.4...v1.135.5)
31
+
32
+ <sup>Released on **2025-10-08**</sup>
33
+
34
+ #### 💄 Styles
35
+
36
+ - **misc**: Update i18n.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### Styles
44
+
45
+ - **misc**: Update i18n, closes [#9602](https://github.com/lobehub/lobe-chat/issues/9602) ([ed267a4](https://github.com/lobehub/lobe-chat/commit/ed267a4))
46
+
47
+ </details>
48
+
49
+ <div align="right">
50
+
51
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
52
+
53
+ </div>
54
+
5
55
  ### [Version 1.135.4](https://github.com/lobehub/lobe-chat/compare/v1.135.3...v1.135.4)
6
56
 
7
57
  <sup>Released on **2025-10-07**</sup>
package/CLAUDE.md CHANGED
@@ -31,28 +31,18 @@ This repository adopts a monorepo structure.
31
31
 
32
32
  see @.cursor/rules/typescript.mdc
33
33
 
34
- ### Modify Code Rules
35
-
36
- - **Code Language**:
37
- - For files with existing Chinese comments: Continue using Chinese to maintain consistency
38
- - For new files or files without Chinese comments: MUST use American English.
39
- - eg: new react tsx file and new test file
40
- - Conservative for existing code, modern approaches for new features
41
-
42
34
  ### Testing
43
35
 
44
- Testing work follows the Rule-Aware Task Execution system above.
45
-
46
- - **Required Rule**: `testing-guide/testing-guide.mdc`
36
+ - **Required Rule**: read `@.cursor/rules/testing-guide/testing-guide.mdc` before writing tests
47
37
  - **Command**:
48
38
  - web: `bunx vitest run --silent='passed-only' '[file-path-pattern]'`
49
39
  - packages(eg: database): `cd packages/database && bunx vitest run --silent='passed-only' '[file-path-pattern]'`
50
40
 
51
41
  **Important**:
52
42
 
53
- - wrapped the file path in single quotes to avoid shell expansion
43
+ - wrap the file path in single quotes to avoid shell expansion
54
44
  - Never run `bun run test` etc to run tests, this will run all tests and cost about 10mins
55
- - If try to fix the same test twice, but still failed, stop and ask for help.
45
+ - If trying to fix the same test twice, but still failed, stop and ask for help.
56
46
 
57
47
  ### Typecheck
58
48
 
@@ -61,15 +51,9 @@ Testing work follows the Rule-Aware Task Execution system above.
61
51
  ### i18n
62
52
 
63
53
  - **Keys**: Add to `src/locales/default/namespace.ts`
64
- - **Dev**: Translate `locales/zh-CN/namespace.json` locale file only for preview
54
+ - **Dev**: Translate `locales/zh-CN/namespace.json` and `locales/en-US/namespace.json` locales file only for dev preview
65
55
  - DON'T run `pnpm i18n`, let CI auto handle it
66
56
 
67
57
  ## Rules Index
68
58
 
69
- Some useful rules of this project. Read them when needed.
70
-
71
- **IMPORTANT**: All rule files referenced in this document are located in the `.cursor/rules/` directory. Throughout this document, rule files are referenced by their filename only for brevity.
72
-
73
- ### 📋 Complete Rule Files
74
-
75
59
  Some useful project rules are listed in @.cursor/rules/rules-index.mdc
@@ -1,5 +1,7 @@
1
1
  const dotenv = require('dotenv');
2
+ const fs = require('node:fs/promises');
2
3
  const os = require('node:os');
4
+ const path = require('node:path');
3
5
 
4
6
  dotenv.config();
5
7
 
@@ -32,11 +34,50 @@ const getProtocolScheme = () => {
32
34
 
33
35
  const protocolScheme = getProtocolScheme();
34
36
 
37
+ // Determine icon file based on version type
38
+ const getIconFileName = () => {
39
+ if (isNightly) return 'Icon-nightly';
40
+ if (isBeta) return 'Icon-beta';
41
+ return 'Icon';
42
+ };
43
+
35
44
  /**
36
45
  * @type {import('electron-builder').Configuration}
37
46
  * @see https://www.electron.build/configuration
38
47
  */
39
48
  const config = {
49
+ /**
50
+ * AfterPack hook to copy pre-generated Liquid Glass Assets.car for macOS 26+
51
+ * @see https://github.com/electron-userland/electron-builder/issues/9254
52
+ * @see https://github.com/MultiboxLabs/flow-browser/pull/159
53
+ * @see https://github.com/electron/packager/pull/1806
54
+ */
55
+ afterPack: async (context) => {
56
+ // Only process macOS builds
57
+ if (context.electronPlatformName !== 'darwin') {
58
+ return;
59
+ }
60
+
61
+ const iconFileName = getIconFileName();
62
+ const assetsCarSource = path.join(__dirname, 'build', `${iconFileName}.Assets.car`);
63
+ const resourcesPath = path.join(
64
+ context.appOutDir,
65
+ `${context.packager.appInfo.productFilename}.app`,
66
+ 'Contents',
67
+ 'Resources',
68
+ );
69
+ const assetsCarDest = path.join(resourcesPath, 'Assets.car');
70
+
71
+ try {
72
+ await fs.access(assetsCarSource);
73
+ await fs.copyFile(assetsCarSource, assetsCarDest);
74
+ console.log(`✅ Copied Liquid Glass icon: ${iconFileName}.Assets.car`);
75
+ } catch {
76
+ // Non-critical: Assets.car not found or copy failed
77
+ // App will use fallback .icns icon on all macOS versions
78
+ console.log(`⏭️ Skipping Assets.car (not found or copy failed)`);
79
+ }
80
+ },
40
81
  appId: isNightly
41
82
  ? 'com.lobehub.lobehub-desktop-nightly'
42
83
  : isBeta
@@ -81,6 +122,7 @@ const config = {
81
122
  compression: 'maximum',
82
123
  entitlementsInherit: 'build/entitlements.mac.plist',
83
124
  extendInfo: {
125
+ CFBundleIconName: 'AppIcon',
84
126
  CFBundleURLTypes: [
85
127
  {
86
128
  CFBundleURLName: 'LobeHub Protocol',
package/changelog/v1.json CHANGED
@@ -1,4 +1,18 @@
1
1
  [
2
+ {
3
+ "children": {},
4
+ "date": "2025-10-08",
5
+ "version": "1.135.6"
6
+ },
7
+ {
8
+ "children": {
9
+ "improvements": [
10
+ "Update i18n."
11
+ ]
12
+ },
13
+ "date": "2025-10-08",
14
+ "version": "1.135.5"
15
+ },
2
16
  {
3
17
  "children": {
4
18
  "improvements": [
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1: نموذج استدلال من الجيل التالي يعزز القدرات على الاستدلال المعقد والتفكير التسلسلي، مناسب للمهام التي تتطلب تحليلاً عميقًا."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1: نموذج الاستدلال من الجيل التالي، يعزز القدرة على الاستنتاج المعقد والتفكير المتسلسل، ومناسب للمهام التي تتطلب تحليلاً عميقاً."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 هو نموذج لغوي بصري مختلط الخبراء (MoE) تم تطويره بناءً على DeepSeekMoE-27B، يستخدم بنية MoE ذات تفعيل نادر، محققًا أداءً ممتازًا مع تفعيل 4.5 مليار معلمة فقط. يقدم هذا النموذج أداءً ممتازًا في مهام مثل الأسئلة البصرية، التعرف الضوئي على الأحرف، فهم الوثائق/الجداول/الرسوم البيانية، وتحديد المواقع البصرية."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "أسرع وأكفأ نسخة من GPT-5 من حيث التكلفة. مثالية للتطبيقات التي تتطلب استجابة سريعة وحساسة للتكلفة."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "يستخدم GPT-5 pro قدرة حسابية أكبر للتفكير بشكل أعمق، ويواصل تقديم إجابات أفضل باستمرار."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio هو نموذج دردشة عام موجه لإدخال وإخراج الصوت، ويدعم استخدام الصوت في واجهة برمجة تطبيقات Chat Completions."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "نموذج توليد الصور متعدد الوسائط الأصلي من ChatGPT"
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "نسخة منخفضة التكلفة من GPT Image 1، تدعم إدخال النصوص والصور بشكل أصلي وتوليد مخرجات على شكل صور."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4: هيكل Transformer محسّن بالكمية، يحافظ على أداء قوي حتى في ظل محدودية الموارد."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1: следващо поколение модел за разсъждение, подобряващ способностите за сложни разсъждения и свързано мислене, подходящ за задачи, изискващи задълбочен анализ."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1: следващо поколение модел за разсъждение, с подобрени способности за сложни логически връзки и аналитично мислене, подходящ за задачи, изискващи задълбочен анализ."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 е визуален езиков модел, разработен на базата на DeepSeekMoE-27B, който използва архитектура на смесени експерти (MoE) с рядка активация, постигайки изключителна производителност с активирани само 4.5B параметри. Моделът показва отлични резултати в множество задачи, включително визуални въпроси и отговори, оптично разпознаване на символи, разбиране на документи/таблици/графики и визуална локализация."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "Най-бързата и най-икономична версия на GPT-5. Отлично подходяща за приложения, изискващи бърз отговор и чувствителни към разходите."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 pro използва повече изчислителна мощност за по-задълбочено мислене и постоянно предоставя по-добри отговори."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio е универсален чат модел, ориентиран към аудио вход и изход, поддържащ използване на аудио I/O в Chat Completions API."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "Роден мултимодален модел за генериране на изображения ChatGPT."
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "По-икономична версия на GPT Image 1, с вградена поддръжка за вход от текст и изображение и генериране на изходно изображение."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4 квантизиран трансформър модел, който запазва силна производителност при ограничени ресурси."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1: Ein Inferenzmodell der nächsten Generation, das komplexe Schlussfolgerungen und verknüpfte Denkfähigkeiten verbessert und sich für Aufgaben eignet, die tiefgehende Analysen erfordern."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1: Das nächste Generation von Inferenzmodellen mit verbesserter Fähigkeit zum komplexen Schlussfolgern und vernetztem Denken – ideal für Aufgaben, die tiefgehende Analysen erfordern."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 ist ein hybrides Expertenmodell (MoE) für visuelle Sprache, das auf DeepSeekMoE-27B basiert und eine spärliche Aktivierung der MoE-Architektur verwendet, um außergewöhnliche Leistungen bei der Aktivierung von nur 4,5 Milliarden Parametern zu erzielen. Dieses Modell zeigt hervorragende Leistungen in mehreren Aufgaben, darunter visuelle Fragenbeantwortung, optische Zeichenerkennung, Dokument-/Tabellen-/Diagrammverständnis und visuelle Lokalisierung."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "Die schnellste und kostengünstigste Version von GPT-5. Besonders geeignet für Anwendungen, die schnelle Reaktionen und Kostenbewusstsein erfordern."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 Pro nutzt mehr Rechenleistung für tiefgreifendere Überlegungen und liefert kontinuierlich bessere Antworten."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio ist ein universelles Chatmodell für Audioeingabe und -ausgabe, das Audio-I/O in der Chat Completions API unterstützt."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "ChatGPT natives multimodales Bildgenerierungsmodell"
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "Kostengünstigere Version von GPT Image 1 mit nativer Unterstützung für Text- und Bildeingaben sowie Bildausgaben."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4 quantisierte Transformer-Struktur, die auch bei begrenzten Ressourcen starke Leistung beibehält."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1: The next-generation reasoning model that enhances complex reasoning and chain-of-thought capabilities, suitable for tasks requiring in-depth analysis."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1: A next-generation reasoning model designed to enhance complex reasoning and chain-of-thought capabilities, ideal for tasks requiring in-depth analysis."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 is a mixture of experts (MoE) visual language model developed based on DeepSeekMoE-27B, employing a sparsely activated MoE architecture that achieves outstanding performance while activating only 4.5 billion parameters. This model excels in various tasks, including visual question answering, optical character recognition, document/table/chart understanding, and visual localization."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "The fastest and most cost-efficient version of GPT-5. Perfectly suited for applications requiring rapid responses and cost sensitivity."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 Pro leverages greater computational power for deeper reasoning and consistently delivers improved answers."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio is a general-purpose chat model designed for audio input and output, supporting audio I/O in the Chat Completions API."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "ChatGPT native multimodal image generation model."
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "A more cost-effective version of GPT Image 1, natively supporting both text and image inputs with image generation output."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4 quantized Transformer architecture, delivering strong performance even under resource constraints."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1: modelo de inferencia de próxima generación que mejora las capacidades de razonamiento complejo y pensamiento en cadena, ideal para tareas que requieren análisis profundo."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1: un modelo de inferencia de nueva generación que mejora la capacidad de razonamiento complejo y pensamiento en cadena, ideal para tareas que requieren un análisis profundo."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 es un modelo de lenguaje visual de expertos mixtos (MoE) desarrollado sobre DeepSeekMoE-27B, que utiliza una arquitectura MoE de activación dispersa, logrando un rendimiento excepcional al activar solo 4.5B de parámetros. Este modelo destaca en múltiples tareas como preguntas visuales, reconocimiento óptico de caracteres, comprensión de documentos/tablas/gráficos y localización visual."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "Versión más rápida y económica de GPT-5. Perfecta para escenarios que requieren respuestas rápidas y son sensibles al costo."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 pro utiliza más capacidad de cómputo para pensar de forma más profunda y ofrecer respuestas de mayor calidad de manera constante."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio es un modelo de chat general para entrada y salida de audio, compatible con el uso de audio I/O en la API de Chat Completions."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "Modelo nativo multimodal de generación de imágenes de ChatGPT."
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "Una versión más económica de GPT Image 1, con soporte nativo para entrada de texto e imagen y generación de salida en formato de imagen."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4: estructura Transformer cuantificada que mantiene un rendimiento sólido incluso con recursos limitados."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1: مدل استنتاج نسل بعدی که توانایی‌های استنتاج پیچیده و تفکر زنجیره‌ای را بهبود بخشیده و برای وظایفی که نیاز به تحلیل عمیق دارند مناسب است."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1: نسل جدیدی از مدل‌های استنتاج که توانایی استدلال پیچیده و تفکر زنجیره‌ای را بهبود می‌بخشد، مناسب برای وظایفی که نیاز به تحلیل عمیق دارند."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 یک مدل زبانی بصری مبتنی بر DeepSeekMoE-27B است که از معماری MoE با فعال‌سازی پراکنده استفاده می‌کند و در حالی که تنها 4.5 میلیارد پارامتر فعال است، عملکرد فوق‌العاده‌ای را ارائه می‌دهد. این مدل در چندین وظیفه از جمله پرسش و پاسخ بصری، شناسایی کاراکتر نوری، درک اسناد/جدول‌ها/نمودارها و مکان‌یابی بصری عملکرد عالی دارد."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "سریع‌ترین و اقتصادی‌ترین نسخه GPT-5. بسیار مناسب برای کاربردهایی که نیاز به پاسخ سریع و حساسیت به هزینه دارند."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 pro با استفاده از محاسبات بیشتر، عمیق‌تر می‌اندیشد و به طور مداوم پاسخ‌های بهتری ارائه می‌دهد."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio مدلی عمومی برای چت با ورودی و خروجی صوتی است که از استفاده از ورودی/خروجی صوتی در API تکمیل چت پشتیبانی می‌کند."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "مدل تولید تصویر چندرسانه‌ای بومی ChatGPT"
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "نسخه‌ای مقرون‌به‌صرفه‌تر از GPT Image 1 که به‌صورت بومی از ورودی‌های متنی و تصویری پشتیبانی می‌کند و خروجی تصویری تولید می‌نماید."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4: ساختار ترنسفورمر کوانتیزه شده که حتی در منابع محدود عملکرد قوی خود را حفظ می‌کند."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1 : modèle de raisonnement de nouvelle génération, améliorant les capacités de raisonnement complexe et de réflexion en chaîne, adapté aux tâches nécessitant une analyse approfondie."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1 : un modèle de raisonnement de nouvelle génération, améliorant les capacités de raisonnement complexe et de pensée en chaîne, idéal pour les tâches nécessitant une analyse approfondie."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 est un modèle de langage visuel à experts mixtes (MoE) développé sur la base de DeepSeekMoE-27B, utilisant une architecture MoE à activation sparse, réalisant des performances exceptionnelles tout en n'activant que 4,5 milliards de paramètres. Ce modèle excelle dans plusieurs tâches telles que la question-réponse visuelle, la reconnaissance optique de caractères, la compréhension de documents/tableaux/graphes et le positionnement visuel."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "Version la plus rapide et la plus économique de GPT-5. Parfaitement adaptée aux scénarios nécessitant une réponse rapide et sensibles aux coûts."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 Pro utilise davantage de puissance de calcul pour approfondir sa réflexion et fournir des réponses toujours plus pertinentes."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio est un modèle de chat universel orienté vers l'entrée et la sortie audio, supportant l'utilisation d'entrées/sorties audio dans l'API Chat Completions."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "Modèle natif multimodal de génération d'images de ChatGPT."
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "Une version plus économique de GPT Image 1, prenant en charge nativement les entrées texte et image, et générant des sorties visuelles."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4 : architecture Transformer quantifiée, offrant des performances solides même en ressources limitées."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1: modello di inferenza di nuova generazione che migliora le capacità di ragionamento complesso e di pensiero a catena, adatto a compiti che richiedono analisi approfondite."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1: un modello di ragionamento di nuova generazione, con capacità avanzate di analisi complessa e pensiero concatenato, ideale per compiti che richiedono un'analisi approfondita."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 è un modello linguistico visivo a esperti misti (MoE) sviluppato sulla base di DeepSeekMoE-27B, che utilizza un'architettura MoE con attivazione sparsa, raggiungendo prestazioni eccezionali attivando solo 4,5 miliardi di parametri. Questo modello eccelle in vari compiti, tra cui domande visive, riconoscimento ottico dei caratteri, comprensione di documenti/tabelle/grafici e localizzazione visiva."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "Versione più veloce ed economica di GPT-5. Perfetta per scenari applicativi che richiedono risposte rapide e sono sensibili ai costi."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 Pro utilizza maggiori risorse computazionali per un'elaborazione più profonda, offrendo risposte sempre più accurate e pertinenti."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio è un modello di chat universale per input e output audio, supporta l'uso di I/O audio nell'API Chat Completions."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "Modello nativo multimodale di generazione immagini di ChatGPT"
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "Una versione più economica di GPT Image 1, con supporto nativo per input testuali e visivi e generazione di output in formato immagine."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4: struttura Transformer quantizzata, mantiene prestazioni elevate anche con risorse limitate."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1:次世代推論モデルで、複雑な推論と連鎖的思考能力を向上させ、深い分析を必要とするタスクに適しています。"
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1:次世代の推論モデルで、複雑な推論や連鎖的思考能力が向上しており、深い分析を必要とするタスクに最適です。"
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2は、DeepSeekMoE-27Bに基づいて開発された混合専門家(MoE)視覚言語モデルであり、スパースアクティベーションのMoEアーキテクチャを採用し、わずか4.5Bパラメータを活性化することで卓越した性能を実現しています。このモデルは、視覚的質問応答、光学文字認識、文書/表/グラフ理解、視覚的定位などの複数のタスクで優れたパフォーマンスを発揮します。"
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "最も高速かつコスト効率の高いGPT-5のバージョン。迅速な応答が求められ、コストに敏感なアプリケーションに非常に適しています。"
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 pro は、より多くの計算資源を活用して深く思考し、常により優れた回答を提供します。"
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audioは音声の入出力に対応した汎用チャットモデルで、Chat Completions APIでの音声I/O利用をサポートしています。"
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "ChatGPT ネイティブのマルチモーダル画像生成モデル"
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "コストを抑えた GPT Image 1 のバージョンで、テキストと画像の入力をネイティブにサポートし、画像出力を生成します。"
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4量子化Transformer構造で、リソース制限下でも高い性能を維持します。"
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1: 차세대 추론 모델로, 복잡한 추론 및 연쇄 사고 능력을 향상시켜 심층 분석이 필요한 작업에 적합합니다."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1: 차세대 추론 모델로, 복잡한 추론과 연쇄적 사고 능력이 향상되어 심층 분석이 필요한 작업에 적합합니다."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2는 DeepSeekMoE-27B를 기반으로 개발된 혼합 전문가(MoE) 비주얼 언어 모델로, 희소 활성화 MoE 아키텍처를 사용하여 4.5B 매개변수만 활성화된 상태에서 뛰어난 성능을 발휘합니다. 이 모델은 비주얼 질문 응답, 광학 문자 인식, 문서/표/차트 이해 및 비주얼 위치 지정 등 여러 작업에서 우수한 성과를 보입니다."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "가장 빠르고 경제적인 GPT-5 버전으로, 빠른 응답과 비용 효율성이 중요한 애플리케이션에 매우 적합합니다."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 pro는 더 많은 연산을 활용하여 더 깊이 있는 사고를 수행하고 지속적으로 더 나은 답변을 제공합니다."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio는 오디오 입출력을 위한 범용 대화 모델로, Chat Completions API에서 오디오 I/O 사용을 지원합니다."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "ChatGPT 네이티브 멀티모달 이미지 생성 모델"
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "비용 효율적인 GPT Image 1 버전으로, 텍스트와 이미지 입력을 자연스럽게 지원하며 이미지 출력을 생성합니다."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4 양자화된 Transformer 구조로, 자원이 제한된 환경에서도 강력한 성능을 유지합니다."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1: een volgende generatie redeneermodel dat verbeterde complexe redeneer- en ketendenkvaardigheden biedt, geschikt voor taken die diepgaande analyse vereisen."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1: de volgende generatie redeneermodel, met verbeterde capaciteiten voor complexe redenering en ketendenken, ideaal voor taken die diepgaande analyse vereisen."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 is een hybride expert (MoE) visueel taalmodel dat is ontwikkeld op basis van DeepSeekMoE-27B, met een MoE-architectuur met spaarzame activatie, die uitstekende prestaties levert met slechts 4,5 miljard geactiveerde parameters. Dit model presteert uitstekend in verschillende taken, waaronder visuele vraag-antwoord, optische tekenherkenning, document/tabel/grafiekbegrip en visuele positionering."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "De snelste en meest kostenefficiënte versie van GPT-5. Uitstekend geschikt voor toepassingen die snelle reacties en kostenbewustzijn vereisen."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 pro gebruikt meer rekenkracht om dieper na te denken en levert consequent betere antwoorden."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio is een universeel chatmodel gericht op audio-invoer en -uitvoer, ondersteund in de Chat Completions API met audio I/O."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "ChatGPT native multimodaal afbeeldingsgeneratiemodel"
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "Een kostenefficiëntere versie van GPT Image 1, met native ondersteuning voor tekst- en afbeeldingsinvoer en het genereren van afbeeldingsuitvoer."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4-gekwantificeerd Transformer-structuur, behoudt sterke prestaties zelfs bij beperkte middelen."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1: kolejna generacja modelu inferencyjnego, poprawiająca zdolności do złożonego wnioskowania i łańcuchowego myślenia, odpowiednia do zadań wymagających dogłębnej analizy."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1: Nowej generacji model wnioskowania, który poprawia zdolność do złożonego rozumowania i myślenia łańcuchowego, idealny do zadań wymagających dogłębnej analizy."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 to model wizualno-językowy oparty na DeepSeekMoE-27B, wykorzystujący architekturę MoE z rzadką aktywacją, osiągający doskonałe wyniki przy aktywacji jedynie 4,5 miliarda parametrów. Model ten wyróżnia się w wielu zadaniach, takich jak wizualne pytania i odpowiedzi, optyczne rozpoznawanie znaków, zrozumienie dokumentów/tabel/wykresów oraz lokalizacja wizualna."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "Najszybsza i najbardziej ekonomiczna wersja GPT-5. Doskonała do zastosowań wymagających szybkiej odpowiedzi i wrażliwych na koszty."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 pro wykorzystuje większą moc obliczeniową do głębszego rozumowania i konsekwentnie dostarcza lepsze odpowiedzi."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio to uniwersalny model konwersacyjny obsługujący wejście i wyjście audio, dostępny w API Chat Completions z obsługą audio I/O."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "Natywny multimodalny model generowania obrazów ChatGPT."
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "Tańsza wersja GPT Image 1, natywnie obsługuje wejścia tekstowe i graficzne oraz generuje obrazy jako wyjście."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4: skwantowany model Transformer, który zachowuje wysoką wydajność nawet przy ograniczonych zasobach."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1: modelo de inferência de próxima geração, aprimorado para raciocínio complexo e pensamento em cadeia, ideal para tarefas que exigem análise profunda."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1: um modelo de inferência de nova geração, com capacidades aprimoradas de raciocínio complexo e pensamento em cadeia, ideal para tarefas que exigem análise aprofundada."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 é um modelo de linguagem visual baseado no DeepSeekMoE-27B, desenvolvido como um especialista misto (MoE), utilizando uma arquitetura de MoE com ativação esparsa, alcançando desempenho excepcional com apenas 4,5 bilhões de parâmetros ativados. Este modelo se destaca em várias tarefas, incluindo perguntas visuais, reconhecimento óptico de caracteres, compreensão de documentos/tabelas/gráficos e localização visual."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "Versão mais rápida e econômica do GPT-5. Muito adequada para cenários que exigem respostas rápidas e sensibilidade a custos."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "O GPT-5 Pro utiliza mais poder computacional para pensar de forma mais profunda e fornecer respostas consistentemente melhores."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio é um modelo de chat universal voltado para entrada e saída de áudio, suportando uso de áudio I/O na API de Chat Completions."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "Modelo nativo multimodal de geração de imagens do ChatGPT"
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "Uma versão mais econômica do GPT Image 1, com suporte nativo para entrada de texto e imagem, além de geração de saída em imagem."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4: estrutura Transformer quantificada, mantendo desempenho robusto mesmo em recursos limitados."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1: модель следующего поколения для вывода, улучшенная для сложных рассуждений и цепочек мышления, подходит для задач, требующих глубокого анализа."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1: модель нового поколения для продвинутого рассуждения, улучшает способности к сложному анализу и логическим цепочкам, идеально подходит для задач, требующих глубокого анализа."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 — это модель визуального языка, разработанная на основе DeepSeekMoE-27B, использующая архитектуру MoE с разреженной активацией, которая демонстрирует выдающуюся производительность при активации всего 4,5 миллиарда параметров. Эта модель показывает отличные результаты в таких задачах, как визуальные вопросы и ответы, оптическое распознавание символов, понимание документов/таблиц/графиков и визуальная локализация."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "Самая быстрая и экономичная версия GPT-5. Отлично подходит для приложений, требующих быстрого отклика и чувствительных к затратам."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 Pro использует больше вычислительных ресурсов для более глубокого мышления и стабильно предоставляет более качественные ответы."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio — универсальная чат-модель с поддержкой аудиовхода и аудиовыхода, доступная через API Chat Completions с аудио I/O."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "Родная мультимодальная модель генерации изображений ChatGPT."
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "Более доступная версия GPT Image 1 с нативной поддержкой ввода текста и изображений, а также генерацией изображений в ответ."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4: квантизированная структура Transformer, сохраняющая высокую производительность при ограниченных ресурсах."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "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."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1: Yeni nesil akıl yürütme modeli, karmaşık mantıksal çıkarımlar ve zincirleme düşünme yeteneklerini geliştirir, derinlemesine analiz gerektiren görevler için idealdir."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2, DeepSeekMoE-27B tabanlı bir karma uzman (MoE) görsel dil modelidir. Seyrek etkinleştirilen MoE mimarisini kullanarak yalnızca 4.5B parametreyi etkinleştirerek olağanüstü performans sergilemektedir. Bu model, görsel soru yanıtlama, optik karakter tanıma, belge/tablolar/grafikler anlama ve görsel konumlandırma gibi birçok görevde mükemmel sonuçlar elde etmektedir."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "En hızlı ve en ekonomik GPT-5 versiyonu. Hızlı yanıt gerektiren ve maliyet duyarlı uygulamalar için idealdir."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "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."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "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."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "ChatGPT'nin yerel çok modlu görüntü oluşturma modeli"
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "Daha düşük maliyetli bir GPT Image 1 sürümüdür, metin ve görsel girdilerini doğal olarak destekler ve görsel çıktılar üretebilir."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4 kuantize edilmiş Transformer yapısı, sınırlı kaynaklarda bile güçlü performans sağlar."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1: Mô hình suy luận thế hệ tiếp theo, nâng cao khả năng suy luận phức tạp và tư duy chuỗi, phù hợp cho các tác vụ cần phân tích sâu."
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1: Mô hình suy luận thế hệ mới, nâng cao khả năng suy luận phức tạp và tư duy chuỗi, phù hợp với các nhiệm vụ cần phân tích chuyên sâu."
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 là một mô hình ngôn ngữ hình ảnh hỗn hợp chuyên gia (MoE) được phát triển dựa trên DeepSeekMoE-27B, sử dụng kiến trúc MoE với kích hoạt thưa, đạt được hiệu suất xuất sắc chỉ với 4.5B tham số được kích hoạt. Mô hình này thể hiện xuất sắc trong nhiều nhiệm vụ như hỏi đáp hình ảnh, nhận diện ký tự quang học, hiểu tài liệu/bảng/biểu đồ và định vị hình ảnh."
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "Phiên bản GPT-5 nhanh nhất và tiết kiệm chi phí nhất. Rất phù hợp cho các ứng dụng cần phản hồi nhanh và nhạy cảm về chi phí."
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 pro sử dụng nhiều tài nguyên tính toán hơn để suy nghĩ sâu sắc hơn và liên tục cung cấp các câu trả lời tốt hơn."
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio là mô hình trò chuyện chung hỗ trợ đầu vào và đầu ra âm thanh, có thể sử dụng âm thanh I/O trong API Chat Completions."
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "Mô hình tạo hình ảnh đa phương thức nguyên bản của ChatGPT"
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "Phiên bản tiết kiệm chi phí hơn của GPT Image 1, hỗ trợ gốc đầu vào văn bản và hình ảnh, đồng thời tạo đầu ra hình ảnh."
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4: Cấu trúc Transformer được lượng tử hóa, duy trì hiệu suất mạnh mẽ ngay cả khi tài nguyên hạn chế."
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1:下一代推理模型,提升了复杂推理与链路思考能力,适合需要深入分析的任务。"
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1:下一代推理模型,提升了复杂推理与链路思考能力,适合需要深入分析的任务。"
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 是一个基于 DeepSeekMoE-27B 开发的混合专家(MoE)视觉语言模型,采用稀疏激活的 MoE 架构,在仅激活 4.5B 参数的情况下实现了卓越性能。该模型在视觉问答、光学字符识别、文档/表格/图表理解和视觉定位等多个任务中表现优异。"
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "最快、最经济高效的 GPT-5 版本。非常适合需要快速响应且成本敏感的应用场景。"
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 pro 使用更多计算来更深入地思考,并持续提供更好的答案。"
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio 是面向音频输入输出的通用聊天模型,支持在 Chat Completions API 中使用音频 I/O。"
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "ChatGPT 原生多模态图片生成模型"
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "成本更低的 GPT Image 1 版本,原生支持文本与图像输入并生成图像输出。"
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4 量化的 Transformer 结构,在资源受限时仍能保持强劲性能。"
1741
1750
  },
@@ -947,6 +947,9 @@
947
947
  "deepseek-ai/deepseek-v3.1": {
948
948
  "description": "DeepSeek V3.1:下一代推理模型,提升了複雜推理與鏈路思考能力,適合需要深入分析的任務。"
949
949
  },
950
+ "deepseek-ai/deepseek-v3.1-terminus": {
951
+ "description": "DeepSeek V3.1:新一代推理模型,強化了複雜推理與鏈式思考能力,適用於需要深入分析的任務。"
952
+ },
950
953
  "deepseek-ai/deepseek-vl2": {
951
954
  "description": "DeepSeek-VL2 是一個基於 DeepSeekMoE-27B 開發的混合專家(MoE)視覺語言模型,採用稀疏激活的 MoE 架構,在僅激活 4.5B 參數的情況下實現了卓越性能。該模型在視覺問答、光學字符識別、文檔/表格/圖表理解和視覺定位等多個任務中表現優異。"
952
955
  },
@@ -1730,12 +1733,18 @@
1730
1733
  "gpt-5-nano": {
1731
1734
  "description": "最快、最經濟高效的 GPT-5 版本。非常適合需要快速回應且成本敏感的應用場景。"
1732
1735
  },
1736
+ "gpt-5-pro": {
1737
+ "description": "GPT-5 pro 運用更多運算資源進行更深入的思考,持續提供更優質的答案。"
1738
+ },
1733
1739
  "gpt-audio": {
1734
1740
  "description": "GPT Audio 是面向音訊輸入輸出的通用聊天模型,支援在 Chat Completions API 中使用音訊 I/O。"
1735
1741
  },
1736
1742
  "gpt-image-1": {
1737
1743
  "description": "ChatGPT 原生多模態圖片生成模型"
1738
1744
  },
1745
+ "gpt-image-1-mini": {
1746
+ "description": "成本更低的 GPT Image 1 版本,原生支援文字與圖像輸入,並可產生圖像輸出。"
1747
+ },
1739
1748
  "gpt-oss-120b": {
1740
1749
  "description": "GPT-OSS-120B MXFP4 量化的 Transformer 結構,在資源受限時仍能保持強勁性能。"
1741
1750
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.135.4",
3
+ "version": "1.135.6",
4
4
  "description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
5
5
  "keywords": [
6
6
  "framework",