@lobehub/lobehub 2.0.0-next.89 → 2.0.0-next.90

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/changelog/v1.json +9 -0
  3. package/locales/ar/chat.json +4 -0
  4. package/locales/ar/models.json +3 -6
  5. package/locales/bg-BG/chat.json +4 -0
  6. package/locales/bg-BG/models.json +3 -6
  7. package/locales/de-DE/chat.json +4 -0
  8. package/locales/de-DE/models.json +3 -6
  9. package/locales/en-US/chat.json +4 -0
  10. package/locales/en-US/common.json +1 -0
  11. package/locales/en-US/models.json +3 -6
  12. package/locales/es-ES/chat.json +4 -0
  13. package/locales/es-ES/models.json +3 -6
  14. package/locales/fa-IR/chat.json +4 -0
  15. package/locales/fa-IR/models.json +3 -6
  16. package/locales/fr-FR/chat.json +4 -0
  17. package/locales/fr-FR/models.json +3 -6
  18. package/locales/it-IT/chat.json +4 -0
  19. package/locales/it-IT/models.json +3 -6
  20. package/locales/ja-JP/chat.json +4 -0
  21. package/locales/ja-JP/models.json +3 -6
  22. package/locales/ko-KR/chat.json +4 -0
  23. package/locales/ko-KR/models.json +3 -6
  24. package/locales/nl-NL/chat.json +4 -0
  25. package/locales/nl-NL/models.json +3 -6
  26. package/locales/pl-PL/chat.json +4 -0
  27. package/locales/pl-PL/models.json +3 -6
  28. package/locales/pt-BR/chat.json +4 -0
  29. package/locales/pt-BR/models.json +3 -6
  30. package/locales/ru-RU/chat.json +4 -0
  31. package/locales/ru-RU/models.json +3 -6
  32. package/locales/tr-TR/chat.json +4 -0
  33. package/locales/tr-TR/models.json +3 -6
  34. package/locales/vi-VN/chat.json +4 -0
  35. package/locales/vi-VN/models.json +3 -6
  36. package/locales/zh-CN/chat.json +4 -0
  37. package/locales/zh-CN/common.json +1 -0
  38. package/locales/zh-CN/models.json +3 -6
  39. package/locales/zh-TW/chat.json +4 -0
  40. package/locales/zh-TW/models.json +3 -6
  41. package/package.json +1 -1
  42. package/packages/model-bank/src/types/aiModel.ts +1 -0
  43. package/packages/types/src/message/common/metadata.ts +6 -0
  44. package/packages/utils/src/time.ts +4 -0
  45. package/src/app/(backend)/middleware/auth/index.ts +1 -2
  46. package/src/app/(backend)/webapi/chat/[provider]/route.ts +1 -1
  47. package/src/app/(backend)/webapi/models/[provider]/pull/route.ts +1 -1
  48. package/src/app/(backend)/webapi/models/[provider]/route.ts +1 -1
  49. package/src/app/(backend)/webapi/text-to-image/[provider]/route.ts +1 -1
  50. package/src/app/[variants]/(main)/settings/provider/features/ModelList/ModelItem.tsx +74 -97
  51. package/src/features/Conversation/Messages/Group/Tool/Inspector/BuiltinPluginTitle.tsx +22 -11
  52. package/src/features/Conversation/Messages/Group/Tool/Inspector/StatusIndicator.tsx +41 -0
  53. package/src/features/Conversation/Messages/Group/Tool/Inspector/ToolTitle.tsx +13 -3
  54. package/src/features/Conversation/Messages/Group/Tool/Inspector/index.tsx +28 -34
  55. package/src/features/Conversation/Messages/Group/Tool/Render/AbortResponse.tsx +37 -0
  56. package/src/features/Conversation/Messages/Group/Tool/Render/index.tsx +6 -0
  57. package/src/features/Conversation/Messages/Group/Tool/index.tsx +1 -0
  58. package/src/locales/default/chat.ts +1 -0
  59. package/src/locales/default/common.ts +1 -0
  60. package/src/server/routers/lambda/file.ts +0 -6
  61. package/src/store/chat/slices/message/actions/publicApi.ts +15 -0
