@lobehub/chat 1.100.2 → 1.101.1

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 (56) hide show
  1. package/CHANGELOG.md +58 -0
  2. package/README.md +2 -2
  3. package/README.zh-CN.md +2 -2
  4. package/changelog/v1.json +21 -0
  5. package/docs/development/basic/add-new-ai-image-model.mdx +36 -0
  6. package/docs/development/basic/add-new-ai-image-model.zh-CN.mdx +0 -0
  7. package/locales/ar/components.json +5 -4
  8. package/locales/ar/models.json +3 -0
  9. package/locales/bg-BG/components.json +5 -4
  10. package/locales/bg-BG/models.json +3 -0
  11. package/locales/de-DE/components.json +5 -4
  12. package/locales/de-DE/models.json +3 -0
  13. package/locales/en-US/components.json +5 -4
  14. package/locales/en-US/models.json +3 -0
  15. package/locales/es-ES/components.json +5 -4
  16. package/locales/es-ES/models.json +3 -0
  17. package/locales/fa-IR/components.json +5 -4
  18. package/locales/fa-IR/models.json +3 -0
  19. package/locales/fr-FR/components.json +5 -4
  20. package/locales/fr-FR/models.json +3 -0
  21. package/locales/it-IT/components.json +5 -4
  22. package/locales/it-IT/models.json +3 -0
  23. package/locales/ja-JP/components.json +5 -4
  24. package/locales/ja-JP/models.json +3 -0
  25. package/locales/ko-KR/components.json +5 -4
  26. package/locales/ko-KR/models.json +3 -0
  27. package/locales/nl-NL/components.json +5 -4
  28. package/locales/nl-NL/models.json +3 -0
  29. package/locales/pl-PL/components.json +5 -4
  30. package/locales/pl-PL/models.json +3 -0
  31. package/locales/pt-BR/components.json +5 -4
  32. package/locales/pt-BR/models.json +3 -0
  33. package/locales/ru-RU/components.json +5 -4
  34. package/locales/ru-RU/models.json +3 -0
  35. package/locales/tr-TR/components.json +5 -4
  36. package/locales/tr-TR/models.json +3 -0
  37. package/locales/vi-VN/components.json +5 -4
  38. package/locales/vi-VN/models.json +3 -0
  39. package/locales/zh-CN/components.json +5 -4
  40. package/locales/zh-CN/models.json +3 -0
  41. package/locales/zh-TW/components.json +5 -4
  42. package/locales/zh-TW/models.json +3 -0
  43. package/package.json +2 -2
  44. package/src/app/[variants]/(auth)/next-auth/signin/AuthSignInBox.tsx +2 -2
  45. package/src/app/[variants]/(main)/image/@menu/components/SeedNumberInput/index.tsx +24 -9
  46. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/DimensionControlGroup.tsx +0 -1
  47. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ImageUpload.tsx +161 -39
  48. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/MultiImagesUpload/ImageManageModal.tsx +10 -10
  49. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/MultiImagesUpload/index.tsx +153 -83
  50. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/SeedNumberInput.tsx +2 -11
  51. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/hooks/useDragAndDrop.ts +71 -0
  52. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/style.ts +17 -0
  53. package/src/config/aiModels/zhipu.ts +29 -6
  54. package/src/libs/model-runtime/utils/openaiCompatibleFactory/index.test.ts +20 -3
  55. package/src/libs/model-runtime/utils/openaiCompatibleFactory/index.ts +20 -11
  56. package/src/locales/default/components.ts +4 -3
