@lobehub/chat 1.16.2 → 1.16.4

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.

Potentially problematic release.


This version of @lobehub/chat might be problematic. Click here for more details.

Files changed (79) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/README.md +8 -8
  3. package/README.zh-CN.md +8 -8
  4. package/docs/self-hosting/advanced/auth/next-auth/logto.zh-CN.mdx +2 -2
  5. package/locales/ar/common.json +1 -1
  6. package/locales/ar/error.json +2 -1
  7. package/locales/ar/file.json +2 -0
  8. package/locales/bg-BG/common.json +1 -1
  9. package/locales/bg-BG/error.json +2 -1
  10. package/locales/bg-BG/file.json +2 -0
  11. package/locales/de-DE/common.json +1 -1
  12. package/locales/de-DE/error.json +2 -1
  13. package/locales/de-DE/file.json +2 -0
  14. package/locales/en-US/common.json +1 -1
  15. package/locales/en-US/error.json +2 -1
  16. package/locales/en-US/file.json +2 -0
  17. package/locales/es-ES/common.json +1 -1
  18. package/locales/es-ES/error.json +2 -1
  19. package/locales/es-ES/file.json +2 -0
  20. package/locales/fr-FR/common.json +1 -1
  21. package/locales/fr-FR/error.json +2 -1
  22. package/locales/fr-FR/file.json +2 -0
  23. package/locales/it-IT/common.json +1 -1
  24. package/locales/it-IT/error.json +2 -1
  25. package/locales/it-IT/file.json +2 -0
  26. package/locales/ja-JP/common.json +1 -1
  27. package/locales/ja-JP/error.json +2 -1
  28. package/locales/ja-JP/file.json +2 -0
  29. package/locales/ko-KR/common.json +1 -1
  30. package/locales/ko-KR/error.json +2 -1
  31. package/locales/ko-KR/file.json +2 -0
  32. package/locales/nl-NL/common.json +1 -1
  33. package/locales/nl-NL/error.json +2 -1
  34. package/locales/nl-NL/file.json +2 -0
  35. package/locales/pl-PL/common.json +1 -1
  36. package/locales/pl-PL/error.json +2 -1
  37. package/locales/pl-PL/file.json +2 -0
  38. package/locales/pt-BR/common.json +1 -1
  39. package/locales/pt-BR/error.json +2 -1
  40. package/locales/pt-BR/file.json +2 -0
  41. package/locales/ru-RU/common.json +1 -1
  42. package/locales/ru-RU/error.json +2 -1
  43. package/locales/ru-RU/file.json +2 -0
  44. package/locales/tr-TR/common.json +1 -1
  45. package/locales/tr-TR/error.json +2 -1
  46. package/locales/tr-TR/file.json +2 -0
  47. package/locales/vi-VN/common.json +1 -1
  48. package/locales/vi-VN/error.json +2 -1
  49. package/locales/vi-VN/file.json +2 -0
  50. package/locales/zh-CN/common.json +1 -1
  51. package/locales/zh-CN/error.json +2 -1
  52. package/locales/zh-CN/file.json +2 -0
  53. package/locales/zh-TW/common.json +1 -1
  54. package/locales/zh-TW/error.json +2 -1
  55. package/locales/zh-TW/file.json +2 -0
  56. package/package.json +4 -4
  57. package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files/FileItem/File.tsx +4 -1
  58. package/src/app/(main)/chat/(workspace)/@conversation/features/ChatInput/Mobile/Files/FileItem/Image.tsx +4 -1
  59. package/src/app/(main)/files/loading.tsx +3 -1
  60. package/src/components/404/index.tsx +5 -1
  61. package/src/components/CircleLoading/index.tsx +3 -1
  62. package/src/components/FullscreenLoading/index.tsx +6 -2
  63. package/src/config/modelProviders/stepfun.ts +4 -0
  64. package/src/features/ChatInput/ActionBar/Upload/ServerMode.tsx +3 -3
  65. package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/List.tsx +3 -3
  66. package/src/libs/agent-runtime/google/index.test.ts +4 -1
  67. package/src/libs/agent-runtime/google/index.ts +3 -3
  68. package/src/libs/agent-runtime/utils/anthropicHelpers.test.ts +9 -3
  69. package/src/libs/agent-runtime/utils/anthropicHelpers.ts +2 -2
  70. package/src/libs/agent-runtime/utils/openaiCompatibleFactory/index.test.ts +26 -2
  71. package/src/libs/agent-runtime/utils/openaiCompatibleFactory/index.ts +4 -0
  72. package/src/libs/agent-runtime/utils/openaiHelpers.test.ts +146 -0
  73. package/src/libs/agent-runtime/utils/openaiHelpers.ts +40 -0
  74. package/src/libs/agent-runtime/zhipu/index.ts +5 -36
  75. package/src/locales/default/common.ts +1 -1
  76. package/src/locales/default/error.ts +2 -1
  77. package/src/locales/default/file.ts +2 -0
  78. package/src/utils/imageToBase64.test.ts +2 -1
  79. package/src/utils/imageToBase64.ts +16 -7