package/CHANGELOG.md CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ## [Version 2.0.0-next.90](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.89...v2.0.0-next.90)
6
+
7
+ <sup>Released on **2025-11-19**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Extract StatusIndicator component and improve tools display.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Extract StatusIndicator component and improve tools display, closes [#10311](https://github.com/lobehub/lobe-chat/issues/10311) ([b5ae53a](https://github.com/lobehub/lobe-chat/commit/b5ae53a))
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
+
5
30
  ## [Version 2.0.0-next.89](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.88...v2.0.0-next.89)
6
31
 
7
32
  <sup>Released on **2025-11-19**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,13 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "improvements": [
5
+ "Extract StatusIndicator component and improve tools display."
6
+ ]
7
+ },
8
+ "date": "2025-11-19",
9
+ "version": "2.0.0-next.90"
10
+ },
2
11
  {
3
12
  "children": {
4
13
  "features": [
@@ -65,6 +65,9 @@
65
65
  "thinking": {
66
66
  "title": "مفتاح التفكير العميق"
67
67
  },
68
+ "thinkingLevel": {
69
+ "title": "مستوى التفكير"
70
+ },
68
71
  "title": "وظائف توسيع النموذج",
69
72
  "urlContext": {
70
73
  "desc": "عند التفعيل، سيتم تحليل روابط الويب تلقائيًا للحصول على محتوى السياق الفعلي للصفحة",
@@ -396,6 +399,7 @@
396
399
  "rejectReasonPlaceholder": "إدخال سبب الرفض سيساعد الوكيل على الفهم وتحسين الإجراءات المستقبلية",
397
400
  "rejectTitle": "رفض استدعاء الأداة هذه المرة",
398
401
  "rejectedWithReason": "تم رفض استدعاء الأداة هذه المرة بشكل يدوي: {{reason}}",
402
+ "toolAbort": "تم إلغاء استدعاء الأداة من قبل المستخدم",
399
403
  "toolRejected": "تم رفض استدعاء الأداة هذه المرة بشكل يدوي"
400
404
  }
401
405
  },
@@ -1481,9 +1481,6 @@
1481
1481
  "gemini-2.0-flash-lite-001": {
1482
1482
  "description": "نموذج جمنّي 2.0 فلاش هو نسخة معدلة، تم تحسينها لتحقيق الكفاءة من حيث التكلفة والحد من التأخير."
1483
1483
  },
1484
- "gemini-2.0-flash-preview-image-generation": {
1485
- "description": "نموذج معاينة Gemini 2.0 Flash، يدعم توليد الصور"
1486
- },
1487
1484
  "gemini-2.5-flash": {
1488
1485
  "description": "Gemini 2.5 Flash هو نموذج Google الأكثر فعالية من حيث التكلفة، ويوفر وظائف شاملة."
1489
1486
  },
@@ -1511,9 +1508,6 @@
1511
1508
  "gemini-2.5-flash-preview-04-17": {
1512
1509
  "description": "معاينة فلاش جمنّي 2.5 هي النموذج الأكثر كفاءة من جوجل، حيث تقدم مجموعة شاملة من الميزات."
1513
1510
  },
1514
- "gemini-2.5-flash-preview-05-20": {
1515
- "description": "Gemini 2.5 Flash Preview هو نموذج Google الأكثر فعالية من حيث التكلفة، يقدم وظائف شاملة."
1516
- },
1517
1511
  "gemini-2.5-flash-preview-09-2025": {
1518
1512
  "description": "إصدار معاينة (25 سبتمبر 2025) من Gemini 2.5 Flash"
1519
1513
  },
@@ -1529,6 +1523,9 @@
1529
1523
  "gemini-2.5-pro-preview-06-05": {
1530
1524
  "description": "جيميني 2.5 برو بريڤيو هو أحدث نموذج تفكيري من جوجل، قادر على استنتاج حلول للمشكلات المعقدة في مجالات البرمجة، الرياضيات، والعلوم والتكنولوجيا والهندسة والرياضيات (STEM)، بالإضافة إلى تحليل مجموعات بيانات كبيرة، قواعد بيانات البرمجة، والوثائق باستخدام سياق طويل."
1531
1525
  },
1526
+ "gemini-3-pro-preview": {
1527
+ "description": "Gemini 3 Pro هو النموذج الأذكى من Google، يتميز بأحدث تقنيات الاستدلال والفهم متعدد الوسائط، بالإضافة إلى قدرات قوية في التمثيل الذكي وترميز السياق."
1528
+ },
1532
1529
  "gemini-flash-latest": {
1533
1530
  "description": "أحدث إصدار من Gemini Flash"
1534
1531
  },
@@ -65,6 +65,9 @@
65
65
  "thinking": {
66
66
  "title": "Превключвател за дълбоко мислене"
67
67
  },
68
+ "thinkingLevel": {
69
+ "title": "Ниво на мислене"
70
+ },
68
71
  "title": "Разширени функции на модела",
69
72
  "urlContext": {
70
73
  "desc": "Когато е включено, автоматично ще се анализират уеб връзки, за да се получи реалното съдържание на уеб страницата",
@@ -396,6 +399,7 @@
396
399
  "rejectReasonPlaceholder": "Въведете причина за отхвърляне, за да помогнете на агента да разбере и подобри бъдещите действия",
397
400
  "rejectTitle": "Отхвърляне на това извикване на инструмент",
398
401
  "rejectedWithReason": "Това извикване на инструмент беше умишлено отхвърлено: {{reason}}",
402
+ "toolAbort": "Този инструмент беше отменен от потребителя",
399
403
  "toolRejected": "Това извикване на инструмент беше умишлено отхвърлено"
400
404
  }
401
405
  },
@@ -1481,9 +1481,6 @@
1481
1481
  "gemini-2.0-flash-lite-001": {
1482
1482
  "description": "Gemini 2.0 Flash е вариант на модела, оптимизиран за икономичност и ниска латентност."
1483
1483
  },
1484
- "gemini-2.0-flash-preview-image-generation": {
1485
- "description": "Gemini 2.0 Flash предварителен модел, поддържащ генериране на изображения"
1486
- },
1487
1484
  "gemini-2.5-flash": {
1488
1485
  "description": "Gemini 2.5 Flash е най-ефективният модел на Google, предлагащ пълна функционалност."
1489
1486
  },
@@ -1511,9 +1508,6 @@
1511
1508
  "gemini-2.5-flash-preview-04-17": {
1512
1509
  "description": "Gemini 2.5 Flash Preview е моделът с най-добро съотношение цена-качество на Google, предлагащ пълна функционалност."
1513
1510
  },
1514
- "gemini-2.5-flash-preview-05-20": {
1515
- "description": "Gemini 2.5 Flash Preview е най-ефективният модел на Google, предлагащ пълна функционалност."
1516
- },
1517
1511
  "gemini-2.5-flash-preview-09-2025": {
1518
1512
  "description": "Прегледна версия (25 септември 2025 г.) на Gemini 2.5 Flash"
1519
1513
  },
@@ -1529,6 +1523,9 @@
1529
1523
  "gemini-2.5-pro-preview-06-05": {
1530
1524
  "description": "Gemini 2.5 Pro Preview е най-напредналият мисловен модел на Google, способен да разсъждава върху сложни проблеми в областта на кодирането, математиката и STEM, както и да анализира големи набори от данни, кодови бази и документи с дълъг контекст."
1531
1525
  },
1526
+ "gemini-3-pro-preview": {
1527
+ "description": "Gemini 3 Pro е най-интелигентният модел на Google, с най-съвременно извеждане на заключения и мултимодално разбиране, както и с мощни възможности за агентно поведение и кодиране на контекста."
1528
+ },
1532
1529
  "gemini-flash-latest": {
1533
1530
  "description": "Последно издание на Gemini Flash"
1534
1531
  },
@@ -65,6 +65,9 @@
65
65
  "thinking": {
66
66
  "title": "Tiefdenk-Schalter"
67
67
  },
68
+ "thinkingLevel": {
69
+ "title": "Denkebene"
70
+ },
68
71
  "title": "Modell Erweiterungsfunktionen",
69
72
  "urlContext": {
70
73
  "desc": "Wenn aktiviert, werden Webseiten-Links automatisch analysiert, um den tatsächlichen Webseiteninhalt zu erfassen",
@@ -396,6 +399,7 @@
396
399
  "rejectReasonPlaceholder": "Die Angabe eines Ablehnungsgrundes hilft dem Agenten, zukünftige Aktionen zu verbessern",
397
400
  "rejectTitle": "Tool-Ausführung ablehnen",
398
401
  "rejectedWithReason": "Die Tool-Ausführung wurde abgelehnt: {{reason}}",
402
+ "toolAbort": "Dieser Werkzeugaufruf wurde vom Benutzer abgebrochen",
399
403
  "toolRejected": "Die Tool-Ausführung wurde abgelehnt"
400
404
  }
401
405
  },
