@lobehub/lobehub 2.0.0-next.60 → 2.0.0-next.62
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/CHANGELOG.md +50 -0
- package/changelog/v1.json +14 -0
- package/locales/ar/chat.json +2 -0
- package/locales/ar/file.json +2 -0
- package/locales/ar/models.json +17 -2
- package/locales/ar/tool.json +8 -0
- package/locales/bg-BG/chat.json +2 -0
- package/locales/bg-BG/file.json +2 -0
- package/locales/bg-BG/models.json +17 -2
- package/locales/bg-BG/tool.json +8 -0
- package/locales/de-DE/chat.json +2 -0
- package/locales/de-DE/file.json +2 -0
- package/locales/de-DE/models.json +17 -2
- package/locales/de-DE/tool.json +8 -0
- package/locales/en-US/chat.json +2 -0
- package/locales/en-US/file.json +2 -0
- package/locales/en-US/models.json +17 -2
- package/locales/en-US/tool.json +8 -0
- package/locales/es-ES/chat.json +2 -0
- package/locales/es-ES/file.json +2 -0
- package/locales/es-ES/models.json +17 -2
- package/locales/es-ES/tool.json +8 -0
- package/locales/fa-IR/chat.json +2 -0
- package/locales/fa-IR/file.json +2 -0
- package/locales/fa-IR/models.json +17 -2
- package/locales/fa-IR/tool.json +8 -0
- package/locales/fr-FR/chat.json +2 -0
- package/locales/fr-FR/file.json +2 -0
- package/locales/fr-FR/models.json +17 -2
- package/locales/fr-FR/tool.json +8 -0
- package/locales/it-IT/chat.json +2 -0
- package/locales/it-IT/file.json +2 -0
- package/locales/it-IT/models.json +17 -2
- package/locales/it-IT/tool.json +8 -0
- package/locales/ja-JP/chat.json +2 -0
- package/locales/ja-JP/file.json +2 -0
- package/locales/ja-JP/models.json +17 -2
- package/locales/ja-JP/tool.json +8 -0
- package/locales/ko-KR/chat.json +2 -0
- package/locales/ko-KR/file.json +2 -0
- package/locales/ko-KR/models.json +17 -2
- package/locales/ko-KR/tool.json +8 -0
- package/locales/nl-NL/chat.json +2 -0
- package/locales/nl-NL/file.json +2 -0
- package/locales/nl-NL/models.json +17 -2
- package/locales/nl-NL/tool.json +8 -0
- package/locales/pl-PL/chat.json +2 -0
- package/locales/pl-PL/file.json +2 -0
- package/locales/pl-PL/models.json +17 -2
- package/locales/pl-PL/tool.json +8 -0
- package/locales/pt-BR/chat.json +2 -0
- package/locales/pt-BR/file.json +2 -0
- package/locales/pt-BR/models.json +17 -2
- package/locales/pt-BR/tool.json +8 -0
- package/locales/ru-RU/chat.json +2 -0
- package/locales/ru-RU/file.json +2 -0
- package/locales/ru-RU/models.json +17 -2
- package/locales/ru-RU/tool.json +8 -0
- package/locales/tr-TR/chat.json +2 -0
- package/locales/tr-TR/file.json +2 -0
- package/locales/tr-TR/models.json +17 -2
- package/locales/tr-TR/tool.json +8 -0
- package/locales/vi-VN/chat.json +2 -0
- package/locales/vi-VN/file.json +2 -0
- package/locales/vi-VN/models.json +17 -2
- package/locales/vi-VN/tool.json +8 -0
- package/locales/zh-CN/chat.json +2 -0
- package/locales/zh-CN/file.json +2 -0
- package/locales/zh-CN/models.json +17 -2
- package/locales/zh-CN/tool.json +8 -0
- package/locales/zh-TW/chat.json +2 -0
- package/locales/zh-TW/file.json +2 -0
- package/locales/zh-TW/models.json +17 -2
- package/locales/zh-TW/tool.json +8 -0
- package/package.json +1 -1
- 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/oauthHandoff.ts +19 -19
- package/packages/database/src/models/session.ts +10 -10
- package/packages/database/src/models/topic.ts +10 -10
- 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/libs/trpc/utils/request-adapter.ts +20 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,56 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 2.0.0-next.62](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.61...v2.0.0-next.62)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2025-11-15**</sup>
|
|
8
|
+
|
|
9
|
+
#### 🐛 Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **next16**: Resolve 'Response body object should not be disturbed or locked' error.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### What's fixed
|
|
19
|
+
|
|
20
|
+
- **next16**: Resolve 'Response body object should not be disturbed or locked' error, closes [#10226](https://github.com/lobehub/lobe-chat/issues/10226) ([caa9c78](https://github.com/lobehub/lobe-chat/commit/caa9c78))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
## [Version 2.0.0-next.61](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.60...v2.0.0-next.61)
|
|
31
|
+
|
|
32
|
+
<sup>Released on **2025-11-15**</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 [#10224](https://github.com/lobehub/lobe-chat/issues/10224) ([ca7551f](https://github.com/lobehub/lobe-chat/commit/ca7551f))
|
|
46
|
+
|
|
47
|
+
</details>
|
|
48
|
+
|
|
49
|
+
<div align="right">
|
|
50
|
+
|
|
51
|
+
[](#readme-top)
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
|
|
5
55
|
## [Version 2.0.0-next.60](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.59...v2.0.0-next.60)
|
|
6
56
|
|
|
7
57
|
<sup>Released on **2025-11-14**</sup>
|
package/changelog/v1.json
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"children": {},
|
|
4
|
+
"date": "2025-11-15",
|
|
5
|
+
"version": "2.0.0-next.62"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"children": {
|
|
9
|
+
"improvements": [
|
|
10
|
+
"Update i18n."
|
|
11
|
+
]
|
|
12
|
+
},
|
|
13
|
+
"date": "2025-11-15",
|
|
14
|
+
"version": "2.0.0-next.61"
|
|
15
|
+
},
|
|
2
16
|
{
|
|
3
17
|
"children": {
|
|
4
18
|
"fixes": [
|
package/locales/ar/chat.json
CHANGED
|
@@ -383,6 +383,8 @@
|
|
|
383
383
|
"manualDesc": "يتطلب الموافقة اليدوية في كل مرة يتم فيها الاستدعاء"
|
|
384
384
|
},
|
|
385
385
|
"reject": "رفض",
|
|
386
|
+
"rejectAndContinue": "رفض ثم إعادة المحاولة",
|
|
387
|
+
"rejectOnly": "رفض",
|
|
386
388
|
"rejectReasonPlaceholder": "إدخال سبب الرفض سيساعد الوكيل على الفهم وتحسين الإجراءات المستقبلية",
|
|
387
389
|
"rejectTitle": "رفض استدعاء الأداة هذه المرة",
|
|
388
390
|
"rejectedWithReason": "تم رفض استدعاء الأداة هذه المرة بشكل يدوي: {{reason}}",
|
package/locales/ar/file.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"addFolder": "إنشاء مجلد",
|
|
2
3
|
"addKnowledge": "إضافة معرفة",
|
|
3
4
|
"addPage": "إنشاء مستند",
|
|
4
5
|
"desc": "نظّم معرفتك في العمل، الدراسة والحياة.",
|
|
@@ -65,6 +66,7 @@
|
|
|
65
66
|
"header": {
|
|
66
67
|
"actions": {
|
|
67
68
|
"newFolder": "إنشاء مجلد جديد",
|
|
69
|
+
"newPage": "مستند جديد",
|
|
68
70
|
"uploadFile": "رفع ملف",
|
|
69
71
|
"uploadFolder": "رفع مجلد"
|
|
70
72
|
},
|
package/locales/ar/models.json
CHANGED
|
@@ -1853,6 +1853,18 @@
|
|
|
1853
1853
|
"gpt-5-pro": {
|
|
1854
1854
|
"description": "يستخدم GPT-5 pro قدرة حسابية أكبر للتفكير بشكل أعمق، ويواصل تقديم إجابات أفضل باستمرار."
|
|
1855
1855
|
},
|
|
1856
|
+
"gpt-5.1": {
|
|
1857
|
+
"description": "GPT-5.1 — نموذج رائد مُحسَّن لمهام البرمجة والوكلاء، يدعم قوة استدلال قابلة للتخصيص وسياقًا أطول."
|
|
1858
|
+
},
|
|
1859
|
+
"gpt-5.1-chat-latest": {
|
|
1860
|
+
"description": "GPT-5.1 Chat: إصدار GPT-5.1 مخصص لـ ChatGPT، مثالي لسيناريوهات المحادثة."
|
|
1861
|
+
},
|
|
1862
|
+
"gpt-5.1-codex": {
|
|
1863
|
+
"description": "GPT-5.1 Codex: إصدار من GPT-5.1 مُحسَّن لمهام البرمجة القائمة على الوكلاء، يمكن استخدامه في واجهة Responses API لتدفقات عمل أكثر تعقيدًا في البرمجة والوكلاء."
|
|
1864
|
+
},
|
|
1865
|
+
"gpt-5.1-codex-mini": {
|
|
1866
|
+
"description": "GPT-5.1 Codex mini: إصدار مصغر ومنخفض التكلفة من Codex، مُحسَّن لمهام البرمجة القائمة على الوكلاء."
|
|
1867
|
+
},
|
|
1856
1868
|
"gpt-audio": {
|
|
1857
1869
|
"description": "GPT Audio هو نموذج دردشة عام موجه لإدخال وإخراج الصوت، ويدعم استخدام الصوت في واجهة برمجة تطبيقات Chat Completions."
|
|
1858
1870
|
},
|
|
@@ -2028,13 +2040,13 @@
|
|
|
2028
2040
|
"description": "سلسلة نماذج Imagen لتحويل النص إلى صورة من الجيل الرابع"
|
|
2029
2041
|
},
|
|
2030
2042
|
"imagen-4.0-generate-preview-06-06": {
|
|
2031
|
-
"description": "سلسلة
|
|
2043
|
+
"description": "سلسلة نماذج Imagen من الجيل الرابع لتحويل النص إلى صورة"
|
|
2032
2044
|
},
|
|
2033
2045
|
"imagen-4.0-ultra-generate-001": {
|
|
2034
2046
|
"description": "سلسلة نماذج Imagen لتحويل النص إلى صورة من الجيل الرابع — إصدار Ultra"
|
|
2035
2047
|
},
|
|
2036
2048
|
"imagen-4.0-ultra-generate-preview-06-06": {
|
|
2037
|
-
"description": "
|
|
2049
|
+
"description": "النسخة Ultra من سلسلة نماذج Imagen من الجيل الرابع لتحويل النص إلى صورة"
|
|
2038
2050
|
},
|
|
2039
2051
|
"inception/mercury-coder-small": {
|
|
2040
2052
|
"description": "Mercury Coder Small هو الخيار المثالي لمهام توليد الكود، وتصحيح الأخطاء، وإعادة الهيكلة، مع أدنى تأخير."
|
|
@@ -3092,6 +3104,9 @@
|
|
|
3092
3104
|
"qwen3-max": {
|
|
3093
3105
|
"description": "سلسلة نماذج Tongyi Qianwen 3 Max، التي تحسنت بشكل كبير مقارنة بسلسلة 2.5 في القدرات العامة، فهم النصوص باللغتين الصينية والإنجليزية، اتباع التعليمات المعقدة، المهام المفتوحة الذاتية، القدرات متعددة اللغات، واستدعاء الأدوات؛ مع تقليل الأوهام المعرفية للنموذج. النسخة الأحدث من qwen3-max: مقارنةً بنسخة qwen3-max-preview، تم ترقية خاصة في برمجة الوكلاء واستدعاء الأدوات. النسخة الرسمية المنشورة وصلت إلى مستوى SOTA في المجال، وتلبي احتياجات الوكلاء في سيناريوهات أكثر تعقيدًا."
|
|
3094
3106
|
},
|
|
3107
|
+
"qwen3-max-preview": {
|
|
3108
|
+
"description": "أفضل نموذج في سلسلة Tongyi Qianwen، مناسب للمهام المعقدة ومتعددة الخطوات. يدعم التفكير في الإصدار التجريبي."
|
|
3109
|
+
},
|
|
3095
3110
|
"qwen3-next-80b-a3b-instruct": {
|
|
3096
3111
|
"description": "نموذج مفتوح المصدر من الجيل الجديد لوضع عدم التفكير مبني على Qwen3، يتميز بفهم أفضل للنصوص الصينية مقارنة بالإصدار السابق (Tongyi Qianwen 3-235B-A22B-Instruct-2507)، مع تعزيز في قدرات الاستدلال المنطقي وأداء أفضل في مهام توليد النصوص."
|
|
3097
3112
|
},
|
package/locales/ar/tool.json
CHANGED
|
@@ -17,6 +17,14 @@
|
|
|
17
17
|
"localFiles": {
|
|
18
18
|
"file": "ملف",
|
|
19
19
|
"folder": "مجلد",
|
|
20
|
+
"moveFiles": {
|
|
21
|
+
"itemsMoved": "تم نقل {{count}} عنصر:",
|
|
22
|
+
"itemsMoved_one": "تم نقل {{count}} عنصر:",
|
|
23
|
+
"itemsMoved_other": "تم نقل {{count}} عنصر:",
|
|
24
|
+
"itemsToMove": "{{count}} عنصر في انتظار النقل:",
|
|
25
|
+
"itemsToMove_one": "{{count}} عنصر في انتظار النقل:",
|
|
26
|
+
"itemsToMove_other": "{{count}} عنصر في انتظار النقل:"
|
|
27
|
+
},
|
|
20
28
|
"open": "فتح",
|
|
21
29
|
"openFile": "فتح ملف",
|
|
22
30
|
"openFolder": "فتح مجلد",
|
package/locales/bg-BG/chat.json
CHANGED
|
@@ -383,6 +383,8 @@
|
|
|
383
383
|
"manualDesc": "Необходимо е ръчно одобрение при всяко извикване"
|
|
384
384
|
},
|
|
385
385
|
"reject": "Отхвърляне",
|
|
386
|
+
"rejectAndContinue": "Откажи и опитай отново",
|
|
387
|
+
"rejectOnly": "Откажи",
|
|
386
388
|
"rejectReasonPlaceholder": "Въведете причина за отхвърляне, за да помогнете на агента да разбере и подобри бъдещите действия",
|
|
387
389
|
"rejectTitle": "Отхвърляне на това извикване на инструмент",
|
|
388
390
|
"rejectedWithReason": "Това извикване на инструмент беше умишлено отхвърлено: {{reason}}",
|
package/locales/bg-BG/file.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"addFolder": "Създаване на папка",
|
|
2
3
|
"addKnowledge": "Добавяне на знание",
|
|
3
4
|
"addPage": "Създаване на документ",
|
|
4
5
|
"desc": "Управлявайте знанията си за работа, учене и живот.",
|
|
@@ -65,6 +66,7 @@
|
|
|
65
66
|
"header": {
|
|
66
67
|
"actions": {
|
|
67
68
|
"newFolder": "Нова папка",
|
|
69
|
+
"newPage": "Създаване на нов документ",
|
|
68
70
|
"uploadFile": "Качване на файл",
|
|
69
71
|
"uploadFolder": "Качване на папка"
|
|
70
72
|
},
|
|
@@ -1853,6 +1853,18 @@
|
|
|
1853
1853
|
"gpt-5-pro": {
|
|
1854
1854
|
"description": "GPT-5 pro използва повече изчислителна мощност за по-задълбочено мислене и постоянно предоставя по-добри отговори."
|
|
1855
1855
|
},
|
|
1856
|
+
"gpt-5.1": {
|
|
1857
|
+
"description": "GPT-5.1 — флагмански модел, оптимизиран за кодиране и задачи с агенти, поддържа конфигурируема интензивност на разсъждение и по-дълъг контекст."
|
|
1858
|
+
},
|
|
1859
|
+
"gpt-5.1-chat-latest": {
|
|
1860
|
+
"description": "GPT-5.1 Chat: вариант на GPT-5.1 за ChatGPT, подходящ за чат сценарии."
|
|
1861
|
+
},
|
|
1862
|
+
"gpt-5.1-codex": {
|
|
1863
|
+
"description": "GPT-5.1 Codex: версия на GPT-5.1, оптимизирана за агентски задачи по кодиране, използваема в Responses API за по-сложни работни потоци с код и агенти."
|
|
1864
|
+
},
|
|
1865
|
+
"gpt-5.1-codex-mini": {
|
|
1866
|
+
"description": "GPT-5.1 Codex mini: по-компактен и икономичен вариант на Codex, оптимизиран за агентски задачи по кодиране."
|
|
1867
|
+
},
|
|
1856
1868
|
"gpt-audio": {
|
|
1857
1869
|
"description": "GPT Audio е универсален чат модел, ориентиран към аудио вход и изход, поддържащ използване на аудио I/O в Chat Completions API."
|
|
1858
1870
|
},
|
|
@@ -2028,13 +2040,13 @@
|
|
|
2028
2040
|
"description": "Imagen: серия от модели от 4-то поколение за генериране на изображения от текст"
|
|
2029
2041
|
},
|
|
2030
2042
|
"imagen-4.0-generate-preview-06-06": {
|
|
2031
|
-
"description": "Imagen
|
|
2043
|
+
"description": "Четвърто поколение модели Imagen за генериране на изображения от текст."
|
|
2032
2044
|
},
|
|
2033
2045
|
"imagen-4.0-ultra-generate-001": {
|
|
2034
2046
|
"description": "Imagen, 4-то поколение модел за преобразуване на текст в изображение, серия Ultra"
|
|
2035
2047
|
},
|
|
2036
2048
|
"imagen-4.0-ultra-generate-preview-06-06": {
|
|
2037
|
-
"description": "
|
|
2049
|
+
"description": "Ultra версия на четвъртото поколение модели Imagen за генериране на изображения от текст."
|
|
2038
2050
|
},
|
|
2039
2051
|
"inception/mercury-coder-small": {
|
|
2040
2052
|
"description": "Mercury Coder Small е идеален за задачи по генериране, отстраняване на грешки и рефакториране на код с минимална латентност."
|
|
@@ -3092,6 +3104,9 @@
|
|
|
3092
3104
|
"qwen3-max": {
|
|
3093
3105
|
"description": "Серията Max на Tongyi Qianwen 3 предлага значително подобрена обща способност в сравнение с серия 2.5, с подобрено разбиране на текст на китайски и английски, способност за следване на сложни инструкции, умения за субективни отворени задачи, многоезични възможности и повишена способност за извикване на инструменти; моделът демонстрира по-малко халюцинации на знания. Последният модел qwen3-max включва специални подобрения в програмирането на агенти и извикването на инструменти в сравнение с версията qwen3-max-preview. Официалната версия, публикувана сега, достига SOTA ниво в своята област и е адаптирана за по-сложни изисквания на интелигентни агенти."
|
|
3094
3106
|
},
|
|
3107
|
+
"qwen3-max-preview": {
|
|
3108
|
+
"description": "Най-ефективният модел от серията Tongyi Qianwen, подходящ за сложни и многоетапни задачи. Прегледната версия вече поддържа разсъждение."
|
|
3109
|
+
},
|
|
3095
3110
|
"qwen3-next-80b-a3b-instruct": {
|
|
3096
3111
|
"description": "Базирано на Qwen3, ново поколение отворен модел без мисловен режим, който предлага по-добро разбиране на китайски текстове, подобрени логически умения и по-добри резултати при задачи за генериране на текст в сравнение с предишната версия (Tongyi Qianwen 3-235B-A22B-Instruct-2507)."
|
|
3097
3112
|
},
|
package/locales/bg-BG/tool.json
CHANGED
|
@@ -17,6 +17,14 @@
|
|
|
17
17
|
"localFiles": {
|
|
18
18
|
"file": "Файл",
|
|
19
19
|
"folder": "Папка",
|
|
20
|
+
"moveFiles": {
|
|
21
|
+
"itemsMoved": "Преместени {{count}} елемента:",
|
|
22
|
+
"itemsMoved_one": "Преместен {{count}} елемент:",
|
|
23
|
+
"itemsMoved_other": "Преместени {{count}} елемента:",
|
|
24
|
+
"itemsToMove": "{{count}} елемента за преместване:",
|
|
25
|
+
"itemsToMove_one": "{{count}} елемент за преместване:",
|
|
26
|
+
"itemsToMove_other": "{{count}} елемента за преместване:"
|
|
27
|
+
},
|
|
20
28
|
"open": "Отвори",
|
|
21
29
|
"openFile": "Отвори файл",
|
|
22
30
|
"openFolder": "Отвори папка",
|
package/locales/de-DE/chat.json
CHANGED
|
@@ -383,6 +383,8 @@
|
|
|
383
383
|
"manualDesc": "Jede Ausführung muss manuell genehmigt werden"
|
|
384
384
|
},
|
|
385
385
|
"reject": "Ablehnen",
|
|
386
|
+
"rejectAndContinue": "Ablehnen und erneut ausführen",
|
|
387
|
+
"rejectOnly": "Ablehnen",
|
|
386
388
|
"rejectReasonPlaceholder": "Die Angabe eines Ablehnungsgrundes hilft dem Agenten, zukünftige Aktionen zu verbessern",
|
|
387
389
|
"rejectTitle": "Tool-Ausführung ablehnen",
|
|
388
390
|
"rejectedWithReason": "Die Tool-Ausführung wurde abgelehnt: {{reason}}",
|
package/locales/de-DE/file.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"addFolder": "Ordner erstellen",
|
|
2
3
|
"addKnowledge": "Wissen hinzufügen",
|
|
3
4
|
"addPage": "Dokument erstellen",
|
|
4
5
|
"desc": "Verwalte dein Wissen für Arbeit, Studium und Alltag.",
|
|
@@ -65,6 +66,7 @@
|
|
|
65
66
|
"header": {
|
|
66
67
|
"actions": {
|
|
67
68
|
"newFolder": "Neuen Ordner erstellen",
|
|
69
|
+
"newPage": "Neues Dokument",
|
|
68
70
|
"uploadFile": "Datei hochladen",
|
|
69
71
|
"uploadFolder": "Ordner hochladen"
|
|
70
72
|
},
|
|
@@ -1853,6 +1853,18 @@
|
|
|
1853
1853
|
"gpt-5-pro": {
|
|
1854
1854
|
"description": "GPT-5 Pro nutzt mehr Rechenleistung für tiefgreifendere Überlegungen und liefert kontinuierlich bessere Antworten."
|
|
1855
1855
|
},
|
|
1856
|
+
"gpt-5.1": {
|
|
1857
|
+
"description": "GPT-5.1 – Flaggschiffmodell, optimiert für Programmier- und Agentenaufgaben, unterstützt konfigurierbare Rechenintensität und längere Kontexte."
|
|
1858
|
+
},
|
|
1859
|
+
"gpt-5.1-chat-latest": {
|
|
1860
|
+
"description": "GPT-5.1 Chat: Eine Variante von GPT-5.1 für ChatGPT, ideal für Konversationsszenarien."
|
|
1861
|
+
},
|
|
1862
|
+
"gpt-5.1-codex": {
|
|
1863
|
+
"description": "GPT-5.1 Codex: Eine für agentenbasierte Programmieraufgaben optimierte Version von GPT-5.1, geeignet für komplexe Code- und Agenten-Workflows über die Responses API."
|
|
1864
|
+
},
|
|
1865
|
+
"gpt-5.1-codex-mini": {
|
|
1866
|
+
"description": "GPT-5.1 Codex mini: Eine kompaktere und kostengünstigere Codex-Variante, optimiert für agentenbasierte Programmieraufgaben."
|
|
1867
|
+
},
|
|
1856
1868
|
"gpt-audio": {
|
|
1857
1869
|
"description": "GPT Audio ist ein universelles Chatmodell für Audioeingabe und -ausgabe, das Audio-I/O in der Chat Completions API unterstützt."
|
|
1858
1870
|
},
|
|
@@ -2028,13 +2040,13 @@
|
|
|
2028
2040
|
"description": "Imagen, Text-zu-Bild-Modellreihe der 4. Generation"
|
|
2029
2041
|
},
|
|
2030
2042
|
"imagen-4.0-generate-preview-06-06": {
|
|
2031
|
-
"description": "Imagen
|
|
2043
|
+
"description": "Vierte Generation der Imagen-Modelle zur Text-zu-Bild-Generierung."
|
|
2032
2044
|
},
|
|
2033
2045
|
"imagen-4.0-ultra-generate-001": {
|
|
2034
2046
|
"description": "Imagen, Text-zu-Bild-Modell der 4. Generation (Ultra-Version)"
|
|
2035
2047
|
},
|
|
2036
2048
|
"imagen-4.0-ultra-generate-preview-06-06": {
|
|
2037
|
-
"description": "
|
|
2049
|
+
"description": "Ultra-Version der vierten Generation der Imagen-Modelle zur Text-zu-Bild-Generierung."
|
|
2038
2050
|
},
|
|
2039
2051
|
"inception/mercury-coder-small": {
|
|
2040
2052
|
"description": "Mercury Coder Small ist ideal für Codegenerierung, Debugging und Refactoring-Aufgaben mit minimaler Latenz."
|
|
@@ -3092,6 +3104,9 @@
|
|
|
3092
3104
|
"qwen3-max": {
|
|
3093
3105
|
"description": "Tongyi Qianwen 3 Max Modellserie, die im Vergleich zur 2.5 Serie eine deutliche Verbesserung der allgemeinen Fähigkeiten bietet, einschließlich verbesserter Textverständnisfähigkeiten in Chinesisch und Englisch, komplexer Befolgung von Anweisungen, subjektiver offener Aufgaben, Mehrsprachigkeit und Tool-Integration; das Modell zeigt weniger Wissenshalluzinationen. Die neueste qwen3-max Version wurde speziell im Bereich Agentenprogrammierung und Tool-Integration weiterentwickelt. Die offizielle Veröffentlichung erreicht SOTA-Niveau in Fachgebieten und ist für komplexere Agentenanforderungen optimiert."
|
|
3094
3106
|
},
|
|
3107
|
+
"qwen3-max-preview": {
|
|
3108
|
+
"description": "Das leistungsstärkste Modell der Tongyi Qianwen-Serie, geeignet für komplexe, mehrstufige Aufgaben. Vorschauversion mit Denkfähigkeit."
|
|
3109
|
+
},
|
|
3095
3110
|
"qwen3-next-80b-a3b-instruct": {
|
|
3096
3111
|
"description": "Ein neues Open-Source-Modell der nächsten Generation im Nicht-Denk-Modus basierend auf Qwen3. Im Vergleich zur vorherigen Version (Tongyi Qianwen 3-235B-A22B-Instruct-2507) bietet es eine verbesserte chinesische Textverständnisfähigkeit, verstärkte logische Schlussfolgerungen und bessere Leistung bei textgenerierenden Aufgaben."
|
|
3097
3112
|
},
|
package/locales/de-DE/tool.json
CHANGED
|
@@ -17,6 +17,14 @@
|
|
|
17
17
|
"localFiles": {
|
|
18
18
|
"file": "Datei",
|
|
19
19
|
"folder": "Ordner",
|
|
20
|
+
"moveFiles": {
|
|
21
|
+
"itemsMoved": "{{count}} Elemente wurden verschoben:",
|
|
22
|
+
"itemsMoved_one": "{{count}} Element wurde verschoben:",
|
|
23
|
+
"itemsMoved_other": "{{count}} Elemente wurden verschoben:",
|
|
24
|
+
"itemsToMove": "{{count}} Elemente zum Verschieben:",
|
|
25
|
+
"itemsToMove_one": "{{count}} Element zum Verschieben:",
|
|
26
|
+
"itemsToMove_other": "{{count}} Elemente zum Verschieben:"
|
|
27
|
+
},
|
|
20
28
|
"open": "Öffnen",
|
|
21
29
|
"openFile": "Datei öffnen",
|
|
22
30
|
"openFolder": "Ordner öffnen",
|
package/locales/en-US/chat.json
CHANGED
|
@@ -383,6 +383,8 @@
|
|
|
383
383
|
"manualDesc": "Manual approval required for each invocation"
|
|
384
384
|
},
|
|
385
385
|
"reject": "Reject",
|
|
386
|
+
"rejectAndContinue": "Reject and Retry",
|
|
387
|
+
"rejectOnly": "Reject",
|
|
386
388
|
"rejectReasonPlaceholder": "Providing a reason will help the Agent understand and improve future actions",
|
|
387
389
|
"rejectTitle": "Reject This Tool Invocation",
|
|
388
390
|
"rejectedWithReason": "This tool invocation was actively rejected: {{reason}}",
|
package/locales/en-US/file.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"addFolder": "Create Folder",
|
|
2
3
|
"addKnowledge": "Add Knowledge",
|
|
3
4
|
"addPage": "Create Document",
|
|
4
5
|
"desc": "Manage your knowledge for work, study, and life.",
|
|
@@ -65,6 +66,7 @@
|
|
|
65
66
|
"header": {
|
|
66
67
|
"actions": {
|
|
67
68
|
"newFolder": "New Folder",
|
|
69
|
+
"newPage": "New Document",
|
|
68
70
|
"uploadFile": "Upload File",
|
|
69
71
|
"uploadFolder": "Upload Folder"
|
|
70
72
|
},
|
|
@@ -1853,6 +1853,18 @@
|
|
|
1853
1853
|
"gpt-5-pro": {
|
|
1854
1854
|
"description": "GPT-5 Pro leverages greater computational power for deeper reasoning and consistently delivers improved answers."
|
|
1855
1855
|
},
|
|
1856
|
+
"gpt-5.1": {
|
|
1857
|
+
"description": "GPT-5.1 — A flagship model optimized for coding and agent tasks, featuring configurable reasoning strength and extended context support."
|
|
1858
|
+
},
|
|
1859
|
+
"gpt-5.1-chat-latest": {
|
|
1860
|
+
"description": "GPT-5.1 Chat: A variant of GPT-5.1 tailored for ChatGPT, ideal for conversational scenarios."
|
|
1861
|
+
},
|
|
1862
|
+
"gpt-5.1-codex": {
|
|
1863
|
+
"description": "GPT-5.1 Codex: A GPT-5.1 variant optimized for agentic coding tasks, designed for more complex code/agent workflows via the Responses API."
|
|
1864
|
+
},
|
|
1865
|
+
"gpt-5.1-codex-mini": {
|
|
1866
|
+
"description": "GPT-5.1 Codex mini: A smaller, more cost-effective Codex variant optimized for agentic coding tasks."
|
|
1867
|
+
},
|
|
1856
1868
|
"gpt-audio": {
|
|
1857
1869
|
"description": "GPT Audio is a general-purpose chat model designed for audio input and output, supporting audio I/O in the Chat Completions API."
|
|
1858
1870
|
},
|
|
@@ -2028,13 +2040,13 @@
|
|
|
2028
2040
|
"description": "Imagen 4th-generation text-to-image model series"
|
|
2029
2041
|
},
|
|
2030
2042
|
"imagen-4.0-generate-preview-06-06": {
|
|
2031
|
-
"description": "Imagen 4th
|
|
2043
|
+
"description": "Imagen 4th-generation text-to-image model series."
|
|
2032
2044
|
},
|
|
2033
2045
|
"imagen-4.0-ultra-generate-001": {
|
|
2034
2046
|
"description": "Imagen 4th-generation text-to-image model, Ultra version"
|
|
2035
2047
|
},
|
|
2036
2048
|
"imagen-4.0-ultra-generate-preview-06-06": {
|
|
2037
|
-
"description": "
|
|
2049
|
+
"description": "Ultra version of the 4th-generation Imagen text-to-image model series."
|
|
2038
2050
|
},
|
|
2039
2051
|
"inception/mercury-coder-small": {
|
|
2040
2052
|
"description": "Mercury Coder Small is ideal for code generation, debugging, and refactoring tasks, offering minimal latency."
|
|
@@ -3092,6 +3104,9 @@
|
|
|
3092
3104
|
"qwen3-max": {
|
|
3093
3105
|
"description": "Tongyi Qianwen 3 series Max model, which shows significant overall improvements compared to the 2.5 series, including enhanced bilingual (Chinese and English) text understanding, complex instruction following, subjective open-domain task capabilities, multilingual support, and tool invocation abilities; the model also exhibits fewer hallucinations. The latest qwen3-max model features specialized upgrades in agent programming and tool invocation compared to the qwen3-max-preview version. The officially released model achieves state-of-the-art performance in its domain and is adapted to more complex agent scenarios."
|
|
3094
3106
|
},
|
|
3107
|
+
"qwen3-max-preview": {
|
|
3108
|
+
"description": "The most advanced model in the Qwen series, ideal for complex, multi-step tasks. Preview version now supports reasoning."
|
|
3109
|
+
},
|
|
3095
3110
|
"qwen3-next-80b-a3b-instruct": {
|
|
3096
3111
|
"description": "A new generation of non-thinking mode open-source model based on Qwen3. Compared to the previous version (Tongyi Qianwen 3-235B-A22B-Instruct-2507), it offers better Chinese text comprehension, enhanced logical reasoning abilities, and improved performance in text generation tasks."
|
|
3097
3112
|
},
|
package/locales/en-US/tool.json
CHANGED
|
@@ -17,6 +17,14 @@
|
|
|
17
17
|
"localFiles": {
|
|
18
18
|
"file": "File",
|
|
19
19
|
"folder": "Folder",
|
|
20
|
+
"moveFiles": {
|
|
21
|
+
"itemsMoved": "{{count}} item(s) moved:",
|
|
22
|
+
"itemsMoved_one": "{{count}} item moved:",
|
|
23
|
+
"itemsMoved_other": "{{count}} items moved:",
|
|
24
|
+
"itemsToMove": "{{count}} item(s) to move:",
|
|
25
|
+
"itemsToMove_one": "{{count}} item to move:",
|
|
26
|
+
"itemsToMove_other": "{{count}} items to move:"
|
|
27
|
+
},
|
|
20
28
|
"open": "Open",
|
|
21
29
|
"openFile": "Open File",
|
|
22
30
|
"openFolder": "Open Folder",
|
package/locales/es-ES/chat.json
CHANGED
|
@@ -383,6 +383,8 @@
|
|
|
383
383
|
"manualDesc": "Se requiere aprobación manual para cada ejecución"
|
|
384
384
|
},
|
|
385
385
|
"reject": "Rechazar",
|
|
386
|
+
"rejectAndContinue": "Rechazar y volver a intentar",
|
|
387
|
+
"rejectOnly": "Rechazar",
|
|
386
388
|
"rejectReasonPlaceholder": "Ingresar una razón ayudará al agente a comprender y mejorar futuras acciones",
|
|
387
389
|
"rejectTitle": "Rechazar esta ejecución de herramienta",
|
|
388
390
|
"rejectedWithReason": "Esta ejecución de herramienta fue rechazada: {{reason}}",
|
package/locales/es-ES/file.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"addFolder": "Crear carpeta",
|
|
2
3
|
"addKnowledge": "Agregar conocimiento",
|
|
3
4
|
"addPage": "Crear documento",
|
|
4
5
|
"desc": "Gestiona tus conocimientos de trabajo, estudio y vida.",
|
|
@@ -65,6 +66,7 @@
|
|
|
65
66
|
"header": {
|
|
66
67
|
"actions": {
|
|
67
68
|
"newFolder": "Nueva carpeta",
|
|
69
|
+
"newPage": "Nuevo documento",
|
|
68
70
|
"uploadFile": "Subir archivo",
|
|
69
71
|
"uploadFolder": "Subir carpeta"
|
|
70
72
|
},
|
|
@@ -1853,6 +1853,18 @@
|
|
|
1853
1853
|
"gpt-5-pro": {
|
|
1854
1854
|
"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."
|
|
1855
1855
|
},
|
|
1856
|
+
"gpt-5.1": {
|
|
1857
|
+
"description": "GPT-5.1: modelo insignia optimizado para tareas de codificación y agentes, con soporte para intensidad de razonamiento configurable y contextos más largos."
|
|
1858
|
+
},
|
|
1859
|
+
"gpt-5.1-chat-latest": {
|
|
1860
|
+
"description": "GPT-5.1 Chat: variante de GPT-5.1 para ChatGPT, ideal para escenarios conversacionales."
|
|
1861
|
+
},
|
|
1862
|
+
"gpt-5.1-codex": {
|
|
1863
|
+
"description": "GPT-5.1 Codex: versión de GPT-5.1 optimizada para tareas de codificación agentica, disponible en la API de Respuestas para flujos de trabajo de código/agente más complejos."
|
|
1864
|
+
},
|
|
1865
|
+
"gpt-5.1-codex-mini": {
|
|
1866
|
+
"description": "GPT-5.1 Codex mini: variante de Codex más compacta y económica, optimizada para tareas de codificación agentica."
|
|
1867
|
+
},
|
|
1856
1868
|
"gpt-audio": {
|
|
1857
1869
|
"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."
|
|
1858
1870
|
},
|
|
@@ -2028,13 +2040,13 @@
|
|
|
2028
2040
|
"description": "Serie Imagen de cuarta generación para generar imágenes a partir de texto."
|
|
2029
2041
|
},
|
|
2030
2042
|
"imagen-4.0-generate-preview-06-06": {
|
|
2031
|
-
"description": "Serie de modelos de texto a imagen de cuarta generación de Imagen"
|
|
2043
|
+
"description": "Serie de modelos de generación de imágenes de texto a imagen de cuarta generación de Imagen."
|
|
2032
2044
|
},
|
|
2033
2045
|
"imagen-4.0-ultra-generate-001": {
|
|
2034
2046
|
"description": "Imagen, serie de modelos de texto a imagen de cuarta generación, versión Ultra"
|
|
2035
2047
|
},
|
|
2036
2048
|
"imagen-4.0-ultra-generate-preview-06-06": {
|
|
2037
|
-
"description": "
|
|
2049
|
+
"description": "Versión Ultra de la serie de modelos de generación de imágenes de texto a imagen de cuarta generación de Imagen."
|
|
2038
2050
|
},
|
|
2039
2051
|
"inception/mercury-coder-small": {
|
|
2040
2052
|
"description": "Mercury Coder Small es la opción ideal para tareas de generación, depuración y refactorización de código, con latencia mínima."
|
|
@@ -3092,6 +3104,9 @@
|
|
|
3092
3104
|
"qwen3-max": {
|
|
3093
3105
|
"description": "La serie Max de Tongyi Qianwen 3 representa una mejora significativa en la capacidad general respecto a la serie 2.5, con habilidades mejoradas en comprensión de texto en chino e inglés, seguimiento de instrucciones complejas, tareas abiertas subjetivas, multilingüismo y llamadas a herramientas; además, reduce las alucinaciones de conocimiento del modelo. La última versión qwen3-max ha sido especialmente mejorada en programación de agentes y llamadas a herramientas respecto a la versión previa qwen3-max-preview. El modelo oficial lanzado alcanza un nivel SOTA en su campo, adaptándose a demandas más complejas de agentes."
|
|
3094
3106
|
},
|
|
3107
|
+
"qwen3-max-preview": {
|
|
3108
|
+
"description": "El modelo más avanzado de la serie Tongyi Qianwen, ideal para tareas complejas y de múltiples pasos. La versión preliminar ya admite razonamiento."
|
|
3109
|
+
},
|
|
3095
3110
|
"qwen3-next-80b-a3b-instruct": {
|
|
3096
3111
|
"description": "Modelo de código abierto de nueva generación basado en Qwen3 en modo no reflexivo, que ofrece una mejor comprensión del texto en chino, mayor capacidad de razonamiento lógico y un mejor desempeño en tareas de generación de texto en comparación con la versión anterior (Tongyi Qianwen 3-235B-A22B-Instruct-2507)."
|
|
3097
3112
|
},
|
package/locales/es-ES/tool.json
CHANGED
|
@@ -17,6 +17,14 @@
|
|
|
17
17
|
"localFiles": {
|
|
18
18
|
"file": "Archivo",
|
|
19
19
|
"folder": "Carpeta",
|
|
20
|
+
"moveFiles": {
|
|
21
|
+
"itemsMoved": "Se han movido {{count}} elementos:",
|
|
22
|
+
"itemsMoved_one": "Se ha movido {{count}} elemento:",
|
|
23
|
+
"itemsMoved_other": "Se han movido {{count}} elementos:",
|
|
24
|
+
"itemsToMove": "{{count}} elementos por mover:",
|
|
25
|
+
"itemsToMove_one": "{{count}} elemento por mover:",
|
|
26
|
+
"itemsToMove_other": "{{count}} elementos por mover:"
|
|
27
|
+
},
|
|
20
28
|
"open": "Abrir",
|
|
21
29
|
"openFile": "Abrir archivo",
|
|
22
30
|
"openFolder": "Abrir carpeta",
|
package/locales/fa-IR/chat.json
CHANGED
|
@@ -383,6 +383,8 @@
|
|
|
383
383
|
"manualDesc": "نیاز به تأیید دستی برای هر بار فراخوانی"
|
|
384
384
|
},
|
|
385
385
|
"reject": "رد کردن",
|
|
386
|
+
"rejectAndContinue": "رد کردن و تلاش مجدد برای اجرا",
|
|
387
|
+
"rejectOnly": "رد کردن",
|
|
386
388
|
"rejectReasonPlaceholder": "وارد کردن دلیل رد به Agent کمک میکند تا اقدامات بعدی را بهینه کند",
|
|
387
389
|
"rejectTitle": "رد این فراخوانی ابزار",
|
|
388
390
|
"rejectedWithReason": "این فراخوانی ابزار با دلیل زیر رد شد:{{reason}}",
|
package/locales/fa-IR/file.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"addFolder": "ایجاد پوشه",
|
|
2
3
|
"addKnowledge": "افزودن دانش",
|
|
3
4
|
"addPage": "ایجاد سند",
|
|
4
5
|
"desc": "مدیریت دانش کاری، تحصیلی و زندگی شما.",
|
|
@@ -65,6 +66,7 @@
|
|
|
65
66
|
"header": {
|
|
66
67
|
"actions": {
|
|
67
68
|
"newFolder": "ایجاد پوشه جدید",
|
|
69
|
+
"newPage": "ایجاد سند جدید",
|
|
68
70
|
"uploadFile": "بارگذاری فایل",
|
|
69
71
|
"uploadFolder": "بارگذاری پوشه"
|
|
70
72
|
},
|
|
@@ -1853,6 +1853,18 @@
|
|
|
1853
1853
|
"gpt-5-pro": {
|
|
1854
1854
|
"description": "GPT-5 pro با استفاده از محاسبات بیشتر، عمیقتر میاندیشد و به طور مداوم پاسخهای بهتری ارائه میدهد."
|
|
1855
1855
|
},
|
|
1856
|
+
"gpt-5.1": {
|
|
1857
|
+
"description": "GPT-5.1 — مدل پرچمدار بهینهسازیشده برای وظایف کدنویسی و عاملها، با پشتیبانی از شدت استدلال قابل تنظیم و زمینههای طولانیتر."
|
|
1858
|
+
},
|
|
1859
|
+
"gpt-5.1-chat-latest": {
|
|
1860
|
+
"description": "GPT-5.1 Chat: نسخهای از GPT-5.1 برای ChatGPT، مناسب برای سناریوهای گفتگو."
|
|
1861
|
+
},
|
|
1862
|
+
"gpt-5.1-codex": {
|
|
1863
|
+
"description": "GPT-5.1 Codex: نسخهای از GPT-5.1 بهینهسازیشده برای وظایف کدنویسی عاملمحور، قابل استفاده در API پاسخها برای جریانهای کاری پیچیدهتر در زمینه کد و عاملها."
|
|
1864
|
+
},
|
|
1865
|
+
"gpt-5.1-codex-mini": {
|
|
1866
|
+
"description": "GPT-5.1 Codex mini: نسخهای کوچکتر و مقرونبهصرفهتر از Codex، بهینهسازیشده برای وظایف کدنویسی عاملمحور."
|
|
1867
|
+
},
|
|
1856
1868
|
"gpt-audio": {
|
|
1857
1869
|
"description": "GPT Audio مدلی عمومی برای چت با ورودی و خروجی صوتی است که از استفاده از ورودی/خروجی صوتی در API تکمیل چت پشتیبانی میکند."
|
|
1858
1870
|
},
|
|
@@ -2028,13 +2040,13 @@
|
|
|
2028
2040
|
"description": "سری مدلهای Imagen نسل چهارم برای تولید تصویر از متن"
|
|
2029
2041
|
},
|
|
2030
2042
|
"imagen-4.0-generate-preview-06-06": {
|
|
2031
|
-
"description": "سری
|
|
2043
|
+
"description": "سری مدلهای نسل چهارم Imagen برای تولید تصویر از متن"
|
|
2032
2044
|
},
|
|
2033
2045
|
"imagen-4.0-ultra-generate-001": {
|
|
2034
2046
|
"description": "نسخهٔ اولترا از مجموعهٔ مدلهای متنبهتصویر Imagen نسل چهارم"
|
|
2035
2047
|
},
|
|
2036
2048
|
"imagen-4.0-ultra-generate-preview-06-06": {
|
|
2037
|
-
"description": "نسخه
|
|
2049
|
+
"description": "نسخه Ultra از سری مدلهای نسل چهارم Imagen برای تولید تصویر از متن"
|
|
2038
2050
|
},
|
|
2039
2051
|
"inception/mercury-coder-small": {
|
|
2040
2052
|
"description": "Mercury Coder Small انتخاب ایدهآل برای تولید، اشکالزدایی و بازسازی کد با کمترین تأخیر است."
|
|
@@ -3092,6 +3104,9 @@
|
|
|
3092
3104
|
"qwen3-max": {
|
|
3093
3105
|
"description": "مدل سری Qwen3-Max از Tongyi Qianwen 3 که نسبت به سری 2.5 به طور کلی تواناییهای عمومی بهبود یافتهای دارد؛ شامل درک متن دو زبانه چینی و انگلیسی، پیروی از دستورالعملهای پیچیده، توانایی انجام وظایف باز و ذهنی، پشتیبانی چندزبانه و فراخوانی ابزارها که همه به طور قابل توجهی تقویت شدهاند؛ خطاهای دانش مدل نیز کاهش یافته است. جدیدترین مدل Qwen3-Max نسبت به نسخه پیشنمایش Qwen3-Max در زمینه برنامهنویسی هوشمند و فراخوانی ابزارها بهروزرسانیهای ویژهای داشته است. نسخه رسمی منتشر شده به سطح SOTA حوزه رسیده و برای نیازهای پیچیدهتر هوش مصنوعی تطبیق یافته است."
|
|
3094
3106
|
},
|
|
3107
|
+
"qwen3-max-preview": {
|
|
3108
|
+
"description": "بهترین مدل در سری Qwen، مناسب برای وظایف پیچیده و چندمرحلهای. نسخه پیشنمایش اکنون از قابلیت تفکر پشتیبانی میکند."
|
|
3109
|
+
},
|
|
3095
3110
|
"qwen3-next-80b-a3b-instruct": {
|
|
3096
3111
|
"description": "مدل متنباز نسل جدید بدون حالت تفکر مبتنی بر Qwen3، که نسبت به نسخه قبلی (Tongyi Qianwen 3-235B-A22B-Instruct-2507) در درک متنهای چینی بهتر است، توانایی استدلال منطقی بهبود یافته و عملکرد بهتری در وظایف تولید متن دارد."
|
|
3097
3112
|
},
|
package/locales/fa-IR/tool.json
CHANGED
|
@@ -17,6 +17,14 @@
|
|
|
17
17
|
"localFiles": {
|
|
18
18
|
"file": "فایل",
|
|
19
19
|
"folder": "پوشه",
|
|
20
|
+
"moveFiles": {
|
|
21
|
+
"itemsMoved": "{{count}} مورد منتقل شد:",
|
|
22
|
+
"itemsMoved_one": "{{count}} مورد منتقل شد:",
|
|
23
|
+
"itemsMoved_other": "{{count}} مورد منتقل شد:",
|
|
24
|
+
"itemsToMove": "{{count}} مورد برای انتقال:",
|
|
25
|
+
"itemsToMove_one": "{{count}} مورد برای انتقال:",
|
|
26
|
+
"itemsToMove_other": "{{count}} مورد برای انتقال:"
|
|
27
|
+
},
|
|
20
28
|
"open": "باز کردن",
|
|
21
29
|
"openFile": "باز کردن فایل",
|
|
22
30
|
"openFolder": "باز کردن پوشه",
|
package/locales/fr-FR/chat.json
CHANGED
|
@@ -383,6 +383,8 @@
|
|
|
383
383
|
"manualDesc": "Chaque appel nécessite une approbation manuelle"
|
|
384
384
|
},
|
|
385
385
|
"reject": "Rejeter",
|
|
386
|
+
"rejectAndContinue": "Rejeter et réessayer",
|
|
387
|
+
"rejectOnly": "Rejeter",
|
|
386
388
|
"rejectReasonPlaceholder": "Saisir une raison de rejet aidera l'agent à comprendre et à améliorer ses actions futures",
|
|
387
389
|
"rejectTitle": "Rejeter cet appel d'outil",
|
|
388
390
|
"rejectedWithReason": "Cet appel d'outil a été rejeté volontairement : {{reason}}",
|
package/locales/fr-FR/file.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"addFolder": "Créer un dossier",
|
|
2
3
|
"addKnowledge": "Ajouter des connaissances",
|
|
3
4
|
"addPage": "Créer un document",
|
|
4
5
|
"desc": "Gérez vos connaissances liées au travail, aux études et à la vie quotidienne.",
|
|
@@ -65,6 +66,7 @@
|
|
|
65
66
|
"header": {
|
|
66
67
|
"actions": {
|
|
67
68
|
"newFolder": "Nouveau dossier",
|
|
69
|
+
"newPage": "Nouveau document",
|
|
68
70
|
"uploadFile": "Télécharger un fichier",
|
|
69
71
|
"uploadFolder": "Télécharger un dossier"
|
|
70
72
|
},
|