package/CHANGELOG.md CHANGED
@@ -2,6 +2,56 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.16.4](https://github.com/lobehub/lobe-chat/compare/v1.16.3...v1.16.4)
6
+
7
+ <sup>Released on **2024-09-11**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **ui**: Improve UI layout and text.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **ui**: Improve UI layout and text, closes [#3762](https://github.com/lobehub/lobe-chat/issues/3762) ([7c08f29](https://github.com/lobehub/lobe-chat/commit/7c08f29))
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.16.3](https://github.com/lobehub/lobe-chat/compare/v1.16.2...v1.16.3)
31
+
32
+ <sup>Released on **2024-09-11**</sup>
33
+
34
+ #### 🐛 Bug Fixes
35
+
36
+ - **misc**: Add `LLM_VISION_IMAGE_USE_BASE64` to support local s3 in vision model.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### What's fixed
44
+
45
+ - **misc**: Add `LLM_VISION_IMAGE_USE_BASE64` to support local s3 in vision model, closes [#3887](https://github.com/lobehub/lobe-chat/issues/3887) ([16e57ed](https://github.com/lobehub/lobe-chat/commit/16e57ed))
46
+
47
+ </details>
48
+
49
+ <div align="right">
50
+
51
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
52
+
53
+ </div>
54
+
5
55
  ### [Version 1.16.2](https://github.com/lobehub/lobe-chat/compare/v1.16.1...v1.16.2)
6
56
 
7
57
  <sup>Released on **2024-09-11**</sup>
package/README.md CHANGED
@@ -285,14 +285,14 @@ Our marketplace is not just a showcase platform but also a collaborative space.
285
285
 
286
286
  <!-- AGENT LIST -->
287
287
 
288
- | Recent Submits | Description |
289
- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
290
- | [AI Agent Generator](https://chat-preview.lobehub.com/market?agent=ai-agent-generator)<br/><sup>By **[xyftw](https://github.com/xyftw)** on **2024-09-10**</sup> | Skilled at creating AI Agent character descriptions that meet the needs.<br/>`ai-agent` `character-creation` |
291
- | [HTML to React](https://chat-preview.lobehub.com/market?agent=web-react)<br/><sup>By **[xingwang02](https://github.com/xingwang02)** on **2024-09-10**</sup> | Input HTML snippets and convert them into React components<br/>`react` `html` |
292
- | [FiveM & QBCore Framework Expert](https://chat-preview.lobehub.com/market?agent=lua-development)<br/><sup>By **[heartsiddharth1](https://github.com/heartsiddharth1)** on **2024-09-08**</sup> | Expertise in FiveM development, QBCore framework, Lua programming, JavaScript, database management, server administration, version control, full-stack web development, DevOps, and community engagement with a focus on performance, security, and best practices.<br/>`five-m` `qb-core` `lua` `java-script` `my-sql` `server-management` `git` `full-stack-web-development` `dev-ops` `community-engagement` |
293
- | [Nuxt 3/Vue.js Master Developer](https://chat-preview.lobehub.com/market?agent=nuxt-vue-developer)<br/><sup>By **[Kadreev](https://github.com/Kadreev)** on **2024-09-03**</sup> | Specialized in full-stack development with Nuxt 3 expertise.<br/>`nuxt-3` `vue-js` `full-stack-development` `java-script` `web-applications` |
294
-
295
- > 📊 Total agents: [<kbd>**325**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
288
+ | Recent Submits | Description |
289
+ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
290
+ | [AI Agent Generator](https://chat-preview.lobehub.com/market?agent=ai-agent-generator)<br/><sup>By **[xyftw](https://github.com/xyftw)** on **2024-09-10**</sup> | Skilled at creating AI Agent character descriptions that meet the needs.<br/>`ai-agent` `character-creation` |
291
+ | [Desolate Friend](https://chat-preview.lobehub.com/market?agent=meu)<br/><sup>By **[adminewacc](https://github.com/adminewacc)** on **2024-09-10**</sup> | Skilled at comforting and supporting friends<br/>`friendship` `sadness` `support` |
292
+ | [NetMaster](https://chat-preview.lobehub.com/market?agent=net-master)<br/><sup>By **[erhuoyan](https://github.com/erhuoyan)** on **2024-09-10**</sup> | Network Engineer: Professional network topology construction and management<br/>`network-engineer` `network-configuration` `network-management` `network-topology` `network-security` |
293
+ | [HTML to React](https://chat-preview.lobehub.com/market?agent=web-react)<br/><sup>By **[xingwang02](https://github.com/xingwang02)** on **2024-09-10**</sup> | Input HTML snippets and convert them into React components<br/>`react` `html` |
294
+
295
+ > 📊 Total agents: [<kbd>**327**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
296
296
 
297
297
  <!-- AGENT LIST -->
298
298
 
package/README.zh-CN.md CHANGED
@@ -273,14 +273,14 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
273
273
 
274
274
  <!-- AGENT LIST -->
275
275
 
276
- | 最近新增 | 助手说明 |
277
- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
278
- | [AI 代理生成器](https://chat-preview.lobehub.com/market?agent=ai-agent-generator)<br/><sup>By **[xyftw](https://github.com/xyftw)** on **2024-09-10**</sup> | 擅长创建满足需求的 AI 代理角色描述。<br/>`ai-agent` `角色创建` |
279
- | [HTML to React](https://chat-preview.lobehub.com/market?agent=web-react)<br/><sup>By **[xingwang02](https://github.com/xingwang02)** on **2024-09-10**</sup> | 输入 HTML 片段,转化为 React 组件<br/>`react、-html` |
280
- | [FiveM 和 QBCore 框架专家](https://chat-preview.lobehub.com/market?agent=lua-development)<br/><sup>By **[heartsiddharth1](https://github.com/heartsiddharth1)** on **2024-09-08**</sup> | 在 FiveM 开发、QBCore 框架、Lua 编程、JavaScript、数据库管理、服务器管理、版本控制、全栈 Web 开发、DevOps 和社区参与方面具有专业知识,重点关注性能、安全性和最佳实践。<br/>`five-m` `qb-core` `lua` `java-script` `my-sql` `server-management` `git` `full-stack-web-development` `dev-ops` `community-engagement` |
281
- | [Nuxt 3/Vue.js 大师开发者](https://chat-preview.lobehub.com/market?agent=nuxt-vue-developer)<br/><sup>By **[Kadreev](https://github.com/Kadreev)** on **2024-09-03**</sup> | 专注于全栈开发,拥有 Nuxt 3 专业知识。<br/>`nuxt-3` `vue-js` `全栈开发` `java-script` `网络应用` |
282
-
283
- > 📊 Total agents: [<kbd>**325**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
276
+ | 最近新增 | 助手说明 |
277
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
278
+ | [AI 代理生成器](https://chat-preview.lobehub.com/market?agent=ai-agent-generator)<br/><sup>By **[xyftw](https://github.com/xyftw)** on **2024-09-10**</sup> | 擅长创建满足需求的 AI 代理角色描述。<br/>`ai-agent` `角色创建` |
279
+ | [孤独的朋友](https://chat-preview.lobehub.com/market?agent=meu)<br/><sup>By **[adminewacc](https://github.com/adminewacc)** on **2024-09-10**</sup> | 擅长安慰和支持朋友<br/>`友谊` `悲伤` `支持` |
280
+ | [NetMaster](https://chat-preview.lobehub.com/market?agent=net-master)<br/><sup>By **[erhuoyan](https://github.com/erhuoyan)** on **2024-09-10**</sup> | 网络工程师:专业网络拓扑搭建与管理<br/>`网络工程师` `网络配置` `网络管理` `网络拓扑` `网络安全` |
281
+ | [HTML to React](https://chat-preview.lobehub.com/market?agent=web-react)<br/><sup>By **[xingwang02](https://github.com/xingwang02)** on **2024-09-10**</sup> | 输入 HTML 片段,转化为 React 组件<br/>`react、-html` |
282
+
283
+ > 📊 Total agents: [<kbd>**327**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
284
284
 
285
285
  <!-- AGENT LIST -->
286
286
 
@@ -51,7 +51,7 @@ tags:
51
51
  src="https://github.com/user-attachments/assets/15af6d94-af4f-4aa9-bbab-7a46e9f9e837"
52
52
  />
53
53
 
54
- 将获取到的 `Client ID` 和 `Client Secret`,设为 LobeChat 环境变量中的 `LOGTO_CLIENT_ID` 和 `LOGTO_CLIENT_SECRETT`。
54
+ 将获取到的 `Client ID` 和 `Client Secret`,设为 LobeChat 环境变量中的 `LOGTO_CLIENT_ID` 和 `LOGTO_CLIENT_SECRET`。
55
55
 
56
56
  配置 LobeChat 环境变量中 `LOGTO_ISSUER` 为:
57
57
 
@@ -75,4 +75,4 @@ tags:
75
75
  </Callout>
76
76
  </Steps>
77
77
 
78
- <Callout type={'info'}>部署成功后,用户将可以通过 Logto 身份认证并使用 LobeChat。</Callout>
78
+ <Callout type={'info'}>部署成功后,用户将可以通过 Logto 身份认证并使用 LobeChat。</Callout>
@@ -9,7 +9,7 @@
9
9
  "title": "مرحبًا بك في التجربة {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "جاري تشغيل التطبيق، يرجى الانتظار...",
12
+ "appInitializing": "جارٍ تشغيل التطبيق...",
13
13
  "autoGenerate": "توليد تلقائي",
14
14
  "autoGenerateTooltip": "إكمال تلقائي بناءً على الكلمات المقترحة لوصف المساعد",
15
15
  "autoGenerateTooltipDisabled": "الرجاء إدخال كلمة تلميح قبل تفعيل وظيفة الإكمال التلقائي",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "تفاصيل الخطأ",
17
17
  "notFound": {
18
18
  "backHome": "العودة إلى الصفحة الرئيسية",
19
- "desc": "لم نتمكن من العثور على الصفحة التي تبحث عنها، يرجى التحقق مما إذا كان الرابط صحيحًا",
19
+ "check": "يرجى التحقق من صحة عنوان URL الخاص بك",
20
+ "desc": "لم نتمكن من العثور على الصفحة التي تبحث عنها",
20
21
  "title": "هل دخلت إلى مجال غير معروف؟"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "تحويل إلى متجهات"
22
22
  }
23
23
  },
24
+ "empty": "لا توجد ملفات/مجلدات تم تحميلها بعد",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "إنشاء مجلد جديد",
@@ -37,6 +38,7 @@
37
38
  "new": "إنشاء مكتبة معرفية جديدة",
38
39
  "title": "المكتبة المعرفية"
39
40
  },
41
+ "networkError": "فشل في الحصول على قاعدة المعرفة، يرجى التحقق من اتصال الشبكة ثم إعادة المحاولة",
40
42
  "notSupportGuide": {
41
43
  "desc": "الوضع الحالي للنشر هو وضع قاعدة بيانات العميل، ولا يمكن استخدام وظيفة إدارة الملفات. يرجى التبديل إلى <1>وضع نشر قاعدة بيانات الخادم</1>، أو استخدام <3>LobeChat Cloud</3> مباشرة.",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Добре дошли в {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Приложението се стартира, моля, бъдете търпеливи...",
12
+ "appInitializing": "Приложението се стартира...",
13
13
  "autoGenerate": "Автоматично генериране",
14
14
  "autoGenerateTooltip": "Автоматично генериране на описание на агент въз основа на подкани",
15
15
  "autoGenerateTooltipDisabled": "Моля, попълнете подсказката, за да използвате функцията за автоматично допълване",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Подробности за грешката",
17
17
  "notFound": {
18
18
  "backHome": "Върни се в началото",
19
- "desc": "Не можем да намерим страницата, която търсите. Моля, проверете дали връзката е правилна.",
19
+ "check": "Моля, проверете дали URL адресът е правилен",
20
+ "desc": "Не можем да намерим страницата, която търсите",
20
21
  "title": "Влезли сте в неизвестна територия?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Векторизация"
22
22
  }
23
23
  },
24
+ "empty": "Няма качени файлове/папки",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Нова папка",
@@ -37,6 +38,7 @@
37
38
  "new": "Нова база знания",
38
39
  "title": "База знания"
39
40
  },
41
+ "networkError": "Неуспешно получаване на базата от знания, моля, проверете интернет връзката и опитайте отново",
40
42
  "notSupportGuide": {
41
43
  "desc": "Текущият инстанс е в режим на клиентска база данни и не поддържа функцията за управление на файлове. Моля, превключете на <1>режим на сървърна база данни</1> или използвайте директно <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Willkommen bei {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Die App wird gestartet, bitte haben Sie etwas Geduld...",
12
+ "appInitializing": "Anwendung wird gestartet...",
13
13
  "autoGenerate": "Automatisch generieren",
14
14
  "autoGenerateTooltip": "Assistentenbeschreibung automatisch auf Basis von Vorschlägen vervollständigen",
15
15
  "autoGenerateTooltipDisabled": "Bitte geben Sie einen Hinweis ein, um die automatische Vervollständigung zu aktivieren",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Fehlerdetails",
17
17
  "notFound": {
18
18
  "backHome": "Zurück zur Startseite",
19
- "desc": "Die von Ihnen gesuchte Seite konnte nicht gefunden werden. Bitte überprüfen Sie, ob der Link korrekt ist.",
19
+ "check": "Bitte überprüfen Sie, ob Ihre URL korrekt ist.",
20
+ "desc": "Die von Ihnen gesuchte Seite konnte nicht gefunden werden.",
20
21
  "title": "In unbekanntes Gebiet geraten?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Vektorisierung"
22
22
  }
23
23
  },
24
+ "empty": "Keine hochgeladenen Dateien/Ordner vorhanden",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Neuen Ordner erstellen",
@@ -37,6 +38,7 @@
37
38
  "new": "Neue Wissensdatenbank",
38
39
  "title": "Wissensdatenbank"
39
40
  },
41
+ "networkError": "Fehler beim Abrufen der Wissensdatenbank. Bitte überprüfen Sie Ihre Netzwerkverbindung und versuchen Sie es erneut.",
40
42
  "notSupportGuide": {
41
43
  "desc": "Die aktuelle Bereitstellung ist im Client-Datenbankmodus und unterstützt keine Dateiverwaltungsfunktionen. Bitte wechseln Sie zu <1>Server-Datenbank-Bereitstellungsmodus</1> oder verwenden Sie direkt <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Launch {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "The application is initializing, please wait for a moment...",
12
+ "appInitializing": "Application is starting...",
13
13
  "autoGenerate": "Auto Generate",
14
14
  "autoGenerateTooltip": "Auto-generate assistant description based on prompts",
15
15
  "autoGenerateTooltipDisabled": "Please enter a tooltip before using the autocomplete feature",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Error Details",
17
17
  "notFound": {
18
18
  "backHome": "Back to Home",
19
- "desc": "We couldn't find the page you're looking for, please check if the link is correct",
19
+ "check": "Please check if your URL is correct.",
20
+ "desc": "We couldn't find the page you were looking for.",
20
21
  "title": "Entered Unknown Territory?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "embedding"
22
22
  }
23
23
  },
24
+ "empty": "No files or folders have been uploaded yet.",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "New Folder",
@@ -37,6 +38,7 @@
37
38
  "new": "New Knowledge Base",
38
39
  "title": "Knowledge Base"
39
40
  },
41
+ "networkError": "Failed to retrieve the knowledge base. Please check your network connection and try again.",
40
42
  "notSupportGuide": {
41
43
  "desc": "The current deployment instance is in client database mode, and file management features are not available. Please switch to <1>server database deployment mode</1>, or use <3>LobeChat Cloud</3> directly.",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Bienvenido a {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Iniciando la aplicación, por favor espere...",
12
+ "appInitializing": "Iniciando la aplicación...",
13
13
  "autoGenerate": "Generación automática",
14
14
  "autoGenerateTooltip": "Completar automáticamente la descripción del asistente basándose en las sugerencias",
15
15
  "autoGenerateTooltipDisabled": "Por favor, complete la palabra clave antes de usar la función de autocompletar",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Detalles del error",
17
17
  "notFound": {
18
18
  "backHome": "Volver a la página de inicio",
19
- "desc": "No podemos encontrar la página que estás buscando, por favor verifica si el enlace es correcto",
19
+ "check": "Por favor, verifica si tu URL es correcta",
20
+ "desc": "No podemos encontrar la página que estás buscando",
20
21
  "title": "¿Has entrado en un área desconocida?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Vectorización"
22
22
  }
23
23
  },
24
+ "empty": "No hay archivos/carpetas subidos aún",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Nueva carpeta",
@@ -37,6 +38,7 @@
37
38
  "new": "Nueva base de conocimientos",
38
39
  "title": "Base de conocimientos"
39
40
  },
41
+ "networkError": "Error al obtener la base de conocimientos, por favor verifica la conexión a internet y vuelve a intentarlo",
40
42
  "notSupportGuide": {
41
43
  "desc": "La instancia de despliegue actual está en modo de base de datos cliente, no se puede utilizar la función de gestión de archivos. Por favor, cambia a <1>modo de despliegue de base de datos en servidor</1>, o utiliza directamente <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Bienvenue à {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "L'application est en cours de démarrage, veuillez patienter...",
12
+ "appInitializing": "L'application est en cours de démarrage...",
13
13
  "autoGenerate": "Générer automatiquement",
14
14
  "autoGenerateTooltip": "Générer automatiquement la description de l'agent basée sur les suggestions",
15
15
  "autoGenerateTooltipDisabled": "Veuillez saisir un mot-clé avant d'activer la fonction de complétion automatique",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Détails de l'erreur",
17
17
  "notFound": {
18
18
  "backHome": "Retour à la page d'accueil",
19
- "desc": "La page que vous recherchez est introuvable. Veuillez vérifier si le lien est correct.",
19
+ "check": "Veuillez vérifier si votre URL est correcte",
20
+ "desc": "Nous n'avons pas pu trouver la page que vous recherchez.",
20
21
  "title": "Êtes-vous entré dans un domaine inconnu ?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Vectorisation"
22
22
  }
23
23
  },
24
+ "empty": "Aucun fichier/dossier téléchargé pour le moment",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Nouveau dossier",
@@ -37,6 +38,7 @@
37
38
  "new": "Nouvelle base de connaissances",
38
39
  "title": "Base de connaissances"
39
40
  },
41
+ "networkError": "Échec de l'accès à la base de connaissances, veuillez vérifier votre connexion réseau et réessayer",
40
42
  "notSupportGuide": {
41
43
  "desc": "L'instance déployée actuellement est en mode base de données client, la fonction de gestion des fichiers n'est pas disponible. Veuillez passer en <1>mode de déploiement de base de données serveur</1>, ou utilisez directement <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Benvenuto a {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Inizializzazione dell'app in corso, attendere pazientemente...",
12
+ "appInitializing": "Applicazione in fase di avvio...",
13
13
  "autoGenerate": "Generazione automatica",
14
14
  "autoGenerateTooltip": "Completamento automatico basato su suggerimenti",
15
15
  "autoGenerateTooltipDisabled": "Si prega di compilare il campo suggerimento per abilitare la funzione di completamento automatico",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Dettagli dell'errore",
17
17
  "notFound": {
18
18
  "backHome": "Torna alla homepage",
19
- "desc": "Non riusciamo a trovare la pagina che stai cercando, controlla che il link sia corretto",
19
+ "check": "Controlla se l'URL è corretto",
20
+ "desc": "Non siamo riusciti a trovare la pagina che stai cercando",
20
21
  "title": "Hai raggiunto un territorio sconosciuto?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Vettorizzazione"
22
22
  }
23
23
  },
24
+ "empty": "Nessun file/cartella caricato",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Nuova cartella",
@@ -37,6 +38,7 @@
37
38
  "new": "Nuova knowledge base",
38
39
  "title": "Knowledge Base"
39
40
  },
41
+ "networkError": "Impossibile ottenere la knowledge base, controlla la connessione di rete e riprova",
40
42
  "notSupportGuide": {
41
43
  "desc": "L'istanza attuale è in modalità database client e non supporta la gestione dei file. Passa a <1>modalità di distribuzione del database server</1>, oppure utilizza direttamente <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "{{name}} を体験してみてください"
10
10
  }
11
11
  },
12
- "appInitializing": "アプリケーションを初期化しています。しばらくお待ちください...",
12
+ "appInitializing": "アプリケーションを初期化しています...",
13
13
  "autoGenerate": "自動生成",
14
14
  "autoGenerateTooltip": "ヒントに基づいてエージェントの説明を自動生成します",
15
15
  "autoGenerateTooltipDisabled": "ツールチップを入力してから自動生成機能を使用してください",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "エラーの詳細",
17
17
  "notFound": {
18
18
  "backHome": "ホームに戻る",
19
- "desc": "お探しのページが見つかりません。リンクが正しいかどうかをご確認ください",
19
+ "check": "URLが正しいかどうかを確認してください",
20
+ "desc": "お探しのページが見つかりませんでした",
20
21
  "title": "未知の領域に入りましたか?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "ベクトル化"
22
22
  }
23
23
  },
24
+ "empty": "アップロードされたファイル/フォルダーはありません",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "新しいフォルダーを作成",
@@ -37,6 +38,7 @@
37
38
  "new": "新しい知識ベース",
38
39
  "title": "知識ベース"
39
40
  },
41
+ "networkError": "知識ベースの取得に失敗しました。ネットワーク接続を確認してから再試行してください",
40
42
  "notSupportGuide": {
41
43
  "desc": "現在のデプロイメントインスタンスはクライアントデータベースモードであり、ファイル管理機能を使用できません。<1>サーバーデータベースデプロイメントモード</1>に切り替えるか、直接 <3>LobeChat Cloud</3> を使用してください。",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "환영합니다 {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "앱을 시작하는 중입니다. 잠시 기다려주세요...",
12
+ "appInitializing": " 초기화 중...",
13
13
  "autoGenerate": "자동 생성",
14
14
  "autoGenerateTooltip": "힌트 단어를 기반으로 에이전트 설명을 자동으로 완성합니다",
15
15
  "autoGenerateTooltipDisabled": "자동 완성 기능을 사용하려면 툴팁을 입력하십시오",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "오류 상세",
17
17
  "notFound": {
18
18
  "backHome": "홈페이지로 돌아가기",
19
- "desc": "찾고 있는 페이지를 찾을 수 없습니다. 링크가 올바른지 확인해주세요.",
19
+ "check": "URL이 올바른지 확인해 주세요.",
20
+ "desc": "찾고 있는 페이지를 찾을 수 없습니다.",
20
21
  "title": "알 수 없는 영역에 들어갔나요?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "벡터화"
22
22
  }
23
23
  },
24
+ "empty": "업로드된 파일/폴더가 없습니다.",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "새 폴더 만들기",
@@ -37,6 +38,7 @@
37
38
  "new": "새 지식 베이스 만들기",
38
39
  "title": "지식 베이스"
39
40
  },
41
+ "networkError": "지식베이스를 가져오는 데 실패했습니다. 네트워크 연결을 확인한 후 다시 시도해 주세요.",
40
42
  "notSupportGuide": {
41
43
  "desc": "현재 배포된 인스턴스는 클라이언트 데이터베이스 모드로, 파일 관리 기능을 사용할 수 없습니다. <1>서버 데이터베이스 배포 모드</1>로 전환하거나 직접 <3>LobeChat Cloud</3>를 사용하세요.",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Welkom bij {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Applicatie wordt gestart, gelieve geduld te hebben...",
12
+ "appInitializing": "Applicatie wordt gestart...",
13
13
  "autoGenerate": "Automatisch genereren",
14
14
  "autoGenerateTooltip": "Automatisch assistentbeschrijving genereren op basis van suggesties",
15
15
  "autoGenerateTooltipDisabled": "Schakel de automatische aanvulling in nadat u een suggestiewoord heeft ingevoerd",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Foutdetails",
17
17
  "notFound": {
18
18
  "backHome": "Terug naar startpagina",
19
- "desc": "We kunnen de pagina die je zoekt niet vinden, controleer of de link juist is",
19
+ "check": "Controleer of je URL correct is",
20
+ "desc": "We kunnen de pagina die je zoekt niet vinden",
20
21
  "title": "Betreden onbekend terrein?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Vectorisatie"
22
22
  }
23
23
  },
24
+ "empty": "Geen bestanden/mappen geüpload",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Nieuwe map",
@@ -37,6 +38,7 @@
37
38
  "new": "Nieuwe kennisbank",
38
39
  "title": "Kennisbank"
39
40
  },
41
+ "networkError": "Kon de kennisbank niet ophalen, controleer uw netwerkverbinding en probeer het opnieuw",
40
42
  "notSupportGuide": {
41
43
  "desc": "De huidige implementatie is in client-database modus, waardoor de bestandsbeheerfunctie niet beschikbaar is. Schakel over naar <1>server-database implementatiemodus</1>, of gebruik direct <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Witaj w {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Inicjowanie aplikacji, prosimy o cierpliwość...",
12
+ "appInitializing": "Aplikacja uruchamia się...",
13
13
  "autoGenerate": "Automatyczne generowanie",
14
14
  "autoGenerateTooltip": "Automatyczne uzupełnianie opisu asystenta na podstawie sugestii",
15
15
  "autoGenerateTooltipDisabled": "Proszę wprowadzić słowo kluczowe przed użyciem funkcji automatycznego uzupełniania",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Szczegóły błędu",
17
17
  "notFound": {
18
18
  "backHome": "Powrót do strony głównej",
19
- "desc": "Nie możemy odnaleźć strony, której szukasz. Sprawdź, czy link jest poprawny.",
19
+ "check": "Proszę sprawdzić, czy Twój adres URL jest poprawny",
20
+ "desc": "Nie możemy znaleźć strony, której szukasz",
20
21
  "title": "Wkraczasz w nieznane terytorium?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Indeksowanie"
22
22
  }
23
23
  },
24
+ "empty": "Brak przesłanych plików/folderów",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Nowy folder",
@@ -37,6 +38,7 @@
37
38
  "new": "Nowa baza wiedzy",
38
39
  "title": "Baza wiedzy"
39
40
  },
41
+ "networkError": "Nie udało się uzyskać dostępu do bazy wiedzy, proszę sprawdzić połączenie sieciowe i spróbować ponownie",
40
42
  "notSupportGuide": {
41
43
  "desc": "Obecna instancja wdrożeniowa jest w trybie bazy danych klienta, co uniemożliwia korzystanie z funkcji zarządzania plikami. Proszę przełączyć się na <1>tryb wdrożenia bazy danych serwera</1> lub bezpośrednio korzystać z <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Bem-vindo para experimentar {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Inicializando o aplicativo, por favor, aguarde...",
12
+ "appInitializing": "Aplicativo iniciando...",
13
13
  "autoGenerate": "Auto completar",
14
14
  "autoGenerateTooltip": "Auto completar descrição do assistente com base em sugestões",
15
15
  "autoGenerateTooltipDisabled": "Por favor, preencha a dica antes de usar a função de preenchimento automático",
@@ -16,7 +16,8 @@
16
16
  "fetchErrorDetail": "Detalhes do erro",
17
17
  "notFound": {
18
18
  "backHome": "Voltar para a página inicial",
19
- "desc": "Não conseguimos encontrar a página que você está procurando, por favor, verifique se o link está correto",
19
+ "check": "Por favor, verifique se a sua URL está correta",
20
+ "desc": "Não conseguimos encontrar a página que você está procurando",
20
21
  "title": "Entrou em um território desconhecido?"
21
22
  },
22
23
  "pluginSettings": {
@@ -21,6 +21,7 @@
21
21
  "embeddingStatus": "Vetorização"
22
22
  }
23
23
  },
24
+ "empty": "Nenhum arquivo/pasta enviado até o momento",
24
25
  "header": {
25
26
  "actions": {
26
27
  "newFolder": "Nova pasta",
@@ -37,6 +38,7 @@
37
38
  "new": "Novo repositório de conhecimento",
38
39
  "title": "Repositório de conhecimento"
39
40
  },
41
+ "networkError": "Falha ao acessar a base de conhecimento, por favor verifique a conexão de rede e tente novamente",
40
42
  "notSupportGuide": {
41
43
  "desc": "A instância atual está no modo de banco de dados cliente e não pode usar a funcionalidade de gerenciamento de arquivos. Por favor, mude para <1>modo de banco de dados servidor</1>, ou use diretamente <3>LobeChat Cloud</3>",
42
44
  "features": {
@@ -9,7 +9,7 @@
9
9
  "title": "Добро пожаловать в {{name}}"
10
10
  }
11
11
  },
12
- "appInitializing": "Приложение запускается, пожалуйста, подождите...",
12
+ "appInitializing": "Приложение запускается...",
13
13
  "autoGenerate": "Автозаполнение",
14
14
  "autoGenerateTooltip": "Автоматическое дополнение описания агента на основе подсказок",
15
15
  "autoGenerateTooltipDisabled": "Пожалуйста, введите подсказку перед использованием функции автозаполнения",