@@ -1481,9 +1481,6 @@
1481
1481
  "gemini-2.0-flash-lite-001": {
1482
1482
  "description": "Gemini 2.0 Flash ist eine Modellvariante, die auf Kosteneffizienz und niedrige Latenz optimiert ist."
1483
1483
  },
1484
- "gemini-2.0-flash-preview-image-generation": {
1485
- "description": "Gemini 2.0 Flash Vorschau-Modell, unterstützt die Bildgenerierung"
1486
- },
1487
1484
  "gemini-2.5-flash": {
1488
1485
  "description": "Gemini 2.5 Flash ist Googles kosteneffizientestes Modell und bietet umfassende Funktionen."
1489
1486
  },
@@ -1511,9 +1508,6 @@
1511
1508
  "gemini-2.5-flash-preview-04-17": {
1512
1509
  "description": "Gemini 2.5 Flash Preview ist das kosteneffizienteste Modell von Google und bietet umfassende Funktionen."
1513
1510
  },
1514
- "gemini-2.5-flash-preview-05-20": {
1515
- "description": "Gemini 2.5 Flash Preview ist Googles kosteneffizientestes Modell mit umfassenden Funktionen."
1516
- },
1517
1511
  "gemini-2.5-flash-preview-09-2025": {
1518
1512
  "description": "Vorschauversion (25. September 2025) von Gemini 2.5 Flash"
1519
1513
  },
@@ -1529,6 +1523,9 @@
1529
1523
  "gemini-2.5-pro-preview-06-05": {
1530
1524
  "description": "Gemini 2.5 Pro Preview ist Googles fortschrittlichstes Denkmodell, das komplexe Probleme in den Bereichen Code, Mathematik und MINT-Fächer lösen kann und große Datensätze, Codebasen und Dokumente mit langem Kontext analysiert."
1531
1525
  },
1526
+ "gemini-3-pro-preview": {
1527
+ "description": "Gemini 3 Pro ist das intelligenteste Modell von Google mit modernster Schlussfolgerungsfähigkeit, multimodaler Verarbeitung sowie leistungsstarken Agenten- und Kontextkodierungsfunktionen."
1528
+ },
1532
1529
  "gemini-flash-latest": {
1533
1530
  "description": "Neueste Version von Gemini Flash"
1534
1531
  },
@@ -65,6 +65,9 @@
65
65
  "thinking": {
66
66
  "title": "Deep Thinking Switch"
67
67
  },
68
+ "thinkingLevel": {
69
+ "title": "Level of Thinking"
70
+ },
68
71
  "title": "Model Extension Features",
69
72
  "urlContext": {
70
73
  "desc": "When enabled, web links will be automatically parsed to retrieve the actual webpage context content",
@@ -396,6 +399,7 @@
396
399
  "rejectReasonPlaceholder": "Providing a reason will help the Agent understand and improve future actions",
397
400
  "rejectTitle": "Reject This Tool Invocation",
398
401
  "rejectedWithReason": "This tool invocation was actively rejected: {{reason}}",
402
+ "toolAbort": "This tool invocation was canceled by the user",
399
403
  "toolRejected": "This tool invocation was actively rejected"
400
404
  }
