@lobehub/chat 1.123.4 → 1.124.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.
- package/.env.example +5 -0
- package/CHANGELOG.md +58 -0
- package/Dockerfile +2 -0
- package/Dockerfile.database +2 -0
- package/Dockerfile.pglite +2 -0
- package/changelog/v1.json +21 -0
- package/docs/self-hosting/environment-variables/model-provider.mdx +18 -0
- package/docs/self-hosting/environment-variables/model-provider.zh-CN.mdx +20 -0
- package/locales/ar/chat.json +8 -2
- package/locales/ar/editor.json +47 -0
- package/locales/bg-BG/chat.json +8 -2
- package/locales/bg-BG/editor.json +47 -0
- package/locales/de-DE/chat.json +8 -2
- package/locales/de-DE/editor.json +47 -0
- package/locales/en-US/chat.json +8 -2
- package/locales/en-US/editor.json +47 -0
- package/locales/es-ES/chat.json +8 -2
- package/locales/es-ES/editor.json +47 -0
- package/locales/es-ES/models.json +3 -1
- package/locales/fa-IR/chat.json +8 -2
- package/locales/fa-IR/editor.json +47 -0
- package/locales/fr-FR/chat.json +8 -2
- package/locales/fr-FR/editor.json +47 -0
- package/locales/it-IT/chat.json +8 -2
- package/locales/it-IT/editor.json +47 -0
- package/locales/ja-JP/chat.json +8 -2
- package/locales/ja-JP/editor.json +47 -0
- package/locales/ko-KR/chat.json +8 -2
- package/locales/ko-KR/editor.json +47 -0
- package/locales/ko-KR/models.json +3 -1
- package/locales/nl-NL/chat.json +8 -2
- package/locales/nl-NL/editor.json +47 -0
- package/locales/nl-NL/models.json +3 -1
- package/locales/pl-PL/chat.json +8 -2
- package/locales/pl-PL/editor.json +47 -0
- package/locales/pt-BR/chat.json +8 -2
- package/locales/pt-BR/editor.json +47 -0
- package/locales/ru-RU/chat.json +8 -2
- package/locales/ru-RU/editor.json +47 -0
- package/locales/tr-TR/chat.json +8 -2
- package/locales/tr-TR/editor.json +47 -0
- package/locales/vi-VN/chat.json +8 -2
- package/locales/vi-VN/editor.json +47 -0
- package/locales/zh-CN/chat.json +8 -2
- package/locales/zh-CN/editor.json +47 -0
- package/locales/zh-CN/modelProvider.json +1 -1
- package/locales/zh-TW/chat.json +8 -2
- package/locales/zh-TW/editor.json +47 -0
- package/locales/zh-TW/models.json +3 -1
- package/next.config.ts +4 -0
- package/package.json +4 -2
- package/packages/const/src/layoutTokens.ts +1 -0
- package/packages/model-bank/src/aiModels/aihubmix.ts +38 -4
- package/packages/model-bank/src/aiModels/groq.ts +26 -8
- package/packages/model-bank/src/aiModels/hunyuan.ts +3 -3
- package/packages/model-bank/src/aiModels/modelscope.ts +13 -2
- package/packages/model-bank/src/aiModels/moonshot.ts +25 -5
- package/packages/model-bank/src/aiModels/novita.ts +40 -9
- package/packages/model-bank/src/aiModels/openrouter.ts +0 -13
- package/packages/model-bank/src/aiModels/qwen.ts +62 -1
- package/packages/model-bank/src/aiModels/siliconcloud.ts +20 -0
- package/packages/model-bank/src/aiModels/volcengine.ts +141 -15
- package/packages/model-runtime/src/newapi/index.test.ts +49 -42
- package/packages/model-runtime/src/newapi/index.ts +124 -143
- package/packages/types/src/index.ts +1 -0
- package/packages/utils/src/index.ts +1 -0
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/{Footer/MessageFromUrl.tsx → MessageFromUrl.tsx} +3 -2
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/index.tsx +129 -28
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/index.tsx +44 -66
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/useSend.ts +141 -0
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/Content.tsx +7 -1
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/InboxWelcome/QuestionSuggest.tsx +3 -2
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/OpeningQuestions.tsx +3 -2
- package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/HeaderAction.tsx +18 -2
- package/src/app/[variants]/(main)/settings/provider/(detail)/newapi/page.tsx +1 -1
- package/src/config/llm.ts +8 -0
- package/src/features/ChatInput/ActionBar/STT/common.tsx +41 -47
- package/src/features/ChatInput/{Topic → ActionBar/SaveTopic}/index.tsx +15 -4
- package/src/features/ChatInput/ActionBar/Typo/index.tsx +22 -0
- package/src/features/ChatInput/ActionBar/components/Action.tsx +4 -0
- package/src/features/ChatInput/ActionBar/config.ts +7 -1
- package/src/features/ChatInput/ActionBar/index.tsx +40 -51
- package/src/features/ChatInput/ChatInputProvider.tsx +54 -0
- package/src/features/ChatInput/Desktop/FilePreview/FileItem/index.tsx +20 -11
- package/src/features/ChatInput/Desktop/FilePreview/FileList.tsx +16 -15
- package/src/features/ChatInput/Desktop/index.tsx +94 -69
- package/src/features/ChatInput/InputEditor/index.tsx +134 -0
- package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/File.tsx +1 -2
- package/src/features/ChatInput/Mobile/FilePreview/index.tsx +44 -0
- package/src/features/ChatInput/Mobile/index.tsx +72 -0
- package/src/features/ChatInput/SendArea/ExpandButton.tsx +30 -0
- package/src/features/ChatInput/SendArea/SendButton.tsx +29 -0
- package/src/features/ChatInput/SendArea/ShortcutHint.tsx +52 -0
- package/src/features/ChatInput/SendArea/index.tsx +36 -0
- package/src/features/ChatInput/StoreUpdater.tsx +41 -0
- package/src/features/ChatInput/TypoBar/index.tsx +139 -0
- package/src/features/ChatInput/hooks/useChatInputEditor.ts +36 -0
- package/src/features/ChatInput/index.ts +7 -0
- package/src/features/ChatInput/store/action.ts +75 -0
- package/src/features/ChatInput/store/index.ts +23 -0
- package/src/features/ChatInput/store/initialState.ts +54 -0
- package/src/features/ChatInput/store/selectors.ts +5 -0
- package/src/features/Conversation/components/BackBottom/style.ts +1 -1
- package/src/features/Conversation/components/SkeletonList.tsx +10 -3
- package/src/features/Conversation/components/VirtualizedList/index.tsx +53 -44
- package/src/features/Conversation/components/WideScreenContainer/index.tsx +43 -0
- package/src/features/Portal/Thread/Chat/ChatInput/index.tsx +49 -42
- package/src/features/Portal/Thread/Chat/ChatInput/useSend.ts +48 -22
- package/src/features/Portal/Thread/Chat/index.tsx +2 -2
- package/src/features/Portal/Thread/Header/index.tsx +1 -1
- package/src/hooks/useHotkeys/chatScope.ts +5 -3
- package/src/layout/GlobalProvider/Editor.tsx +27 -0
- package/src/layout/GlobalProvider/Locale.tsx +3 -23
- package/src/locales/default/chat.ts +8 -2
- package/src/locales/default/editor.ts +47 -0
- package/src/locales/default/index.ts +2 -0
- package/src/locales/default/modelProvider.ts +1 -1
- package/src/services/aiChat.ts +8 -2
- package/src/store/chat/slices/aiChat/actions/__tests__/cancel-functionality.test.ts +107 -0
- package/src/store/chat/slices/aiChat/actions/__tests__/generateAIChatV2.test.ts +394 -40
- package/src/store/chat/slices/aiChat/actions/generateAIChatV2.ts +175 -35
- package/src/store/chat/slices/aiChat/initialState.ts +19 -0
- package/src/store/chat/slices/aiChat/selectors.ts +18 -0
- package/src/store/global/action.test.ts +6 -5
- package/src/store/global/actions/__tests__/general.test.ts +6 -6
- package/src/store/global/actions/workspacePane.ts +6 -0
- package/src/store/global/initialState.ts +2 -4
- package/src/store/global/selectors/systemStatus.test.ts +1 -2
- package/src/store/global/selectors/systemStatus.ts +2 -5
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/SendMore.tsx +0 -104
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/ShortcutHint.tsx +0 -40
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/Footer/index.tsx +0 -125
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/TextArea.test.tsx +0 -332
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/TextArea.tsx +0 -29
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files/index.tsx +0 -33
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/InputArea/Container.tsx +0 -41
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/InputArea/index.tsx +0 -156
- package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Send.tsx +0 -33
- package/src/features/ChatInput/Desktop/Header/index.tsx +0 -30
- package/src/features/ChatInput/Desktop/InputArea/index.tsx +0 -143
- package/src/features/ChatInput/Desktop/__tests__/useAutoFocus.test.ts +0 -45
- package/src/features/ChatInput/Desktop/useAutoFocus.ts +0 -13
- package/src/features/ChatInput/useSend.ts +0 -102
- package/src/features/Portal/Thread/Chat/ChatInput/Footer.tsx +0 -90
- package/src/features/Portal/Thread/Chat/ChatInput/TextArea.tsx +0 -30
- package/src/libs/trpc/client/types.ts +0 -18
- /package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/Image.tsx +0 -0
- /package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/index.tsx +0 -0
- /package/src/{app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files → features/ChatInput/Mobile/FilePreview}/FileItem/style.ts +0 -0
package/.env.example
CHANGED
@@ -173,6 +173,11 @@ OPENAI_API_KEY=sk-xxxxxxxxx
|
|
173
173
|
|
174
174
|
# NEBIUS_API_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
175
175
|
|
176
|
+
### NewAPI Service ###
|
177
|
+
|
178
|
+
# NEWAPI_API_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
179
|
+
# NEWAPI_PROXY_URL=https://your-newapi-server.com
|
180
|
+
|
176
181
|
########################################
|
177
182
|
############ Market Service ############
|
178
183
|
########################################
|
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,64 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.124.1](https://github.com/lobehub/lobe-chat/compare/v1.124.0...v1.124.1)
|
6
|
+
|
7
|
+
<sup>Released on **2025-09-06**</sup>
|
8
|
+
|
9
|
+
#### 🐛 Bug Fixes
|
10
|
+
|
11
|
+
- **misc**: Enhance NewAPI with environment variables and fix routers compatibility.
|
12
|
+
|
13
|
+
#### 💄 Styles
|
14
|
+
|
15
|
+
- **misc**: Update doubao-seed-1.6-vision models.
|
16
|
+
|
17
|
+
<br/>
|
18
|
+
|
19
|
+
<details>
|
20
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
21
|
+
|
22
|
+
#### What's fixed
|
23
|
+
|
24
|
+
- **misc**: Enhance NewAPI with environment variables and fix routers compatibility, closes [#9110](https://github.com/lobehub/lobe-chat/issues/9110) ([a66856d](https://github.com/lobehub/lobe-chat/commit/a66856d))
|
25
|
+
|
26
|
+
#### Styles
|
27
|
+
|
28
|
+
- **misc**: Update doubao-seed-1.6-vision models, closes [#9052](https://github.com/lobehub/lobe-chat/issues/9052) ([df2d001](https://github.com/lobehub/lobe-chat/commit/df2d001))
|
29
|
+
|
30
|
+
</details>
|
31
|
+
|
32
|
+
<div align="right">
|
33
|
+
|
34
|
+
[](#readme-top)
|
35
|
+
|
36
|
+
</div>
|
37
|
+
|
38
|
+
## [Version 1.124.0](https://github.com/lobehub/lobe-chat/compare/v1.123.4...v1.124.0)
|
39
|
+
|
40
|
+
<sup>Released on **2025-09-06**</sup>
|
41
|
+
|
42
|
+
#### ✨ Features
|
43
|
+
|
44
|
+
- **misc**: ChatInput support rich text and support parallel send.
|
45
|
+
|
46
|
+
<br/>
|
47
|
+
|
48
|
+
<details>
|
49
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
50
|
+
|
51
|
+
#### What's improved
|
52
|
+
|
53
|
+
- **misc**: ChatInput support rich text and support parallel send, closes [#8964](https://github.com/lobehub/lobe-chat/issues/8964) ([38d9d98](https://github.com/lobehub/lobe-chat/commit/38d9d98))
|
54
|
+
|
55
|
+
</details>
|
56
|
+
|
57
|
+
<div align="right">
|
58
|
+
|
59
|
+
[](#readme-top)
|
60
|
+
|
61
|
+
</div>
|
62
|
+
|
5
63
|
### [Version 1.123.4](https://github.com/lobehub/lobe-chat/compare/v1.123.3...v1.123.4)
|
6
64
|
|
7
65
|
<sup>Released on **2025-09-05**</sup>
|
package/Dockerfile
CHANGED
@@ -196,6 +196,8 @@ ENV \
|
|
196
196
|
MOONSHOT_API_KEY="" MOONSHOT_MODEL_LIST="" MOONSHOT_PROXY_URL="" \
|
197
197
|
# Nebius
|
198
198
|
NEBIUS_API_KEY="" NEBIUS_MODEL_LIST="" NEBIUS_PROXY_URL="" \
|
199
|
+
# NewAPI
|
200
|
+
NEWAPI_API_KEY="" NEWAPI_PROXY_URL="" \
|
199
201
|
# Novita
|
200
202
|
NOVITA_API_KEY="" NOVITA_MODEL_LIST="" \
|
201
203
|
# Nvidia NIM
|
package/Dockerfile.database
CHANGED
@@ -238,6 +238,8 @@ ENV \
|
|
238
238
|
MOONSHOT_API_KEY="" MOONSHOT_MODEL_LIST="" MOONSHOT_PROXY_URL="" \
|
239
239
|
# Nebius
|
240
240
|
NEBIUS_API_KEY="" NEBIUS_MODEL_LIST="" NEBIUS_PROXY_URL="" \
|
241
|
+
# NewAPI
|
242
|
+
NEWAPI_API_KEY="" NEWAPI_PROXY_URL="" \
|
241
243
|
# Novita
|
242
244
|
NOVITA_API_KEY="" NOVITA_MODEL_LIST="" \
|
243
245
|
# Nvidia NIM
|
package/Dockerfile.pglite
CHANGED
@@ -198,6 +198,8 @@ ENV \
|
|
198
198
|
MOONSHOT_API_KEY="" MOONSHOT_MODEL_LIST="" MOONSHOT_PROXY_URL="" \
|
199
199
|
# Nebius
|
200
200
|
NEBIUS_API_KEY="" NEBIUS_MODEL_LIST="" NEBIUS_PROXY_URL="" \
|
201
|
+
# NewAPI
|
202
|
+
NEWAPI_API_KEY="" NEWAPI_PROXY_URL="" \
|
201
203
|
# Novita
|
202
204
|
NOVITA_API_KEY="" NOVITA_MODEL_LIST="" \
|
203
205
|
# Nvidia NIM
|
package/changelog/v1.json
CHANGED
@@ -1,4 +1,25 @@
|
|
1
1
|
[
|
2
|
+
{
|
3
|
+
"children": {
|
4
|
+
"fixes": [
|
5
|
+
"Enhance NewAPI with environment variables and fix routers compatibility."
|
6
|
+
],
|
7
|
+
"improvements": [
|
8
|
+
"Update doubao-seed-1.6-vision models."
|
9
|
+
]
|
10
|
+
},
|
11
|
+
"date": "2025-09-06",
|
12
|
+
"version": "1.124.1"
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"children": {
|
16
|
+
"features": [
|
17
|
+
"ChatInput support rich text and support parallel send."
|
18
|
+
]
|
19
|
+
},
|
20
|
+
"date": "2025-09-06",
|
21
|
+
"version": "1.124.0"
|
22
|
+
},
|
2
23
|
{
|
3
24
|
"children": {
|
4
25
|
"improvements": [
|
@@ -675,4 +675,22 @@ The above example disables all models first, then enables `flux/schnell` and `fl
|
|
675
675
|
|
676
676
|
The above example disables all models first, then enables `flux-pro-1.1` and `flux-kontext-pro` (displayed as `FLUX.1 Kontext [pro]`).
|
677
677
|
|
678
|
+
## NewAPI
|
679
|
+
|
680
|
+
### `NEWAPI_API_KEY`
|
681
|
+
|
682
|
+
- Type: Optional
|
683
|
+
- Description: This is the API key for your NewAPI service instance. NewAPI is a multi-provider model aggregation service that provides unified access to various AI model APIs.
|
684
|
+
- Default: -
|
685
|
+
- Example: `sk-xxxxxx...xxxxxx`
|
686
|
+
|
687
|
+
### `NEWAPI_PROXY_URL`
|
688
|
+
|
689
|
+
- Type: Optional
|
690
|
+
- Description: The base URL for your NewAPI server instance. This should point to your deployed NewAPI service endpoint.
|
691
|
+
- Default: -
|
692
|
+
- Example: `https://your-newapi-server.com/`
|
693
|
+
|
694
|
+
NewAPI is a multi-provider model aggregation service that supports automatic model routing based on provider detection. It offers cost management features and provides a single endpoint for accessing models from multiple providers including OpenAI, Anthropic, Google, and more. Learn more about NewAPI at [https://github.com/Calcium-Ion/new-api](https://github.com/Calcium-Ion/new-api).
|
695
|
+
|
678
696
|
[model-list]: /docs/self-hosting/advanced/model-list
|
@@ -674,4 +674,24 @@ LobeChat 在部署时提供了丰富的模型服务商相关的环境变量,
|
|
674
674
|
|
675
675
|
上述示例表示先禁用所有模型,再启用 `flux-pro-1.1` 和 `flux-kontext-pro`(显示名为 `FLUX.1 Kontext [pro]`)。
|
676
676
|
|
677
|
+
## NewAPI
|
678
|
+
|
679
|
+
### `NEWAPI_API_KEY`
|
680
|
+
|
681
|
+
- 类型:可选
|
682
|
+
- 描述:这是你的 NewAPI 服务实例的 API 密钥。NewAPI 是一个多供应商模型聚合服务,提供对各种 AI 模型 API 的统一访问。
|
683
|
+
- 默认值:-
|
684
|
+
- 示例:`sk-xxxxxx...xxxxxx`
|
685
|
+
|
686
|
+
### `NEWAPI_PROXY_URL`
|
687
|
+
|
688
|
+
- 类型:可选
|
689
|
+
- 描述:你的 NewAPI 服务器实例的基础 URL。这应该指向你部署的 NewAPI 服务端点。
|
690
|
+
- 默认值:-
|
691
|
+
- 示例:`https://your-newapi-server.com`
|
692
|
+
|
693
|
+
<Callout type={'info'}>
|
694
|
+
NewAPI 是一个多供应商模型聚合服务,支持基于供应商检测的自动模型路由。它提供成本管理功能,并为访问包括 OpenAI、Anthropic、Google 等多个供应商的模型提供单一端点。了解更多关于 NewAPI 的信息请访问 [https://github.com/Calcium-Ion/new-api](https://github.com/Calcium-Ion/new-api)。
|
695
|
+
</Callout>
|
696
|
+
|
677
697
|
[model-list]: /zh/docs/self-hosting/advanced/model-list
|
package/locales/ar/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "إضافة رسالة AI",
|
72
72
|
"addUser": "إضافة رسالة مستخدم",
|
73
|
+
"disclaimer": "قد يرتكب الذكاء الاصطناعي أخطاءً أيضًا، يرجى التحقق من المعلومات الهامة",
|
74
|
+
"errorMsg": "فشل إرسال الرسالة، يرجى التحقق من الشبكة والمحاولة مرة أخرى: {{errorMsg}}",
|
73
75
|
"more": "المزيد",
|
74
76
|
"send": "إرسال",
|
75
|
-
"sendWithCmdEnter": "اضغط
|
76
|
-
"sendWithEnter": "اضغط
|
77
|
+
"sendWithCmdEnter": "اضغط <key/> للإرسال",
|
78
|
+
"sendWithEnter": "اضغط <key/> للإرسال",
|
77
79
|
"stop": "توقف",
|
78
80
|
"warp": "تغيير السطر"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}} رسالة",
|
233
235
|
"title": "موضوع فرعي"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "إيقاف وضع الشاشة العريضة",
|
239
|
+
"on": "تشغيل وضع الشاشة العريضة"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "رسائل المحادثة",
|
237
243
|
"historySummary": "ملخص التاريخ",
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"expand": {
|
4
|
+
"off": "طي",
|
5
|
+
"on": "توسيع"
|
6
|
+
},
|
7
|
+
"typobar": {
|
8
|
+
"off": "إخفاء شريط أدوات التنسيق",
|
9
|
+
"on": "إظهار شريط أدوات التنسيق"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"file": {
|
13
|
+
"error": "خطأ: {{message}}",
|
14
|
+
"uploading": "جاري رفع الملف..."
|
15
|
+
},
|
16
|
+
"image": {
|
17
|
+
"broken": "الصورة تالفة"
|
18
|
+
},
|
19
|
+
"link": {
|
20
|
+
"edit": "تعديل الرابط",
|
21
|
+
"open": "فتح الرابط",
|
22
|
+
"placeholder": "أدخل عنوان URL للرابط",
|
23
|
+
"unlink": "إزالة الرابط"
|
24
|
+
},
|
25
|
+
"table": {
|
26
|
+
"delete": "حذف الجدول",
|
27
|
+
"deleteColumn": "حذف العمود",
|
28
|
+
"deleteRow": "حذف الصف",
|
29
|
+
"insertColumnLeft": "إدراج {{count}} عمودًا إلى اليسار",
|
30
|
+
"insertColumnRight": "إدراج {{count}} عمودًا إلى اليمين",
|
31
|
+
"insertRowAbove": "إدراج {{count}} صفًا في الأعلى",
|
32
|
+
"insertRowBelow": "إدراج {{count}} صفًا في الأسفل"
|
33
|
+
},
|
34
|
+
"typobar": {
|
35
|
+
"blockquote": "اقتباس",
|
36
|
+
"bold": "غامق",
|
37
|
+
"bulletList": "قائمة نقطية",
|
38
|
+
"code": "كود مضمن",
|
39
|
+
"codeblock": "كتلة كود",
|
40
|
+
"italic": "مائل",
|
41
|
+
"link": "رابط",
|
42
|
+
"numberList": "قائمة مرقمة",
|
43
|
+
"strikethrough": "شطب",
|
44
|
+
"table": "إدراج جدول",
|
45
|
+
"underline": "تسطير"
|
46
|
+
}
|
47
|
+
}
|
package/locales/bg-BG/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "Добави AI съобщение",
|
72
72
|
"addUser": "Добави потребителско съобщение",
|
73
|
+
"disclaimer": "Изкуственият интелект също може да греши, моля проверете важната информация",
|
74
|
+
"errorMsg": "Неуспешно изпращане на съобщението, моля, проверете мрежата и опитайте отново: {{errorMsg}}",
|
73
75
|
"more": "още",
|
74
76
|
"send": "Изпрати",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
77
|
+
"sendWithCmdEnter": "Натиснете <key/> за изпращане",
|
78
|
+
"sendWithEnter": "Натиснете <key/> за изпращане",
|
77
79
|
"stop": "Спри",
|
78
80
|
"warp": "Нов ред"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}} съобщения",
|
233
235
|
"title": "Подтема"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "Изключване на широк екран",
|
239
|
+
"on": "Включване на широк екран"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "Чат съобщения",
|
237
243
|
"historySummary": "Историческо резюме",
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"expand": {
|
4
|
+
"off": "Сгъни",
|
5
|
+
"on": "Разгъни"
|
6
|
+
},
|
7
|
+
"typobar": {
|
8
|
+
"off": "Скрий лентата за форматиране",
|
9
|
+
"on": "Покажи лентата за форматиране"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"file": {
|
13
|
+
"error": "Грешка: {{message}}",
|
14
|
+
"uploading": "Качване на файл..."
|
15
|
+
},
|
16
|
+
"image": {
|
17
|
+
"broken": "Изображението е повредено"
|
18
|
+
},
|
19
|
+
"link": {
|
20
|
+
"edit": "Редактирай връзката",
|
21
|
+
"open": "Отвори връзката",
|
22
|
+
"placeholder": "Въведете URL адрес на връзката",
|
23
|
+
"unlink": "Премахни връзката"
|
24
|
+
},
|
25
|
+
"table": {
|
26
|
+
"delete": "Премахни таблицата",
|
27
|
+
"deleteColumn": "Премахни колоната",
|
28
|
+
"deleteRow": "Премахни реда",
|
29
|
+
"insertColumnLeft": "Вмъкни {{count}} колони отляво",
|
30
|
+
"insertColumnRight": "Вмъкни {{count}} колони отдясно",
|
31
|
+
"insertRowAbove": "Вмъкни {{count}} реда отгоре",
|
32
|
+
"insertRowBelow": "Вмъкни {{count}} реда отдолу"
|
33
|
+
},
|
34
|
+
"typobar": {
|
35
|
+
"blockquote": "Цитат",
|
36
|
+
"bold": "Удебели",
|
37
|
+
"bulletList": "Маркиран списък",
|
38
|
+
"code": "Код в реда",
|
39
|
+
"codeblock": "Блок с код",
|
40
|
+
"italic": "Курсив",
|
41
|
+
"link": "Връзка",
|
42
|
+
"numberList": "Номериран списък",
|
43
|
+
"strikethrough": "Зачеркване",
|
44
|
+
"table": "Вмъкване на таблица",
|
45
|
+
"underline": "Подчертаване"
|
46
|
+
}
|
47
|
+
}
|
package/locales/de-DE/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "Fügen Sie eine AI-Nachricht hinzu",
|
72
72
|
"addUser": "Fügen Sie eine Benutzer-Nachricht hinzu",
|
73
|
+
"disclaimer": "KI kann auch Fehler machen, bitte überprüfen Sie wichtige Informationen",
|
74
|
+
"errorMsg": "Nachricht konnte nicht gesendet werden, bitte überprüfen Sie Ihre Netzwerkverbindung und versuchen Sie es erneut: {{errorMsg}}",
|
73
75
|
"more": "Mehr",
|
74
76
|
"send": "Senden",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
77
|
+
"sendWithCmdEnter": "Drücken Sie <key/>, um zu senden",
|
78
|
+
"sendWithEnter": "Drücken Sie <key/>, um zu senden",
|
77
79
|
"stop": "Stoppen",
|
78
80
|
"warp": "Zeilenumbruch"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}} Nachrichten",
|
233
235
|
"title": "Unterthema"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "Breitbildmodus deaktivieren",
|
239
|
+
"on": "Breitbildmodus aktivieren"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "Chats",
|
237
243
|
"historySummary": "Historische Zusammenfassung",
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"expand": {
|
4
|
+
"off": "Einklappen",
|
5
|
+
"on": "Ausklappen"
|
6
|
+
},
|
7
|
+
"typobar": {
|
8
|
+
"off": "Formatierungsleiste ausblenden",
|
9
|
+
"on": "Formatierungsleiste anzeigen"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"file": {
|
13
|
+
"error": "Fehler: {{message}}",
|
14
|
+
"uploading": "Datei wird hochgeladen..."
|
15
|
+
},
|
16
|
+
"image": {
|
17
|
+
"broken": "Bild beschädigt"
|
18
|
+
},
|
19
|
+
"link": {
|
20
|
+
"edit": "Link bearbeiten",
|
21
|
+
"open": "Link öffnen",
|
22
|
+
"placeholder": "Link-URL eingeben",
|
23
|
+
"unlink": "Link entfernen"
|
24
|
+
},
|
25
|
+
"table": {
|
26
|
+
"delete": "Tabelle löschen",
|
27
|
+
"deleteColumn": "Spalte löschen",
|
28
|
+
"deleteRow": "Zeile löschen",
|
29
|
+
"insertColumnLeft": "Links {{count}} Spalten einfügen",
|
30
|
+
"insertColumnRight": "Rechts {{count}} Spalten einfügen",
|
31
|
+
"insertRowAbove": "Oben {{count}} Zeilen einfügen",
|
32
|
+
"insertRowBelow": "Unten {{count}} Zeilen einfügen"
|
33
|
+
},
|
34
|
+
"typobar": {
|
35
|
+
"blockquote": "Zitat",
|
36
|
+
"bold": "Fett",
|
37
|
+
"bulletList": "Ungeordnete Liste",
|
38
|
+
"code": "Inline-Code",
|
39
|
+
"codeblock": "Codeblock",
|
40
|
+
"italic": "Kursiv",
|
41
|
+
"link": "Link",
|
42
|
+
"numberList": "Nummerierte Liste",
|
43
|
+
"strikethrough": "Durchgestrichen",
|
44
|
+
"table": "Tabelle einfügen",
|
45
|
+
"underline": "Unterstrichen"
|
46
|
+
}
|
47
|
+
}
|
package/locales/en-US/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "Add an AI message",
|
72
72
|
"addUser": "Add a user message",
|
73
|
+
"disclaimer": "AI may also make mistakes, please verify important information",
|
74
|
+
"errorMsg": "Message sending failed, please check your network and try again: {{errorMsg}}",
|
73
75
|
"more": "more",
|
74
76
|
"send": "Send",
|
75
|
-
"sendWithCmdEnter": "Press
|
76
|
-
"sendWithEnter": "Press
|
77
|
+
"sendWithCmdEnter": "Press <key/> to send",
|
78
|
+
"sendWithEnter": "Press <key/> to send",
|
77
79
|
"stop": "Stop",
|
78
80
|
"warp": "New Line"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}} messages",
|
233
235
|
"title": "Subtopic"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "Turn off widescreen mode",
|
239
|
+
"on": "Turn on widescreen mode"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "Chat Messages",
|
237
243
|
"historySummary": "History Summary",
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"expand": {
|
4
|
+
"off": "Collapse",
|
5
|
+
"on": "Expand"
|
6
|
+
},
|
7
|
+
"typobar": {
|
8
|
+
"off": "Hide formatting toolbar",
|
9
|
+
"on": "Show formatting toolbar"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"file": {
|
13
|
+
"error": "Error: {{message}}",
|
14
|
+
"uploading": "Uploading file..."
|
15
|
+
},
|
16
|
+
"image": {
|
17
|
+
"broken": "Image is corrupted"
|
18
|
+
},
|
19
|
+
"link": {
|
20
|
+
"edit": "Edit link",
|
21
|
+
"open": "Open link",
|
22
|
+
"placeholder": "Enter link URL",
|
23
|
+
"unlink": "Unlink"
|
24
|
+
},
|
25
|
+
"table": {
|
26
|
+
"delete": "Delete table",
|
27
|
+
"deleteColumn": "Delete column",
|
28
|
+
"deleteRow": "Delete row",
|
29
|
+
"insertColumnLeft": "Insert {{count}} column(s) to the left",
|
30
|
+
"insertColumnRight": "Insert {{count}} column(s) to the right",
|
31
|
+
"insertRowAbove": "Insert {{count}} row(s) above",
|
32
|
+
"insertRowBelow": "Insert {{count}} row(s) below"
|
33
|
+
},
|
34
|
+
"typobar": {
|
35
|
+
"blockquote": "Blockquote",
|
36
|
+
"bold": "Bold",
|
37
|
+
"bulletList": "Bulleted list",
|
38
|
+
"code": "Inline code",
|
39
|
+
"codeblock": "Code block",
|
40
|
+
"italic": "Italic",
|
41
|
+
"link": "Link",
|
42
|
+
"numberList": "Numbered list",
|
43
|
+
"strikethrough": "Strikethrough",
|
44
|
+
"table": "Insert table",
|
45
|
+
"underline": "Underline"
|
46
|
+
}
|
47
|
+
}
|
package/locales/es-ES/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "Agregar un mensaje de IA",
|
72
72
|
"addUser": "Agregar un mensaje de usuario",
|
73
|
+
"disclaimer": "La IA también puede cometer errores, por favor verifique la información importante",
|
74
|
+
"errorMsg": "Error al enviar el mensaje, por favor revise la conexión y vuelva a intentarlo: {{errorMsg}}",
|
73
75
|
"more": "más",
|
74
76
|
"send": "Enviar",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
77
|
+
"sendWithCmdEnter": "Presiona <key/> para enviar",
|
78
|
+
"sendWithEnter": "Presiona <key/> para enviar",
|
77
79
|
"stop": "Detener",
|
78
80
|
"warp": "Salto de línea"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}} mensajes",
|
233
235
|
"title": "Subtema"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "Desactivar modo de pantalla ancha",
|
239
|
+
"on": "Activar modo de pantalla ancha"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "Mensajes de chat",
|
237
243
|
"historySummary": "Resumen histórico",
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"expand": {
|
4
|
+
"off": "Contraer",
|
5
|
+
"on": "Expandir"
|
6
|
+
},
|
7
|
+
"typobar": {
|
8
|
+
"off": "Ocultar barra de herramientas de formato",
|
9
|
+
"on": "Mostrar barra de herramientas de formato"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"file": {
|
13
|
+
"error": "Error: {{message}}",
|
14
|
+
"uploading": "Subiendo archivo..."
|
15
|
+
},
|
16
|
+
"image": {
|
17
|
+
"broken": "Imagen dañada"
|
18
|
+
},
|
19
|
+
"link": {
|
20
|
+
"edit": "Editar enlace",
|
21
|
+
"open": "Abrir enlace",
|
22
|
+
"placeholder": "Introduce la URL del enlace",
|
23
|
+
"unlink": "Quitar enlace"
|
24
|
+
},
|
25
|
+
"table": {
|
26
|
+
"delete": "Eliminar tabla",
|
27
|
+
"deleteColumn": "Eliminar columna",
|
28
|
+
"deleteRow": "Eliminar fila",
|
29
|
+
"insertColumnLeft": "Insertar {{count}} columna(s) a la izquierda",
|
30
|
+
"insertColumnRight": "Insertar {{count}} columna(s) a la derecha",
|
31
|
+
"insertRowAbove": "Insertar {{count}} fila(s) encima",
|
32
|
+
"insertRowBelow": "Insertar {{count}} fila(s) debajo"
|
33
|
+
},
|
34
|
+
"typobar": {
|
35
|
+
"blockquote": "Cita",
|
36
|
+
"bold": "Negrita",
|
37
|
+
"bulletList": "Lista desordenada",
|
38
|
+
"code": "Código en línea",
|
39
|
+
"codeblock": "Bloque de código",
|
40
|
+
"italic": "Cursiva",
|
41
|
+
"link": "Enlace",
|
42
|
+
"numberList": "Lista ordenada",
|
43
|
+
"strikethrough": "Tachado",
|
44
|
+
"table": "Insertar tabla",
|
45
|
+
"underline": "Subrayado"
|
46
|
+
}
|
47
|
+
}
|
@@ -1505,7 +1505,9 @@
|
|
1505
1505
|
"gpt-4.1-nano": {
|
1506
1506
|
"description": "GPT-4.1 mini ofrece un equilibrio entre inteligencia, velocidad y costo, lo que lo convierte en un modelo atractivo para muchos casos de uso."
|
1507
1507
|
},
|
1508
|
-
"gpt-4.5-preview":
|
1508
|
+
"gpt-4.5-preview": {
|
1509
|
+
"description": "GPT-4.5-preview es el modelo de propósito general más reciente, con un profundo conocimiento del mundo y una mejor comprensión de las intenciones de los usuarios; destaca en tareas creativas y en la planificación de agentes. El conocimiento de este modelo está actualizado hasta octubre de 2023."
|
1510
|
+
},
|
1509
1511
|
"gpt-4o": {
|
1510
1512
|
"description": "ChatGPT-4o es un modelo dinámico que se actualiza en tiempo real para mantener la versión más actual. Combina una poderosa comprensión y generación de lenguaje, adecuado para aplicaciones a gran escala, incluyendo servicio al cliente, educación y soporte técnico."
|
1511
1513
|
},
|
package/locales/fa-IR/chat.json
CHANGED
@@ -70,10 +70,12 @@
|
|
70
70
|
"input": {
|
71
71
|
"addAi": "افزودن یک پیام AI",
|
72
72
|
"addUser": "افزودن یک پیام کاربر",
|
73
|
+
"disclaimer": "هوش مصنوعی نیز ممکن است اشتباه کند، لطفاً اطلاعات مهم را بررسی کنید",
|
74
|
+
"errorMsg": "ارسال پیام ناموفق بود، لطفاً پس از بررسی شبکه دوباره تلاش کنید: {{errorMsg}}",
|
73
75
|
"more": "بیشتر",
|
74
76
|
"send": "ارسال",
|
75
|
-
"sendWithCmdEnter": "
|
76
|
-
"sendWithEnter": "
|
77
|
+
"sendWithCmdEnter": "برای ارسال، کلید <key/> را فشار دهید",
|
78
|
+
"sendWithEnter": "برای ارسال، کلید <key/> را فشار دهید",
|
77
79
|
"stop": "توقف",
|
78
80
|
"warp": "خط جدید"
|
79
81
|
},
|
@@ -232,6 +234,10 @@
|
|
232
234
|
"threadMessageCount": "{{messageCount}} پیام",
|
233
235
|
"title": "زیرموضوع"
|
234
236
|
},
|
237
|
+
"toggleWideScreen": {
|
238
|
+
"off": "حالت صفحهنمایش عریض را غیرفعال کنید",
|
239
|
+
"on": "حالت صفحهنمایش عریض را فعال کنید"
|
240
|
+
},
|
235
241
|
"tokenDetails": {
|
236
242
|
"chats": "پیامهای گفتگو",
|
237
243
|
"historySummary": "خلاصه تاریخ",
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"actions": {
|
3
|
+
"expand": {
|
4
|
+
"off": "جمع کردن",
|
5
|
+
"on": "باز کردن"
|
6
|
+
},
|
7
|
+
"typobar": {
|
8
|
+
"off": "مخفی کردن نوار ابزار قالببندی",
|
9
|
+
"on": "نمایش نوار ابزار قالببندی"
|
10
|
+
}
|
11
|
+
},
|
12
|
+
"file": {
|
13
|
+
"error": "خطا: {{message}}",
|
14
|
+
"uploading": "در حال بارگذاری فایل..."
|
15
|
+
},
|
16
|
+
"image": {
|
17
|
+
"broken": "تصویر خراب است"
|
18
|
+
},
|
19
|
+
"link": {
|
20
|
+
"edit": "ویرایش پیوند",
|
21
|
+
"open": "باز کردن پیوند",
|
22
|
+
"placeholder": "آدرس URL پیوند را وارد کنید",
|
23
|
+
"unlink": "حذف پیوند"
|
24
|
+
},
|
25
|
+
"table": {
|
26
|
+
"delete": "حذف جدول",
|
27
|
+
"deleteColumn": "حذف ستون",
|
28
|
+
"deleteRow": "حذف ردیف",
|
29
|
+
"insertColumnLeft": "درج {{count}} ستون در سمت چپ",
|
30
|
+
"insertColumnRight": "درج {{count}} ستون در سمت راست",
|
31
|
+
"insertRowAbove": "درج {{count}} ردیف در بالا",
|
32
|
+
"insertRowBelow": "درج {{count}} ردیف در پایین"
|
33
|
+
},
|
34
|
+
"typobar": {
|
35
|
+
"blockquote": "نقل قول",
|
36
|
+
"bold": "پررنگ",
|
37
|
+
"bulletList": "فهرست نشانهدار",
|
38
|
+
"code": "کد درونخطی",
|
39
|
+
"codeblock": "بلوک کد",
|
40
|
+
"italic": "ایتالیک",
|
41
|
+
"link": "پیوند",
|
42
|
+
"numberList": "فهرست شمارهدار",
|
43
|
+
"strikethrough": "خط خورده",
|
44
|
+
"table": "درج جدول",
|
45
|
+
"underline": "زیرخط"
|
46
|
+
}
|
47
|
+
}
|