package/CHANGELOG.md CHANGED
@@ -2,6 +2,64 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.101.1](https://github.com/lobehub/lobe-chat/compare/v1.101.0...v1.101.1)
6
+
7
+ <sup>Released on **2025-07-19**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **misc**: Try fix authorization code exchange & pin next-auto to `beta.29`.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **misc**: Try fix authorization code exchange & pin next-auto to `beta.29`, closes [#8496](https://github.com/lobehub/lobe-chat/issues/8496) ([27c4881](https://github.com/lobehub/lobe-chat/commit/27c4881))
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.101.0](https://github.com/lobehub/lobe-chat/compare/v1.100.2...v1.101.0)
31
+
32
+ <sup>Released on **2025-07-19**</sup>
33
+
34
+ #### ✨ Features
35
+
36
+ - **misc**: Add zhipu cogview4.
37
+
38
+ #### 🐛 Bug Fixes
39
+
40
+ - **misc**: Some ai image bugs.
41
+
42
+ <br/>
43
+
44
+ <details>
45
+ <summary><kbd>Improvements and Fixes</kbd></summary>
46
+
47
+ #### What's improved
48
+
49
+ - **misc**: Add zhipu cogview4, closes [#8486](https://github.com/lobehub/lobe-chat/issues/8486) ([0b1557d](https://github.com/lobehub/lobe-chat/commit/0b1557d))
50
+
51
+ #### What's fixed
52
+
53
+ - **misc**: Some ai image bugs, closes [#8490](https://github.com/lobehub/lobe-chat/issues/8490) ([5d852be](https://github.com/lobehub/lobe-chat/commit/5d852be))
54
+
55
+ </details>
56
+
57
+ <div align="right">
58
+
59
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
60
+
61
+ </div>
62
+
5
63
  ### [Version 1.100.2](https://github.com/lobehub/lobe-chat/compare/v1.100.1...v1.100.2)
6
64
 
7
65
  <sup>Released on **2025-07-18**</sup>
package/README.md CHANGED
@@ -383,12 +383,12 @@ In addition, these plugins are not limited to news aggregation, but can also ext
383
383
 
384
384
  | Recent Submits | Description |
385
385
  | ---------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
386
+ | [Speak](https://lobechat.com/discover/plugin/speak)<br/><sup>By **speak** on **2025-07-18**</sup> | Learn how to say anything in another language with Speak, your AI-powered language tutor.<br/>`education` `language` |
386
387
  | [PortfolioMeta](https://lobechat.com/discover/plugin/StockData)<br/><sup>By **portfoliometa** on **2025-05-27**</sup> | Analyze stocks and get comprehensive real-time investment data and analytics.<br/>`stock` |
387
388
  | [Web](https://lobechat.com/discover/plugin/web)<br/><sup>By **Proghit** on **2025-01-24**</sup> | Smart web search that reads and analyzes pages to deliver comprehensive answers from Google results.<br/>`web` `search` |
388
389
  | [Bing_websearch](https://lobechat.com/discover/plugin/Bingsearch-identifier)<br/><sup>By **FineHow** on **2024-12-22**</sup> | Search for information from the internet base BingApi<br/>`bingsearch` |
389
- | [Google CSE](https://lobechat.com/discover/plugin/google-cse)<br/><sup>By **vsnthdev** on **2024-12-02**</sup> | Searches Google through their official CSE API.<br/>`web` `search` |
390
390
 
391
- > 📊 Total plugins: [<kbd>**42**</kbd>](https://lobechat.com/discover/plugins)
391
+ > 📊 Total plugins: [<kbd>**43**</kbd>](https://lobechat.com/discover/plugins)
392
392
 
393
393
  <!-- PLUGIN LIST -->
394
394
 
package/README.zh-CN.md CHANGED
@@ -376,12 +376,12 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
376
376
 
377
377
  | 最近新增 | 描述 |
378
378
  | -------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |
379
+ | [Speak](https://lobechat.com/discover/plugin/speak)<br/><sup>By **speak** on **2025-07-18**</sup> | 使用 Speak,您的 AI 语言导师,学习如何用另一种语言说任何事情。<br/>`教育` `语言` |
379
380
  | [PortfolioMeta](https://lobechat.com/discover/plugin/StockData)<br/><sup>By **portfoliometa** on **2025-05-27**</sup> | 分析股票并获取全面的实时投资数据和分析。<br/>`股票` |
380
381
  | [网页](https://lobechat.com/discover/plugin/web)<br/><sup>By **Proghit** on **2025-01-24**</sup> | 智能网页搜索,读取和分析页面,以提供来自 Google 结果的全面答案。<br/>`网页` `搜索` |
381
382
  | [必应网页搜索](https://lobechat.com/discover/plugin/Bingsearch-identifier)<br/><sup>By **FineHow** on **2024-12-22**</sup> | 通过 BingApi 搜索互联网上的信息<br/>`bingsearch` |
382
- | [谷歌自定义搜索引擎](https://lobechat.com/discover/plugin/google-cse)<br/><sup>By **vsnthdev** on **2024-12-02**</sup> | 通过他们的官方自定义搜索引擎 API 搜索谷歌。<br/>`网络` `搜索` |
383
383
 
384
- > 📊 Total plugins: [<kbd>**42**</kbd>](https://lobechat.com/discover/plugins)
384
+ > 📊 Total plugins: [<kbd>**43**</kbd>](https://lobechat.com/discover/plugins)
385
385
 
386
386
  <!-- PLUGIN LIST -->
387
387
 
package/changelog/v1.json CHANGED
@@ -1,4 +1,25 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "fixes": [
5
+ "Try fix authorization code exchange & pin next-auto to beta.29."
6
+ ]
7
+ },
8
+ "date": "2025-07-19",
9
+ "version": "1.101.1"
10
+ },
11
+ {
12
+ "children": {
13
+ "features": [
14
+ "Add zhipu cogview4."
15
+ ],
16
+ "fixes": [
17
+ "Some ai image bugs."
18
+ ]
19
+ },
20
+ "date": "2025-07-19",
21
+ "version": "1.101.0"
22
+ },
2
23
  {
3
24
  "children": {
4
25
  "fixes": [
@@ -0,0 +1,36 @@
1
+ # 添加新的 AI 图像模型
2
+
3
+ ## 兼容 openai 请求格式的模型
4
+
5
+ 指的是可以使用 openai SDK 进行请求,并且请求参数和和返回值和 dall-e 以及 gpt-image-x 系列一致。
6
+
7
+ 以智谱的 CogView-4 为例,它是一个兼容 openai 请求格式的模型,可以按照以下步骤添加:
8
+
9
+ 1. 在对应的 ai models 文件 `src/config/aiModels/zhipu.ts` 中,添加模型配置,例如:
10
+
11
+ ```ts
12
+ const zhipuImageModels: AIImageModelCard[] = [
13
+ // 添加模型配置
14
+ // https://bigmodel.cn/dev/howuse/image-generation-model/cogview-4
15
+ {
16
+ description:
17
+ 'CogView-4 是智谱首个支持生成汉字的开源文生图模型,在语义理解、图像生成质量、中英文字生成能力等方面全面提升,支持任意长度的中英双语输入,能够生成在给定范围内的任意分辨率图像。',
18
+ displayName: 'CogView-4',
19
+ enabled: true,
20
+ id: 'cogview-4',
21
+ parameters: {
22
+ prompt: {
23
+ default: '',
24
+ },
25
+ size: {
26
+ default: '1024x1024',
27
+ enum: ['1024x1024', '768x1344', '864x1152', '1344x768', '1152x864', '1440x720', '720x1440'],
28
+ },
29
+ },
30
+ releasedAt: '2025-03-04',
31
+ type: 'image',
32
+ },
33
+ ];
34
+ ```
35
+
36
+ 2. 执行下 `npx i18n` 命令,更新模型描述的翻译文件
@@ -70,11 +70,12 @@
70
70
  },
71
71
  "ImageUpload": {
72
72
  "actions": {
73
- "changeImage": "انقر لتغيير الصورة"
73
+ "changeImage": "انقر لتغيير الصورة",
74
+ "dropMultipleFiles": "لا يدعم تحميل ملفات متعددة في آن واحد، سيتم استخدام الملف الأول فقط"
74
75
  },
75
76
  "placeholder": {
76
77
  "primary": "إضافة صورة",
77
- "secondary": "انقر للتحميل"
78
+ "secondary": "انقر أو اسحب للإرفاق"
78
79
  }
79
80
  },
80
81
  "KeyValueEditor": {
@@ -109,7 +110,7 @@
109
110
  },
110
111
  "MultiImagesUpload": {
111
112
  "actions": {
112
- "uploadMore": "انقر لتحميل المزيد"
113
+ "uploadMore": "انقر أو اسحب لإضافة المزيد"
113
114
  },
114
115
  "modal": {
115
116
  "complete": "اكتمل",
@@ -119,7 +120,7 @@
119
120
  "upload": "تحميل الصور"
120
121
  },
121
122
  "placeholder": {
122
- "primary": "انقر لتحميل الصور",
123
+ "primary": "انقر أو اسحب لتحميل الصور",
123
124
  "secondary": "يدعم اختيار عدة صور"
124
125
  },
125
126
  "progress": {
@@ -656,6 +656,9 @@
656
656
  "cognitivecomputations/dolphin-mixtral-8x22b": {
657
657
  "description": "Dolphin Mixtral 8x22B هو نموذج مصمم للامتثال للتعليمات، والحوار، والبرمجة."
658
658
  },
659
+ "cogview-4": {
660
+ "description": "CogView-4 هو أول نموذج مفتوح المصدر من Zhipu يدعم توليد الحروف الصينية، مع تحسينات شاملة في فهم المعاني، وجودة توليد الصور، وقدرات توليد النصوص باللغتين الصينية والإنجليزية، ويدعم إدخال ثنائي اللغة بأي طول، وقادر على توليد صور بأي دقة ضمن النطاق المحدد."
661
+ },
659
662
  "cohere-command-r": {
660
663
  "description": "نموذج توليدي قابل للتوسع يستهدف RAG واستخدام الأدوات لتمكين الذكاء الاصطناعي على نطاق الإنتاج للمؤسسات."
661
664
  },
@@ -70,11 +70,12 @@
70
70
  },
71
71
  "ImageUpload": {
72
72
  "actions": {
73
- "changeImage": "Кликнете, за да смените изображението"
73
+ "changeImage": "Кликнете, за да смените изображението",
74
+ "dropMultipleFiles": "Не се поддържа качване на няколко файла едновременно, ще бъде използван само първият файл"
74
75
  },
75
76
  "placeholder": {
76
77
  "primary": "Добавяне на изображение",
77
- "secondary": "Кликнете, за да качите"
78
+ "secondary": "Кликнете или плъзнете, за да качите"
78
79
  }
79
80
  },
80
81
  "KeyValueEditor": {
@@ -109,7 +110,7 @@
109
110
  },
110
111
  "MultiImagesUpload": {
111
112
  "actions": {
112
- "uploadMore": "Кликнете, за да качите още"
113
+ "uploadMore": "Кликнете или плъзнете, за да качите още"
113
114
  },
114
115
  "modal": {
115
116
  "complete": "Готово",
@@ -119,7 +120,7 @@
119
120
  "upload": "Качване на изображение"
120
121
  },
121
122
  "placeholder": {
122
- "primary": "Кликнете, за да качите изображение",
123
+ "primary": "Кликнете или плъзнете, за да качите изображение",
123
124
  "secondary": "Поддържа избор на няколко изображения"
124
125
  },
125
126
  "progress": {
@@ -656,6 +656,9 @@
656
656
  "cognitivecomputations/dolphin-mixtral-8x22b": {
657
657
  "description": "Dolphin Mixtral 8x22B е модел, проектиран за следване на инструкции, диалози и програмиране."
658
658
  },
659
+ "cogview-4": {
660
+ "description": "CogView-4 е първият отворен модел за генериране на изображения с текст на китайски, разработен от Zhipu, който значително подобрява разбирането на семантиката, качеството на генериране на изображения и способността за генериране на текст на китайски и английски език. Поддържа двуезичен вход на произволна дължина на китайски и английски и може да генерира изображения с произволна резолюция в зададения диапазон."
661
+ },
659
662
  "cohere-command-r": {
660
663
  "description": "Command R е мащабируем генеративен модел, насочен към RAG и използване на инструменти, за да позволи AI на производствено ниво за предприятия."
661
664
  },
@@ -70,11 +70,12 @@
70
70
  },
71
71
  "ImageUpload": {
72
72
  "actions": {
73
- "changeImage": "Bild ändern"
73
+ "changeImage": "Klicken, um das Bild zu ändern",
74
+ "dropMultipleFiles": "Das Hochladen mehrerer Dateien wird nicht unterstützt, es wird nur die erste Datei verwendet"
74
75
  },
75
76
  "placeholder": {
76
77
  "primary": "Bild hinzufügen",
77
- "secondary": "Zum Hochladen klicken"
78
+ "secondary": "Klicken oder ziehen, um hochzuladen"
78
79
  }
79
80
  },
80
81
  "KeyValueEditor": {
@@ -109,7 +110,7 @@
109
110
  },
110
111
  "MultiImagesUpload": {
111
112
  "actions": {
112
- "uploadMore": "Klicken Sie, um weitere hochzuladen"
113
+ "uploadMore": "Klicken oder ziehen, um mehr hochzuladen"
113
114
  },
114
115
  "modal": {
115
116
  "complete": "Fertig",
@@ -119,7 +120,7 @@
119
120
  "upload": "Bild hochladen"
120
121
  },
121
122
  "placeholder": {
122
- "primary": "Klicken Sie, um Bilder hochzuladen",
123
+ "primary": "Klicken oder ziehen, um Bilder hochzuladen",
123
124
  "secondary": "Mehrere Bilder können ausgewählt werden"
124
125
  },
125
126
  "progress": {
@@ -656,6 +656,9 @@
656
656
  "cognitivecomputations/dolphin-mixtral-8x22b": {
657
657
  "description": "Dolphin Mixtral 8x22B ist ein Modell, das für die Befolgung von Anweisungen, Dialoge und Programmierung entwickelt wurde."
658
658
  },
659
+ "cogview-4": {
660
+ "description": "CogView-4 ist das erste von Zhipu entwickelte Open-Source-Text-zu-Bild-Modell, das die Generierung chinesischer Schriftzeichen unterstützt. Es bietet umfassende Verbesserungen in den Bereichen semantisches Verständnis, Bildgenerierungsqualität und die Fähigkeit, chinesische und englische Schriftzeichen zu erzeugen. Es unterstützt mehrsprachige Eingaben beliebiger Länge in Chinesisch und Englisch und kann Bilder in beliebiger Auflösung innerhalb eines vorgegebenen Bereichs erzeugen."
661
+ },
659
662
  "cohere-command-r": {
660
663
  "description": "Command R ist ein skalierbares generatives Modell, das auf RAG und Tool-Nutzung abzielt, um KI in Produktionsgröße für Unternehmen zu ermöglichen."
661
664
  },
@@ -70,11 +70,12 @@
70
70
  },
71
71
  "ImageUpload": {
72
72
  "actions": {
73
- "changeImage": "Click to Change Image"
73
+ "changeImage": "Click to change image",
74
+ "dropMultipleFiles": "Uploading multiple files at once is not supported; only the first file will be used"
74
75
  },
75
76
  "placeholder": {
76
77
  "primary": "Add Image",
77
- "secondary": "Click to Upload"
78
+ "secondary": "Click or drag to upload"
78
79
  }
79
80
  },
80
81
  "KeyValueEditor": {
@@ -109,7 +110,7 @@
109
110
  },
110
111
  "MultiImagesUpload": {
111
112
  "actions": {
112
- "uploadMore": "Click to upload more"
113
+ "uploadMore": "Click or drag to upload more"
113
114
  },
114
115
  "modal": {
115
116
  "complete": "Done",
@@ -119,7 +120,7 @@
119
120
  "upload": "Upload Images"
120
121
  },
121
122
  "placeholder": {
122
- "primary": "Click to upload images",
123
+ "primary": "Click or drag to upload images",
123
124
  "secondary": "Supports multiple image selection"
124
125
  },
125
126
  "progress": {
@@ -656,6 +656,9 @@
656
656
  "cognitivecomputations/dolphin-mixtral-8x22b": {
657
657
  "description": "Dolphin Mixtral 8x22B is a model designed for instruction following, dialogue, and programming."
658
658
  },
659
+ "cogview-4": {
660
+ "description": "CogView-4 is Zhipu's first open-source text-to-image model supporting Chinese character generation. It offers comprehensive improvements in semantic understanding, image generation quality, and bilingual Chinese-English text generation capabilities. It supports bilingual input of any length and can generate images at any resolution within a specified range."
661
+ },
659
662
  "cohere-command-r": {
660
663
  "description": "Command R is a scalable generative model targeting RAG and Tool Use to enable production-scale AI for enterprises."
661
664
  },
@@ -70,11 +70,12 @@
70
70
  },
71
71
  "ImageUpload": {
72
72
  "actions": {
73
- "changeImage": "Haz clic para cambiar la imagen"
73
+ "changeImage": "Haz clic para cambiar la imagen",
74
+ "dropMultipleFiles": "No se admite la carga múltiple de archivos, solo se utilizará el primer archivo"
74
75
  },
75
76
  "placeholder": {
76
77
  "primary": "Agregar imagen",
77
- "secondary": "Haz clic para subir"
78
+ "secondary": "Haga clic o arrastre para subir"
78
79
  }
79
80
  },
80
81
  "KeyValueEditor": {
@@ -109,7 +110,7 @@
109
110
  },
110
111
  "MultiImagesUpload": {
111
112
  "actions": {
112
- "uploadMore": "Haz clic para subir más"
113
+ "uploadMore": "Haz clic o arrastra para subir más"
113
114
  },
114
115
  "modal": {
115
116
  "complete": "Completar",
@@ -119,7 +120,7 @@
119
120
  "upload": "Subir imágenes"
120
121
  },
121
122
  "placeholder": {
122
- "primary": "Haz clic para subir imágenes",
123
+ "primary": "Haz clic o arrastra para subir imágenes",
123
124
  "secondary": "Se admite la selección de múltiples imágenes"
124
125
  },
125
126
  "progress": {
@@ -656,6 +656,9 @@
656
656
  "cognitivecomputations/dolphin-mixtral-8x22b": {
657
657
  "description": "Dolphin Mixtral 8x22B es un modelo diseñado para seguir instrucciones, diálogos y programación."
658
658
  },
659
+ "cogview-4": {
660
+ "description": "CogView-4 es el primer modelo de generación de imágenes a partir de texto de código abierto de Zhipu que admite la generación de caracteres chinos. Ofrece mejoras integrales en la comprensión semántica, la calidad de generación de imágenes y la capacidad de generar texto en chino e inglés. Soporta entradas bilingües en chino e inglés de cualquier longitud y puede generar imágenes en cualquier resolución dentro del rango especificado."
661
+ },
659
662
  "cohere-command-r": {
660
663
  "description": "Command R es un modelo generativo escalable dirigido a RAG y uso de herramientas para habilitar IA a escala de producción para empresas."
661
664
  },
@@ -70,11 +70,12 @@
70
70
  },
71
71
  "ImageUpload": {
72
72
  "actions": {
73
- "changeImage": "برای تغییر تصویر کلیک کنید"
73
+ "changeImage": "برای تغییر تصویر کلیک کنید",
74
+ "dropMultipleFiles": "بارگذاری چندین فایل به طور همزمان پشتیبانی نمی‌شود، فقط اولین فایل استفاده خواهد شد"
74
75
  },
75
76
  "placeholder": {
76
77
  "primary": "افزودن تصویر",
77
- "secondary": "برای بارگذاری کلیک کنید"
78
+ "secondary": "برای آپلود کلیک کنید یا بکشید"
78
79
  }
79
80
  },
80
81
  "KeyValueEditor": {
@@ -109,7 +110,7 @@
109
110
  },
110
111
  "MultiImagesUpload": {
111
112
  "actions": {
112
- "uploadMore": "برای آپلود بیشتر کلیک کنید"
113
+ "uploadMore": "برای آپلود بیشتر کلیک کنید یا بکشید"
113
114
  },
114
115
  "modal": {
115
116
  "complete": "تکمیل",
@@ -119,7 +120,7 @@
119
120
  "upload": "آپلود تصویر"
120
121
  },
121
122
  "placeholder": {
122
- "primary": "برای آپلود تصویر کلیک کنید",
123
+ "primary": "برای آپلود تصویر کلیک کنید یا بکشید",
123
124
  "secondary": "انتخاب چندین تصویر پشتیبانی می‌شود"
124
125
  },
125
126
  "progress": {
@@ -656,6 +656,9 @@
656
656
  "cognitivecomputations/dolphin-mixtral-8x22b": {
657
657
  "description": "Dolphin Mixtral 8x22B یک مدل طراحی شده برای پیروی از دستورات، مکالمه و برنامه‌نویسی است."
658
658
  },
659
+ "cogview-4": {
660
+ "description": "CogView-4 نخستین مدل متن به تصویر متن‌باز Zhizhu است که از تولید حروف چینی پشتیبانی می‌کند. این مدل در درک معنایی، کیفیت تولید تصویر و توانایی تولید متون چینی و انگلیسی به طور جامع بهبود یافته است، از ورودی دوزبانه چینی و انگلیسی با طول دلخواه پشتیبانی می‌کند و قادر است تصاویر با هر وضوحی در محدوده داده شده تولید کند."
661
+ },
659
662
  "cohere-command-r": {
660
663
  "description": "Command R یک مدل تولیدی قابل گسترش است که برای RAG و استفاده از ابزارها طراحی شده است و به شرکت‌ها امکان می‌دهد تا به هوش مصنوعی در سطح تولید دست یابند."
661
664
  },
@@ -70,11 +70,12 @@
70
70
  },
71
71
  "ImageUpload": {
72
72
  "actions": {
73
- "changeImage": "Cliquez pour changer l'image"
73
+ "changeImage": "Cliquez pour changer l'image",
74
+ "dropMultipleFiles": "Le téléchargement multiple de fichiers n'est pas pris en charge, seul le premier fichier sera utilisé"
74
75
  },
75
76
  "placeholder": {
76
77
  "primary": "Ajouter une image",
77
- "secondary": "Cliquez pour télécharger"
78
+ "secondary": "Cliquez ou faites glisser pour télécharger"
78
79
  }
79
80
  },
80
81
  "KeyValueEditor": {
@@ -109,7 +110,7 @@
109
110
  },
110
111
  "MultiImagesUpload": {
111
112
  "actions": {
112
- "uploadMore": "Cliquez pour télécharger plus"
113
+ "uploadMore": "Cliquez ou glissez pour télécharger plus"
113
114
  },
114
115
  "modal": {
115
116
  "complete": "Terminé",
@@ -119,7 +120,7 @@
119
120
  "upload": "Télécharger des images"
120
121
  },
121
122
  "placeholder": {
122
- "primary": "Cliquez pour télécharger des images",
123
+ "primary": "Cliquez ou glissez pour télécharger une image",
123
124
  "secondary": "Prise en charge de la sélection de plusieurs images"
124
125
  },
125
126
  "progress": {
@@ -656,6 +656,9 @@
656
656
  "cognitivecomputations/dolphin-mixtral-8x22b": {
657
657
  "description": "Dolphin Mixtral 8x22B est un modèle conçu pour le suivi des instructions, le dialogue et la programmation."
658
658
  },
659
+ "cogview-4": {
660
+ "description": "CogView-4 est le premier modèle open source de génération d'images à partir de texte de Zhizhu, prenant en charge la génération de caractères chinois. Il offre une amélioration globale en compréhension sémantique, qualité de génération d'images, et capacité de génération de textes en chinois et en anglais. Il supporte une entrée bilingue chinois-anglais de longueur arbitraire et peut générer des images à n'importe quelle résolution dans une plage donnée."
661
+ },
659
662
  "cohere-command-r": {
660
663
  "description": "Command R est un modèle génératif évolutif ciblant RAG et l'utilisation d'outils pour permettre une IA à l'échelle de la production pour les entreprises."
661
664
  },
@@ -70,11 +70,12 @@
70
70
  },
71
71
  "ImageUpload": {
72
72
  "actions": {
73
- "changeImage": "Clicca per cambiare immagine"
73
+ "changeImage": "Clicca per cambiare immagine",
74
+ "dropMultipleFiles": "Non è supportato il caricamento multiplo di file, verrà utilizzato solo il primo file"
74
75
  },
75
76
  "placeholder": {
76
77
  "primary": "Aggiungi immagine",
77
- "secondary": "Clicca per caricare"
78
+ "secondary": "Clicca o trascina per caricare"
78
79
  }
79
80
  },
80
81
  "KeyValueEditor": {
@@ -109,7 +110,7 @@
109
110
  },
110
111
  "MultiImagesUpload": {
111
112
  "actions": {
112
- "uploadMore": "Clicca per caricare altre"
113
+ "uploadMore": "Clicca o trascina per caricare di più"
113
114
  },
114
115
  "modal": {
115
116
  "complete": "Completa",
@@ -119,7 +120,7 @@
119
120
  "upload": "Carica immagine"
120
121
  },
121
122
  "placeholder": {
122
- "primary": "Clicca per caricare immagini",
123
+ "primary": "Clicca o trascina per caricare immagini",
123
124
  "secondary": "Supporta la selezione di più immagini"
124
125
  },
125
126
  "progress": {
@@ -656,6 +656,9 @@
656
656
  "cognitivecomputations/dolphin-mixtral-8x22b": {
657
657
  "description": "Dolphin Mixtral 8x22B è un modello progettato per seguire istruzioni, dialogo e programmazione."
658
658
  },
659
+ "cogview-4": {
660
+ "description": "CogView-4 è il primo modello open source di Zhipu che supporta la generazione di caratteri cinesi, con miglioramenti completi nella comprensione semantica, nella qualità della generazione delle immagini e nella capacità di generare testi in cinese e inglese. Supporta input bilingue cinese-inglese di qualsiasi lunghezza e può generare immagini a risoluzione arbitraria entro un intervallo specificato."
661
+ },
659
662
  "cohere-command-r": {
660
663
  "description": "Command R è un modello generativo scalabile mirato a RAG e all'uso di strumenti per abilitare l'IA su scala aziendale."
661
664
  },
@@ -70,11 +70,12 @@
70
70
  },
71
71
  "ImageUpload": {
72
72
  "actions": {
73
- "changeImage": "クリックして画像を変更"
73
+ "changeImage": "画像を変更するにはクリックしてください",
74
+ "dropMultipleFiles": "複数ファイルの同時アップロードはサポートされていません。最初のファイルのみが使用されます。"
74
75
  },
75
76
  "placeholder": {
76
77
  "primary": "画像を追加",
77
- "secondary": "クリックしてアップロード"
78
+ "secondary": "クリックまたはドラッグしてアップロード"
78
79
  }
79
80
  },
80
81
  "KeyValueEditor": {
@@ -109,7 +110,7 @@
109
110
  },
110
111
  "MultiImagesUpload": {
111
112
  "actions": {
112
- "uploadMore": "さらにアップロード"
113
+ "uploadMore": "クリックまたはドラッグしてさらにアップロード"
113
114
  },
114
115
  "modal": {
115
116
  "complete": "完了",
@@ -119,7 +120,7 @@
119
120
  "upload": "画像をアップロード"
120
121
  },
121
122
  "placeholder": {
122
- "primary": "クリックして画像をアップロード",
123
+ "primary": "クリックまたはドラッグして画像をアップロード",
123
124
  "secondary": "複数の画像を選択可能"
124
125
  },
125
126
  "progress": {
@@ -656,6 +656,9 @@
656
656
  "cognitivecomputations/dolphin-mixtral-8x22b": {
657
657
  "description": "Dolphin Mixtral 8x22Bは指示遵守、対話、プログラミングのために設計されたモデルです。"
658
658
  },
659
+ "cogview-4": {
660
+ "description": "CogView-4 は智譜が初めて開発した漢字生成対応のオープンソーステキストから画像生成モデルであり、意味理解、画像生成の品質、中英文字生成能力の全方位的な向上を実現しています。任意の長さの中英バイリンガル入力に対応し、指定された範囲内で任意の解像度の画像を生成することが可能です。"
661
+ },
659
662
  "cohere-command-r": {
660
663
  "description": "Command Rは、RAGとツール使用をターゲットにしたスケーラブルな生成モデルで、企業向けの生産規模のAIを実現します。"
661
664
  },
@@ -70,11 +70,12 @@
70
70
  },
71
71
  "ImageUpload": {
72
72
  "actions": {
73
- "changeImage": "클릭하여 이미지 변경"
73
+ "changeImage": "이미지 변경 클릭",
74
+ "dropMultipleFiles": "여러 파일 업로드는 지원하지 않으며, 첫 번째 파일만 사용됩니다"
74
75
  },
75
76
  "placeholder": {
76
77
  "primary": "이미지 추가",
77
- "secondary": "클릭하여 업로드"
78
+ "secondary": "클릭하거나 드래그하여 업로드"
78
79
  }
79
80
  },
80
81
  "KeyValueEditor": {
@@ -109,7 +110,7 @@
109
110
  },
110
111
  "MultiImagesUpload": {
111
112
  "actions": {
112
- "uploadMore": "더 업로드하려면 클릭"
113
+ "uploadMore": "클릭하거나 드래그하여 업로드"
113
114
  },
114
115
  "modal": {
115
116
  "complete": "완료",
@@ -119,7 +120,7 @@
119
120
  "upload": "이미지 업로드"
120
121
  },
121
122
  "placeholder": {
122
- "primary": "클릭하여 이미지 업로드",
123
+ "primary": "클릭하거나 드래그하여 이미지를 업로드하세요",
123
124
  "secondary": "여러 이미지 선택 가능"
124
125
  },
125
126
  "progress": {
@@ -656,6 +656,9 @@
656
656
  "cognitivecomputations/dolphin-mixtral-8x22b": {
657
657
  "description": "Dolphin Mixtral 8x22B는 지시 준수, 대화 및 프로그래밍을 위해 설계된 모델입니다."
658
658
  },
659
+ "cogview-4": {
660
+ "description": "CogView-4는 지푸가 처음으로 한자 생성을 지원하는 오픈 소스 텍스트-이미지 생성 모델로, 의미 이해, 이미지 생성 품질, 중영 문자 생성 능력 등 여러 측면에서 전면적으로 향상되었으며, 임의 길이의 중영 이중 언어 입력을 지원하고 주어진 범위 내에서 임의 해상도의 이미지를 생성할 수 있습니다."
661
+ },
659
662
  "cohere-command-r": {
660
663
  "description": "Command R은 RAG 및 도구 사용을 목표로 하는 확장 가능한 생성 모델로, 기업을 위한 생산 규모 AI를 가능하게 합니다."
661
664
  },