401
405
  },
@@ -283,6 +283,7 @@
283
283
  "business": "Business Cooperation",
284
284
  "support": "Email Support"
285
285
  },
286
+ "new": "NEW",
286
287
  "oauth": "SSO Login",
287
288
  "officialSite": "Official Website",
288
289
  "ok": "OK",
@@ -1481,9 +1481,6 @@
1481
1481
  "gemini-2.0-flash-lite-001": {
1482
1482
  "description": "Gemini 2.0 Flash is a variant of the model optimized for cost-effectiveness and low latency."
1483
1483
  },
1484
- "gemini-2.0-flash-preview-image-generation": {
1485
- "description": "Gemini 2.0 Flash preview model, supports image generation"
1486
- },
1487
1484
  "gemini-2.5-flash": {
1488
1485
  "description": "Gemini 2.5 Flash is Google's most cost-effective model, offering comprehensive capabilities."
1489
1486
  },
@@ -1511,9 +1508,6 @@
1511
1508
  "gemini-2.5-flash-preview-04-17": {
1512
1509
  "description": "Gemini 2.5 Flash Preview is Google's most cost-effective model, offering a comprehensive set of features."
1513
1510
  },
1514
- "gemini-2.5-flash-preview-05-20": {
1515
- "description": "Gemini 2.5 Flash Preview is Google's most cost-effective model, offering comprehensive capabilities."
1516
- },
1517
1511
  "gemini-2.5-flash-preview-09-2025": {
1518
1512
  "description": "Preview release (September 25th, 2025) of Gemini 2.5 Flash"
1519
1513
  },
@@ -1529,6 +1523,9 @@
1529
1523
  "gemini-2.5-pro-preview-06-05": {
1530
1524
  "description": "Gemini 2.5 Pro Preview is Google's most advanced cognitive model, capable of reasoning through complex problems in code, mathematics, and STEM fields, as well as analyzing large datasets, codebases, and documents using long-context understanding."
1531
1525
  },
1526
+ "gemini-3-pro-preview": {
1527
+ "description": "Gemini 3 Pro is Google's most advanced model, featuring state-of-the-art reasoning, multimodal understanding, and powerful agent capabilities with contextual awareness."
1528
+ },
1532
1529
  "gemini-flash-latest": {
1533
1530
  "description": "Latest release of Gemini Flash"
1534
1531
  },
@@ -65,6 +65,9 @@
65
65
  "thinking": {
66
66
  "title": "Interruptor de pensamiento profundo"
67
67
  },
68
+ "thinkingLevel": {
69
+ "title": "Nivel de pensamiento"
70
+ },
68
71
  "title": "Funcionalidad de extensión del modelo",
69
72
  "urlContext": {
70
73
  "desc": "Al activarlo, se analizarán automáticamente los enlaces web para obtener el contenido contextual real de la página",
@@ -396,6 +399,7 @@
396
399
  "rejectReasonPlaceholder": "Ingresar una razón ayudará al agente a comprender y mejorar futuras acciones",
397
400
  "rejectTitle": "Rechazar esta ejecución de herramienta",
398
401
  "rejectedWithReason": "Esta ejecución de herramienta fue rechazada: {{reason}}",
402
+ "toolAbort": "La llamada a la herramienta fue cancelada por el usuario",
399
403
  "toolRejected": "Esta ejecución de herramienta fue rechazada"
400
404
  }
401
405
  },
@@ -1481,9 +1481,6 @@
1481
1481
  "gemini-2.0-flash-lite-001": {
1482
1482
  "description": "Variante del modelo Gemini 2.0 Flash, optimizada para objetivos como la rentabilidad y la baja latencia."
1483
1483
  },
1484
- "gemini-2.0-flash-preview-image-generation": {
1485
- "description": "Modelo de vista previa Gemini 2.0 Flash, que admite la generación de imágenes"
1486
- },
1487
1484
  "gemini-2.5-flash": {
1488
1485
  "description": "Gemini 2.5 Flash es el modelo de mejor relación calidad-precio de Google, que ofrece funcionalidades completas."
1489
1486
  },
@@ -1511,9 +1508,6 @@
1511
1508
  "gemini-2.5-flash-preview-04-17": {
1512
1509
  "description": "Gemini 2.5 Flash Preview es el modelo más rentable de Google, que ofrece una funcionalidad completa."
1513
1510
  },
1514
- "gemini-2.5-flash-preview-05-20": {
1515
- "description": "Gemini 2.5 Flash Preview es el modelo de mejor relación calidad-precio de Google, que ofrece funcionalidades completas."
1516
- },
1517
1511
  "gemini-2.5-flash-preview-09-2025": {
1518
1512
  "description": "Versión preliminar (25 de septiembre de 2025) de Gemini 2.5 Flash"
1519
1513
  },
@@ -1529,6 +1523,9 @@
1529
1523
  "gemini-2.5-pro-preview-06-05": {
1530
1524
  "description": "Gemini 2.5 Pro Preview es el modelo de pensamiento más avanzado de Google, capaz de razonar sobre problemas complejos en código, matemáticas y áreas STEM, así como analizar grandes conjuntos de datos, bases de código y documentos utilizando contextos extensos."
1531
1525
  },
1526
+ "gemini-3-pro-preview": {
1527
+ "description": "Gemini 3 Pro es el modelo más inteligente de Google, con razonamiento de última generación, comprensión multimodal y potentes capacidades de agente y codificación contextual."
1528
+ },
1532
1529
  "gemini-flash-latest": {
1533
1530
  "description": "Última versión de Gemini Flash"
1534
1531
  },
@@ -65,6 +65,9 @@
65
65
  "thinking": {
66
66
  "title": "کلید تفکر عمیق"
67
67
  },
68
+ "thinkingLevel": {
69
+ "title": "سطح تفکر"
70
+ },
68
71
  "title": "ویژگی‌های گسترش مدل",
69
72
  "urlContext": {
70
73
  "desc": "با فعال‌سازی، لینک‌های وب به‌طور خودکار تجزیه می‌شوند تا محتوای واقعی زمینه وب‌سایت به‌دست آید",
@@ -396,6 +399,7 @@
396
399
  "rejectReasonPlaceholder": "وارد کردن دلیل رد به Agent کمک می‌کند تا اقدامات بعدی را بهینه کند",
397
400
  "rejectTitle": "رد این فراخوانی ابزار",
398
401
  "rejectedWithReason": "این فراخوانی ابزار با دلیل زیر رد شد:{{reason}}",
402
+ "toolAbort": "این فراخوانی ابزار توسط کاربر لغو شد",
399
403
  "toolRejected": "این فراخوانی ابزار به‌صورت دستی رد شد"
400
404
  }
401
405
  },
@@ -1481,9 +1481,6 @@
1481
1481
  "gemini-2.0-flash-lite-001": {
1482
1482
  "description": "مدل متغیر Gemini 2.0 Flash برای بهینه‌سازی هزینه و تأخیر کم طراحی شده است."
1483
1483
  },
1484
- "gemini-2.0-flash-preview-image-generation": {
1485
- "description": "مدل پیش‌نمایش Gemini 2.0 Flash، از تولید تصویر پشتیبانی می‌کند"
1486
- },
1487
1484
  "gemini-2.5-flash": {
1488
1485
  "description": "Gemini 2.5 Flash مدل با بهترین نسبت قیمت به کارایی گوگل است که امکانات جامع را ارائه می‌دهد."
1489
1486
  },
@@ -1511,9 +1508,6 @@
1511
1508
  "gemini-2.5-flash-preview-04-17": {
1512
1509
  "description": "پیش‌نمایش فلش Gemini 2.5 مدل با بهترین قیمت و کیفیت گوگل است که امکانات جامع و کاملی را ارائه می‌دهد."
1513
1510
  },
1514
- "gemini-2.5-flash-preview-05-20": {
1515
- "description": "Gemini 2.5 Flash Preview مقرون‌به‌صرفه‌ترین مدل گوگل است که امکانات جامع ارائه می‌دهد."
1516
- },
1517
1511
  "gemini-2.5-flash-preview-09-2025": {
1518
1512
  "description": "نسخه پیش‌نمایش (25 سپتامبر 2025) از Gemini 2.5 Flash"
1519
1513
  },
@@ -1529,6 +1523,9 @@
1529
1523
  "gemini-2.5-pro-preview-06-05": {
1530
1524
  "description": "Gemini 2.5 Pro Preview پیشرفته‌ترین مدل تفکر گوگل است که قادر به استدلال درباره مسائل پیچیده در حوزه کد، ریاضیات و STEM است و می‌تواند با استفاده از زمینه طولانی، داده‌های بزرگ، مخازن کد و مستندات را تحلیل کند."
1531
1525
  },
1526
+ "gemini-3-pro-preview": {
1527
+ "description": "Gemini 3 Pro هوشمندترین مدل Google است که دارای استدلال پیشرفته (SOTA)، درک چندوجهی، و همچنین قابلیت‌های قدرتمند نمایندگی و رمزگذاری زمینه‌ای می‌باشد."
1528
+ },
1532
1529
  "gemini-flash-latest": {
1533
1530
  "description": "جدیدترین نسخه Gemini Flash"
1534
1531
  },
@@ -65,6 +65,9 @@
65
65
  "thinking": {
66
66
  "title": "Interrupteur de réflexion approfondie"
67
67
  },
68
+ "thinkingLevel": {
69
+ "title": "Niveau de réflexion"
70
+ },
68
71
  "title": "Fonctionnalités d'extension du modèle",
69
72
  "urlContext": {
70
73
  "desc": "Une fois activé, il analysera automatiquement les liens web pour obtenir le contenu contextuel réel de la page web",
@@ -396,6 +399,7 @@
396
399
  "rejectReasonPlaceholder": "Saisir une raison de rejet aidera l'agent à comprendre et à améliorer ses actions futures",
397
400
  "rejectTitle": "Rejeter cet appel d'outil",
398
401
  "rejectedWithReason": "Cet appel d'outil a été rejeté volontairement : {{reason}}",
402
+ "toolAbort": "L'appel de l'outil a été annulé par l'utilisateur",
399
403
  "toolRejected": "Cet appel d'outil a été rejeté volontairement"
400
404
  }
401
405
  },
@@ -1481,9 +1481,6 @@
1481
1481
  "gemini-2.0-flash-lite-001": {
1482
1482
  "description": "Une variante du modèle Gemini 2.0 Flash, optimisée pour des objectifs tels que le rapport coût-efficacité et la faible latence."
1483
1483
  },
1484
- "gemini-2.0-flash-preview-image-generation": {
1485
- "description": "Modèle de prévisualisation Gemini 2.0 Flash, prenant en charge la génération d'images"
1486
- },
1487
1484
  "gemini-2.5-flash": {
1488
1485
  "description": "Gemini 2.5 Flash est le modèle le plus rentable de Google, offrant des fonctionnalités complètes."
1489
1486
  },
@@ -1511,9 +1508,6 @@
1511
1508
  "gemini-2.5-flash-preview-04-17": {
1512
1509
  "description": "Gemini 2.5 Flash Preview est le modèle le plus rentable de Google, offrant des fonctionnalités complètes."
1513
1510
  },
1514
- "gemini-2.5-flash-preview-05-20": {
1515
- "description": "Gemini 2.5 Flash Preview est le modèle le plus rentable de Google, offrant des fonctionnalités complètes."
1516
- },
1517
1511
  "gemini-2.5-flash-preview-09-2025": {
1518
1512
  "description": "Version de prévisualisation (25 septembre 2025) de Gemini 2.5 Flash"
1519
1513
  },
@@ -1529,6 +1523,9 @@
1529
1523
  "gemini-2.5-pro-preview-06-05": {
1530
1524
  "description": "Gemini 2.5 Pro Preview est le modèle de pensée le plus avancé de Google, capable de raisonner sur des problèmes complexes en code, mathématiques et domaines STEM, ainsi que d'analyser de grands ensembles de données, bibliothèques de code et documents avec un contexte étendu."
1531
1525
  },
1526
+ "gemini-3-pro-preview": {
1527
+ "description": "Gemini 3 Pro est le modèle le plus intelligent de Google, doté d’un raisonnement de pointe, d’une compréhension multimodale, ainsi que de puissantes capacités d’agent et de codage d’ambiance."
1528
+ },
1532
1529
  "gemini-flash-latest": {
1533
1530
  "description": "Dernière version de Gemini Flash"
1534
1531
  },
@@ -65,6 +65,9 @@
65
65
  "thinking": {
66
66
  "title": "Interruttore di pensiero profondo"
67
67
  },
68
+ "thinkingLevel": {
69
+ "title": "Livello di pensiero"
70
+ },
68
71
  "title": "Funzionalità di estensione del modello",
69
72
  "urlContext": {
70
73
  "desc": "Se abilitato, analizzerà automaticamente i link delle pagine web per ottenere il contenuto contestuale reale della pagina",
@@ -396,6 +399,7 @@
396
399
  "rejectReasonPlaceholder": "Inserire il motivo del rifiuto aiuterà l'agente a comprendere e ottimizzare le azioni future",
397
400
  "rejectTitle": "Rifiuta questa esecuzione dello strumento",
398
401
  "rejectedWithReason": "Questa esecuzione dello strumento è stata rifiutata: {{reason}}",
402
+ "toolAbort": "L'utilizzo dello strumento è stato annullato dall'utente",
399
403
  "toolRejected": "Questa esecuzione dello strumento è stata rifiutata"
400
404
  }
401
405
  },
@@ -1481,9 +1481,6 @@
1481
1481
  "gemini-2.0-flash-lite-001": {
1482
1482
  "description": "Gemini 2.0 Flash è una variante del modello Flash, ottimizzata per obiettivi come il rapporto costo-efficacia e la bassa latenza."
1483
1483
  },
1484
- "gemini-2.0-flash-preview-image-generation": {
1485
- "description": "Gemini 2.0 Flash modello di anteprima, supporta la generazione di immagini"
1486
- },
1487
1484
  "gemini-2.5-flash": {
1488
1485
  "description": "Gemini 2.5 Flash è il modello Google con il miglior rapporto qualità-prezzo, offrendo funzionalità complete."
1489
1486
  },
@@ -1511,9 +1508,6 @@
1511
1508
  "gemini-2.5-flash-preview-04-17": {
1512
1509
  "description": "Gemini 2.5 Flash Preview è il modello più conveniente di Google, che offre funzionalità complete."
1513
1510
  },
1514
- "gemini-2.5-flash-preview-05-20": {
1515
- "description": "Gemini 2.5 Flash Preview è il modello Google con il miglior rapporto qualità-prezzo, che offre funzionalità complete."
1516
- },
1517
1511
  "gemini-2.5-flash-preview-09-2025": {
1518
1512
  "description": "Versione anteprima (25 settembre 2025) di Gemini 2.5 Flash"
1519
1513
  },
@@ -1529,6 +1523,9 @@
1529
1523
  "gemini-2.5-pro-preview-06-05": {
1530
1524
  "description": "Gemini 2.5 Pro Preview è il modello di pensiero più avanzato di Google, capace di ragionare su problemi complessi in codice, matematica e ambito STEM, oltre a utilizzare contesti estesi per analizzare grandi dataset, librerie di codice e documenti."
1531
1525
  },
1526
+ "gemini-3-pro-preview": {
1527
+ "description": "Gemini 3 Pro è il modello più intelligente di Google, con capacità all'avanguardia di ragionamento e comprensione multimodale, oltre a potenti funzionalità di agente e codifica del contesto."
1528
+ },
1532
1529
  "gemini-flash-latest": {
1533
1530
  "description": "Ultima versione di Gemini Flash"
1534
1531
  },
@@ -65,6 +65,9 @@
65
65
  "thinking": {
66
66
  "title": "深い思考のスイッチ"
67
67
  },
68
+ "thinkingLevel": {
69
+ "title": "思考レベル"
70
+ },
68
71
  "title": "モデル拡張機能",
69
72
  "urlContext": {
70
73
  "desc": "有効にすると、実際のウェブページのコンテキスト内容を取得するためにウェブリンクを自動的に解析します",
@@ -396,6 +399,7 @@
396
399
  "rejectReasonPlaceholder": "拒否理由を入力すると、エージェントが理解し今後の行動を最適化するのに役立ちます",
397
400
  "rejectTitle": "今回のツール呼び出しを拒否",
398
401
  "rejectedWithReason": "今回のツール呼び出しは次の理由で拒否されました:{{reason}}",
402
+ "toolAbort": "このツールの呼び出しはユーザーによってキャンセルされました",
399
403
  "toolRejected": "今回のツール呼び出しは拒否されました"
400
404
  }
401
405
  },
@@ -1481,9 +1481,6 @@
1481
1481
  "gemini-2.0-flash-lite-001": {
1482
1482
  "description": "Gemini 2.0 Flashモデルのバリアントで、コスト効率と低遅延などの目標に最適化されています。"
1483
1483
  },
1484
- "gemini-2.0-flash-preview-image-generation": {
1485
- "description": "Gemini 2.0 Flash プレビュー モデル、画像生成をサポート"
1486
- },
1487
1484
  "gemini-2.5-flash": {
1488
1485
  "description": "Gemini 2.5 FlashはGoogleのコストパフォーマンスに優れたモデルで、包括的な機能を提供します。"
1489
1486
  },
@@ -1511,9 +1508,6 @@
1511
1508
  "gemini-2.5-flash-preview-04-17": {
1512
1509
  "description": "Gemini 2.5 Flash Previewは、Googleのコストパフォーマンスに優れたモデルで、包括的な機能を提供します。"
1513
1510
  },
1514
- "gemini-2.5-flash-preview-05-20": {
1515
- "description": "Gemini 2.5 Flash PreviewはGoogleのコストパフォーマンスに優れたモデルで、包括的な機能を提供します。"
1516
- },
1517
1511
  "gemini-2.5-flash-preview-09-2025": {
1518
1512
  "description": "Gemini 2.5 Flash のプレビューリリース(2025年9月25日)"
1519
1513
  },
@@ -1529,6 +1523,9 @@
1529
1523
  "gemini-2.5-pro-preview-06-05": {
1530
1524
  "description": "Gemini 2.5 Pro Preview は Google の最先端思考モデルで、コード、数学、STEM 分野の複雑な問題を推論し、長いコンテキストを用いて大規模なデータセット、コードベース、ドキュメントを分析できます。"
1531
1525
  },
1526
+ "gemini-3-pro-preview": {
1527
+ "description": "Gemini 3 Pro は、Google で最も高度なモデルであり、最先端の推論能力とマルチモーダルな理解力、さらに強力なエージェント機能とコンテキスト認識機能を備えています。"
1528
+ },
1532
1529
  "gemini-flash-latest": {
1533
1530
  "description": "Gemini Flash の最新リリース"
1534
1531
  },
@@ -65,6 +65,9 @@
65
65
  "thinking": {
66
66
  "title": "심층 사고 스위치"
67
67
  },
68
+ "thinkingLevel": {
69
+ "title": "사고 수준"
70
+ },
68
71
  "title": "모델 확장 기능",
69
72
  "urlContext": {
70
73
  "desc": "활성화하면 실제 웹페이지 컨텍스트 내용을 얻기 위해 웹 링크를 자동으로 분석합니다",
@@ -396,6 +399,7 @@
396
399
  "rejectReasonPlaceholder": "거부 사유를 입력하면 에이전트가 이해하고 이후 행동을 최적화하는 데 도움이 됩니다",
397
400
  "rejectTitle": "이번 도구 호출 거부",
398
401
  "rejectedWithReason": "이번 도구 호출이 다음 사유로 거부됨: {{reason}}",
402
+ "toolAbort": "이번 도구 호출이 사용자에 의해 취소되었습니다",
399
403
  "toolRejected": "이번 도구 호출이 거부되었습니다"
400
404
  }
401
405
  },
@@ -1481,9 +1481,6 @@
1481
1481
  "gemini-2.0-flash-lite-001": {
1482
1482
  "description": "Gemini 2.0 플래시 모델 변형으로, 비용 효율성과 낮은 지연 시간 등의 목표를 위해 최적화되었습니다."
1483
1483
  },
1484
- "gemini-2.0-flash-preview-image-generation": {
1485
- "description": "Gemini 2.0 Flash 미리보기 모델로, 이미지 생성을 지원합니다."
1486
- },
1487
1484
  "gemini-2.5-flash": {
1488
1485
  "description": "Gemini 2.5 Flash는 구글에서 가장 가성비가 뛰어난 모델로, 포괄적인 기능을 제공합니다."
1489
1486
  },
@@ -1511,9 +1508,6 @@
1511
1508
  "gemini-2.5-flash-preview-04-17": {
1512
1509
  "description": "Gemini 2.5 Flash Preview는 Google의 가장 가성비 높은 모델로, 포괄적인 기능을 제공합니다."
1513
1510
  },
1514
- "gemini-2.5-flash-preview-05-20": {
1515
- "description": "Gemini 2.5 Flash Preview는 Google의 최고의 가성비 모델로, 포괄적인 기능을 제공합니다."
1516
- },
1517
1511
  "gemini-2.5-flash-preview-09-2025": {
1518
1512
  "description": "Gemini 2.5 Flash의 미리보기 버전 (2025년 9월 25일)"
1519
1513
  },
@@ -1529,6 +1523,9 @@
1529
1523
  "gemini-2.5-pro-preview-06-05": {
1530
1524
  "description": "Gemini 2.5 Pro Preview는 구글의 최첨단 사고 모델로, 코드, 수학 및 STEM 분야의 복잡한 문제를 추론할 수 있으며, 긴 문맥을 활용해 대규모 데이터셋, 코드베이스 및 문서를 분석합니다."
1531
1525
  },
1526
+ "gemini-3-pro-preview": {
1527
+ "description": "Gemini 3 Pro는 Google의 가장 지능적인 모델로, 최첨단 추론 및 멀티모달 이해 능력과 강력한 에이전트 기능 및 분위기 인코딩 기능을 갖추고 있습니다."
1528
+ },
1532
1529
  "gemini-flash-latest": {
1533
1530
  "description": "Gemini Flash 최신 버전"
1534
1531
  },
@@ -65,6 +65,9 @@
65
65
  "thinking": {
66
66
  "title": "Diepdenkschakelaar"
67
67
  },
68
+ "thinkingLevel": {
69
+ "title": "Denkniveau"
70
+ },
68
71
  "title": "Modeluitbreidingsfunctie",
69
72
  "urlContext": {
70
73
  "desc": "Na inschakeling worden webkoppelingen automatisch geanalyseerd om de daadwerkelijke inhoud van de webpagina te verkrijgen",
@@ -396,6 +399,7 @@
396
399
  "rejectReasonPlaceholder": "Het opgeven van een reden helpt de agent om toekomstige acties te verbeteren",
397
400
  "rejectTitle": "Huidige tooloproep weigeren",
398
401
  "rejectedWithReason": "Deze tooloproep is geweigerd met reden: {{reason}}",
402
+ "toolAbort": "Deze hulpmiddeloproep is door de gebruiker geannuleerd",
399
403
  "toolRejected": "Deze tooloproep is geweigerd"
400
404
  }
401
405
  },
@@ -1481,9 +1481,6 @@
1481
1481
  "gemini-2.0-flash-lite-001": {
1482
1482
  "description": "Gemini 2.0 Flash is een modelvariant die is geoptimaliseerd voor kosteneffectiviteit en lage latentie."
1483
1483
  },
1484
- "gemini-2.0-flash-preview-image-generation": {
1485
- "description": "Gemini 2.0 Flash previewmodel, ondersteunt beeldgeneratie"
1486
- },
1487
1484
  "gemini-2.5-flash": {
1488
1485
  "description": "Gemini 2.5 Flash is het meest kosteneffectieve model van Google en biedt uitgebreide functionaliteiten."
1489
1486
  },
@@ -1511,9 +1508,6 @@
1511
1508
  "gemini-2.5-flash-preview-04-17": {
1512
1509
  "description": "Gemini 2.5 Flash Preview is het meest kosteneffectieve model van Google, dat uitgebreide functionaliteit biedt."
1513
1510
  },
1514
- "gemini-2.5-flash-preview-05-20": {
1515
- "description": "Gemini 2.5 Flash Preview is het meest kosteneffectieve model van Google en biedt uitgebreide functionaliteiten."
1516
- },
1517
1511
  "gemini-2.5-flash-preview-09-2025": {
1518
1512
  "description": "Preview release (25 september 2025) van Gemini 2.5 Flash"
1519
1513
  },
@@ -1529,6 +1523,9 @@
1529
1523
  "gemini-2.5-pro-preview-06-05": {
1530
1524
  "description": "Gemini 2.5 Pro Preview is Google's meest geavanceerde denkwijze-model, in staat om complexe problemen op het gebied van code, wiskunde en STEM te redeneren, en grote datasets, codebases en documenten te analyseren met lange context."
1531
1525
  },
1526
+ "gemini-3-pro-preview": {
1527
+ "description": "Gemini 3 Pro is het meest geavanceerde model van Google, met state-of-the-art redeneringsvermogen en multimodale interpretatie, evenals krachtige agent- en contextcodering."
1528
+ },
1532
1529
  "gemini-flash-latest": {
1533
1530
  "description": "Laatste release van Gemini Flash"
1534
1531
  },
@@ -65,6 +65,9 @@
65
65
  "thinking": {
66
66
  "title": "Przełącznik głębokiego myślenia"
67
67
  },
68
+ "thinkingLevel": {
69
+ "title": "Poziom myślenia"
70
+ },
68
71
  "title": "Funkcje rozszerzenia modelu",
69
72
  "urlContext": {
70
73
  "desc": "Po włączeniu automatycznie analizuje linki do stron internetowych, aby uzyskać rzeczywistą zawartość kontekstu strony",
@@ -396,6 +399,7 @@
396
399
  "rejectReasonPlaceholder": "Wprowadzenie powodu odrzucenia pomoże Agentowi zrozumieć i zoptymalizować przyszłe działania",
397
400
  "rejectTitle": "Odrzuć to wywołanie narzędzia",
398
401
  "rejectedWithReason": "To wywołanie narzędzia zostało odrzucone: {{reason}}",
402
+ "toolAbort": "To wywołanie narzędzia zostało anulowane przez użytkownika",
399
403
  "toolRejected": "To wywołanie narzędzia zostało odrzucone"
400
404
  }
401
405
  },