@lobehub/chat 1.11.1 → 1.11.2
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/.nvmrc +1 -1
- package/CHANGELOG.md +17 -0
- package/Dockerfile.database +70 -22
- package/README.md +1 -1
- package/README.zh-CN.md +1 -1
- package/locales/ar/common.json +3 -0
- package/locales/ar/setting.json +5 -0
- package/locales/bg-BG/common.json +3 -0
- package/locales/bg-BG/setting.json +5 -0
- package/locales/de-DE/common.json +3 -0
- package/locales/de-DE/setting.json +5 -0
- package/locales/en-US/common.json +3 -0
- package/locales/en-US/setting.json +5 -0
- package/locales/es-ES/common.json +3 -0
- package/locales/es-ES/setting.json +5 -0
- package/locales/fr-FR/common.json +3 -0
- package/locales/fr-FR/setting.json +5 -0
- package/locales/it-IT/common.json +3 -0
- package/locales/it-IT/setting.json +5 -0
- package/locales/ja-JP/common.json +3 -0
- package/locales/ja-JP/setting.json +5 -0
- package/locales/ko-KR/common.json +3 -0
- package/locales/ko-KR/setting.json +5 -0
- package/locales/nl-NL/common.json +3 -0
- package/locales/nl-NL/setting.json +5 -0
- package/locales/pl-PL/common.json +3 -0
- package/locales/pl-PL/setting.json +5 -0
- package/locales/pt-BR/common.json +3 -0
- package/locales/pt-BR/setting.json +5 -0
- package/locales/ru-RU/common.json +3 -0
- package/locales/ru-RU/setting.json +5 -0
- package/locales/tr-TR/common.json +3 -0
- package/locales/tr-TR/setting.json +5 -0
- package/locales/vi-VN/common.json +3 -0
- package/locales/vi-VN/setting.json +5 -0
- package/locales/zh-CN/common.json +3 -0
- package/locales/zh-CN/error.json +1 -1
- package/locales/zh-CN/setting.json +6 -1
- package/locales/zh-TW/common.json +3 -0
- package/locales/zh-TW/setting.json +5 -0
- package/next.config.mjs +67 -66
- package/package.json +20 -8
- package/src/app/(main)/@nav/_layout/Desktop/TopActions.test.tsx +11 -0
- package/src/app/(main)/@nav/_layout/Desktop/TopActions.tsx +13 -1
- package/src/config/featureFlags/schema.ts +6 -0
- package/src/config/file.ts +6 -0
- package/src/config/knowledge.ts +17 -0
- package/src/const/settings/llm.ts +1 -0
- package/src/const/settings/systemAgent.ts +1 -0
- package/src/locales/default/common.ts +3 -0
- package/src/locales/default/setting.ts +5 -0
- package/src/store/file/initialState.ts +1 -1
- package/src/store/file/selectors.ts +1 -1
- package/src/store/file/store.ts +1 -1
- package/src/store/global/initialState.ts +5 -0
- package/src/store/global/selectors.ts +4 -0
- package/src/store/serverConfig/selectors.test.ts +1 -0
- package/src/types/user/index.ts +12 -4
- package/src/types/user/settings/systemAgent.ts +1 -0
- /package/src/store/file/slices/{images → chat}/action.test.ts +0 -0
- /package/src/store/file/slices/{images → chat}/action.ts +0 -0
- /package/src/store/file/slices/{images → chat}/index.ts +0 -0
- /package/src/store/file/slices/{images → chat}/initialState.ts +0 -0
- /package/src/store/file/slices/{images → chat}/selectors.test.ts +0 -0
- /package/src/store/file/slices/{images → chat}/selectors.ts +0 -0
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
lts/
|
|
1
|
+
lts/iron
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 1.11.2](https://github.com/lobehub/lobe-chat/compare/v1.11.1...v1.11.2)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-08-17**</sup>
|
|
8
|
+
|
|
9
|
+
<br/>
|
|
10
|
+
|
|
11
|
+
<details>
|
|
12
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
13
|
+
|
|
14
|
+
</details>
|
|
15
|
+
|
|
16
|
+
<div align="right">
|
|
17
|
+
|
|
18
|
+
[](#readme-top)
|
|
19
|
+
|
|
20
|
+
</div>
|
|
21
|
+
|
|
5
22
|
### [Version 1.11.1](https://github.com/lobehub/lobe-chat/compare/v1.11.0...v1.11.1)
|
|
6
23
|
|
|
7
24
|
<sup>Released on **2024-08-15**</sup>
|
package/Dockerfile.database
CHANGED
|
@@ -1,20 +1,32 @@
|
|
|
1
1
|
## Base image for all the stages
|
|
2
2
|
FROM node:20-alpine AS base
|
|
3
3
|
|
|
4
|
+
ARG USE_CN_MIRROR
|
|
5
|
+
|
|
4
6
|
RUN \
|
|
7
|
+
# If you want to build docker in China, build with --build-arg USE_CN_MIRROR=true
|
|
8
|
+
if [ "${USE_CN_MIRROR:-false}" = "true" ]; then \
|
|
9
|
+
sed -i "s/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g" "/etc/apk/repositories"; \
|
|
10
|
+
fi \
|
|
11
|
+
# Add required package & update base package
|
|
12
|
+
&& apk update \
|
|
13
|
+
&& apk add --no-cache bind-tools proxychains-ng \
|
|
14
|
+
&& apk upgrade --no-cache \
|
|
5
15
|
# Add user nextjs to run the app
|
|
6
|
-
addgroup --system --gid 1001 nodejs \
|
|
7
|
-
&& adduser --system --uid 1001 nextjs
|
|
16
|
+
&& addgroup --system --gid 1001 nodejs \
|
|
17
|
+
&& adduser --system --uid 1001 nextjs \
|
|
18
|
+
&& chown -R nextjs:nodejs "/etc/proxychains" \
|
|
19
|
+
&& rm -rf /tmp/* /var/cache/apk/*
|
|
8
20
|
|
|
9
21
|
## Builder image, install all the dependencies and build the app
|
|
10
22
|
FROM base AS builder
|
|
11
23
|
|
|
12
|
-
ARG
|
|
24
|
+
ARG USE_CN_MIRROR
|
|
13
25
|
|
|
14
|
-
ENV
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
26
|
+
ENV NEXT_PUBLIC_SERVICE_MODE="server" \
|
|
27
|
+
DATABASE_DRIVER="node" \
|
|
28
|
+
DATABASE_URL="postgres://postgres:password@localhost:5432/postgres" \
|
|
29
|
+
KEY_VAULTS_SECRET="use-for-build"
|
|
18
30
|
|
|
19
31
|
# Sentry
|
|
20
32
|
ENV NEXT_PUBLIC_SENTRY_DSN="" \
|
|
@@ -40,8 +52,8 @@ COPY package.json ./
|
|
|
40
52
|
COPY .npmrc ./
|
|
41
53
|
|
|
42
54
|
RUN \
|
|
43
|
-
# If you want to build docker in China, build with --build-arg
|
|
44
|
-
if [ "${
|
|
55
|
+
# If you want to build docker in China, build with --build-arg USE_CN_MIRROR=true
|
|
56
|
+
if [ "${USE_CN_MIRROR:-false}" = "true" ]; then \
|
|
45
57
|
export SENTRYCLI_CDNURL="https://npmmirror.com/mirrors/sentry-cli"; \
|
|
46
58
|
npm config set registry "https://registry.npmmirror.com/"; \
|
|
47
59
|
fi \
|
|
@@ -94,26 +106,29 @@ ENV HOSTNAME="0.0.0.0" \
|
|
|
94
106
|
PORT="3210"
|
|
95
107
|
|
|
96
108
|
# General Variables
|
|
97
|
-
ENV
|
|
98
|
-
|
|
109
|
+
ENV ACCESS_CODE="" \
|
|
110
|
+
API_KEY_SELECT_MODE="" \
|
|
111
|
+
DEFAULT_AGENT_CONFIG="" \
|
|
112
|
+
SYSTEM_AGENT="" \
|
|
113
|
+
FEATURE_FLAGS="" \
|
|
114
|
+
PROXY_URL=""
|
|
99
115
|
|
|
100
116
|
# Database
|
|
101
117
|
ENV KEY_VAULTS_SECRET="" \
|
|
102
|
-
DATABASE_DRIVER="node" \
|
|
103
|
-
DATABASE_URL=""
|
|
118
|
+
DATABASE_DRIVER="node" \
|
|
119
|
+
DATABASE_URL=""
|
|
104
120
|
|
|
105
121
|
# Next Auth
|
|
106
122
|
ENV NEXT_AUTH_SECRET="" \
|
|
107
|
-
|
|
108
|
-
NEXTAUTH_URL=""
|
|
109
|
-
NEXT_AUTH_SSO_PROVIDERS=""
|
|
123
|
+
NEXT_AUTH_SSO_PROVIDERS="" \
|
|
124
|
+
NEXTAUTH_URL=""
|
|
110
125
|
|
|
111
126
|
# S3
|
|
112
|
-
ENV
|
|
113
|
-
|
|
114
|
-
|
|
127
|
+
ENV NEXT_PUBLIC_S3_DOMAIN="" \
|
|
128
|
+
S3_ACCESS_KEY_ID="" \
|
|
129
|
+
S3_BUCKET="" \
|
|
115
130
|
S3_ENDPOINT="" \
|
|
116
|
-
|
|
131
|
+
S3_SECRET_ACCESS_KEY=""
|
|
117
132
|
|
|
118
133
|
# Model Variables
|
|
119
134
|
ENV \
|
|
@@ -166,5 +181,38 @@ USER nextjs
|
|
|
166
181
|
|
|
167
182
|
EXPOSE 3210/tcp
|
|
168
183
|
|
|
169
|
-
|
|
170
|
-
|
|
184
|
+
CMD \
|
|
185
|
+
if [ -n "$PROXY_URL" ]; then \
|
|
186
|
+
# Set regex for IPv4
|
|
187
|
+
IP_REGEX="^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$"; \
|
|
188
|
+
# Set proxychains command
|
|
189
|
+
PROXYCHAINS="proxychains -q"; \
|
|
190
|
+
# Parse the proxy URL
|
|
191
|
+
host_with_port="${PROXY_URL#*//}"; \
|
|
192
|
+
host="${host_with_port%%:*}"; \
|
|
193
|
+
port="${PROXY_URL##*:}"; \
|
|
194
|
+
protocol="${PROXY_URL%%://*}"; \
|
|
195
|
+
# Resolve to IP address if the host is a domain
|
|
196
|
+
if ! [[ "$host" =~ "$IP_REGEX" ]]; then \
|
|
197
|
+
nslookup=$(nslookup -q="A" "$host" | tail -n +3 | grep 'Address:'); \
|
|
198
|
+
if [ -n "$nslookup" ]; then \
|
|
199
|
+
host=$(echo "$nslookup" | tail -n 1 | awk '{print $2}'); \
|
|
200
|
+
fi; \
|
|
201
|
+
fi; \
|
|
202
|
+
# Generate proxychains configuration file
|
|
203
|
+
printf "%s\n" \
|
|
204
|
+
'localnet 127.0.0.0/255.0.0.0' \
|
|
205
|
+
'localnet ::1/128' \
|
|
206
|
+
'proxy_dns' \
|
|
207
|
+
'remote_dns_subnet 224' \
|
|
208
|
+
'strict_chain' \
|
|
209
|
+
'tcp_connect_time_out 8000' \
|
|
210
|
+
'tcp_read_time_out 15000' \
|
|
211
|
+
'[ProxyList]' \
|
|
212
|
+
"$protocol $host $port" \
|
|
213
|
+
> "/etc/proxychains/proxychains.conf"; \
|
|
214
|
+
fi; \
|
|
215
|
+
# Run migration
|
|
216
|
+
node "/app/docker.cjs"; \
|
|
217
|
+
# Run the server
|
|
218
|
+
${PROXYCHAINS} node "/app/server.js";
|
package/README.md
CHANGED
|
@@ -308,7 +308,7 @@ LobeChat supports multi-user management and provides two main user authenticatio
|
|
|
308
308
|
|
|
309
309
|
- **next-auth**: LobeChat integrates `next-auth`, a flexible and powerful identity verification library that supports multiple authentication methods, including OAuth, email login, credential login, etc. With `next-auth`, you can easily implement user registration, login, session management, social login, and other functions to ensure the security and privacy of user data.
|
|
310
310
|
|
|
311
|
-
- **Clerk
|
|
311
|
+
- [**Clerk**](https://go.clerk.com/exgqLG0): For users who need more advanced user management features, LobeChat also supports `Clerk`, a modern user management platform. `Clerk` provides richer functions, such as multi-factor authentication (MFA), user profile management, login activity monitoring, etc. With `Clerk`, you can get higher security and flexibility, and easily cope with complex user management needs.
|
|
312
312
|
|
|
313
313
|
Regardless of which user management solution you choose, LobeChat can provide you with an excellent user experience and powerful functional support.
|
|
314
314
|
|
package/README.zh-CN.md
CHANGED
|
@@ -296,7 +296,7 @@ LobeChat 支持多用户管理,提供了两种主要的用户认证和管理
|
|
|
296
296
|
|
|
297
297
|
- **next-auth**:LobeChat 集成了 `next-auth`,一个灵活且强大的身份验证库,支持多种身份验证方式,包括 OAuth、邮件登录、凭证登录等。通过 `next-auth`,您可以轻松实现用户的注册、登录、会话管理以及社交登录等功能,确保用户数据的安全性和隐私性。
|
|
298
298
|
|
|
299
|
-
- **Clerk
|
|
299
|
+
- [**Clerk**](https://go.clerk.com/exgqLG0):对于需要更高级用户管理功能的用户,LobeChat 还支持 `Clerk`,一个现代化的用户管理平台。`Clerk` 提供了更丰富的功能,如多因素认证 (MFA)、白名单、用户管理、登录活动监控等。通过 `Clerk`,您可以获得更高的安全性和灵活性,轻松应对生产级的用户管理需求。
|
|
300
300
|
|
|
301
301
|
您可以根据自己的需求,选择合适的用户管理方案。
|
|
302
302
|
|
package/locales/ar/common.json
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"autoGenerate": "توليد تلقائي",
|
|
14
14
|
"autoGenerateTooltip": "إكمال تلقائي بناءً على الكلمات المقترحة لوصف المساعد",
|
|
15
15
|
"autoGenerateTooltipDisabled": "الرجاء إدخال كلمة تلميح قبل تفعيل وظيفة الإكمال التلقائي",
|
|
16
|
+
"batchDelete": "حذف دفعة",
|
|
16
17
|
"blog": "مدونة المنتجات",
|
|
17
18
|
"cancel": "إلغاء",
|
|
18
19
|
"changelog": "سجل التغييرات",
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"defaultSession": "جلسة افتراضية",
|
|
32
33
|
"delete": "حذف",
|
|
33
34
|
"document": "وثيقة الاستخدام",
|
|
35
|
+
"download": "تحميل",
|
|
34
36
|
"duplicate": "إنشاء نسخة",
|
|
35
37
|
"edit": "تحرير",
|
|
36
38
|
"export": "تصدير الإعدادات",
|
|
@@ -192,6 +194,7 @@
|
|
|
192
194
|
},
|
|
193
195
|
"tab": {
|
|
194
196
|
"chat": "الدردشة",
|
|
197
|
+
"files": "ملفات",
|
|
195
198
|
"market": "الاكتشاف",
|
|
196
199
|
"me": "أنا",
|
|
197
200
|
"setting": "الإعدادات"
|
package/locales/ar/setting.json
CHANGED
|
@@ -372,6 +372,11 @@
|
|
|
372
372
|
"modelDesc": "يحدد النموذج المستخدم لإنشاء اسم المساعد ووصفه وصورته وعلامته",
|
|
373
373
|
"title": "توليد معلومات المساعد تلقائيًا"
|
|
374
374
|
},
|
|
375
|
+
"queryRewrite": {
|
|
376
|
+
"label": "نموذج إعادة صياغة الأسئلة",
|
|
377
|
+
"modelDesc": "نموذج مخصص لتحسين أسئلة المستخدمين",
|
|
378
|
+
"title": "قاعدة المعرفة"
|
|
379
|
+
},
|
|
375
380
|
"title": "مساعد النظام",
|
|
376
381
|
"topic": {
|
|
377
382
|
"label": "نموذج تسمية الموضوع",
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"autoGenerate": "Автоматично генериране",
|
|
14
14
|
"autoGenerateTooltip": "Автоматично генериране на описание на агент въз основа на подкани",
|
|
15
15
|
"autoGenerateTooltipDisabled": "Моля, попълнете подсказката, за да използвате функцията за автоматично допълване",
|
|
16
|
+
"batchDelete": "Пакетно изтриване",
|
|
16
17
|
"blog": "Продуктов блог",
|
|
17
18
|
"cancel": "Отказ",
|
|
18
19
|
"changelog": "Дневник на промените",
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"defaultSession": "Агент по подразбиране",
|
|
32
33
|
"delete": "Изтрий",
|
|
33
34
|
"document": "Ръководство за потребителя",
|
|
35
|
+
"download": "Изтегляне",
|
|
34
36
|
"duplicate": "Създай дубликат",
|
|
35
37
|
"edit": "Редактирай",
|
|
36
38
|
"export": "Експортирай конфигурация",
|
|
@@ -192,6 +194,7 @@
|
|
|
192
194
|
},
|
|
193
195
|
"tab": {
|
|
194
196
|
"chat": "Чат",
|
|
197
|
+
"files": "Файлове",
|
|
195
198
|
"market": "Открий",
|
|
196
199
|
"me": "аз",
|
|
197
200
|
"setting": "Настройки"
|
|
@@ -372,6 +372,11 @@
|
|
|
372
372
|
"modelDesc": "Модел, определен за генериране на име, описание, профилна снимка и етикети на помощник",
|
|
373
373
|
"title": "Автоматично генериране на информация за помощник"
|
|
374
374
|
},
|
|
375
|
+
"queryRewrite": {
|
|
376
|
+
"label": "Модел за пренаписване на запитвания",
|
|
377
|
+
"modelDesc": "Определя модел за оптимизиране на запитванията на потребителите",
|
|
378
|
+
"title": "База знания"
|
|
379
|
+
},
|
|
375
380
|
"title": "Системен асистент",
|
|
376
381
|
"topic": {
|
|
377
382
|
"label": "Модел за именуване на теми",
|
|
@@ -13,6 +13,7 @@
|
|
|
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
|
+
"batchDelete": "Massenlöschung",
|
|
16
17
|
"blog": "Produkt-Blog",
|
|
17
18
|
"cancel": "Abbrechen",
|
|
18
19
|
"changelog": "Änderungsprotokoll",
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"defaultSession": "Standardassistent",
|
|
32
33
|
"delete": "Löschen",
|
|
33
34
|
"document": "Dokumentation",
|
|
35
|
+
"download": "Herunterladen",
|
|
34
36
|
"duplicate": "Duplikat erstellen",
|
|
35
37
|
"edit": "Bearbeiten",
|
|
36
38
|
"export": "Exportieren",
|
|
@@ -192,6 +194,7 @@
|
|
|
192
194
|
},
|
|
193
195
|
"tab": {
|
|
194
196
|
"chat": "Chat",
|
|
197
|
+
"files": "Dateien",
|
|
195
198
|
"market": "Entdecken",
|
|
196
199
|
"me": "Ich",
|
|
197
200
|
"setting": "Einstellung"
|
|
@@ -372,6 +372,11 @@
|
|
|
372
372
|
"modelDesc": "Das Modell, das zur Generierung von Assistentennamen, -beschreibungen, -avatars und -tags verwendet wird",
|
|
373
373
|
"title": "Automatische Generierung von Assistenteninformationen"
|
|
374
374
|
},
|
|
375
|
+
"queryRewrite": {
|
|
376
|
+
"label": "Fragenumformulierung Modell",
|
|
377
|
+
"modelDesc": "Modell zur Optimierung der Benutzeranfragen",
|
|
378
|
+
"title": "Wissensdatenbank"
|
|
379
|
+
},
|
|
375
380
|
"title": "Systemassistent",
|
|
376
381
|
"topic": {
|
|
377
382
|
"label": "Themenbenennungsmodell",
|
|
@@ -13,6 +13,7 @@
|
|
|
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
|
+
"batchDelete": "Batch Delete",
|
|
16
17
|
"blog": "Product Blog",
|
|
17
18
|
"cancel": "Cancel",
|
|
18
19
|
"changelog": "Changelog",
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"defaultSession": "Default Assistant",
|
|
32
33
|
"delete": "Delete",
|
|
33
34
|
"document": "User Manual",
|
|
35
|
+
"download": "Download",
|
|
34
36
|
"duplicate": "Create Duplicate",
|
|
35
37
|
"edit": "Edit",
|
|
36
38
|
"export": "Export Configuration",
|
|
@@ -192,6 +194,7 @@
|
|
|
192
194
|
},
|
|
193
195
|
"tab": {
|
|
194
196
|
"chat": "Chat",
|
|
197
|
+
"files": "Files",
|
|
195
198
|
"market": "Discover",
|
|
196
199
|
"me": "Me",
|
|
197
200
|
"setting": "Settings"
|
|
@@ -372,6 +372,11 @@
|
|
|
372
372
|
"modelDesc": "Model designated for generating assistant name, description, avatar, and tags",
|
|
373
373
|
"title": "Automatically Generate Assistant Information"
|
|
374
374
|
},
|
|
375
|
+
"queryRewrite": {
|
|
376
|
+
"label": "Question Rewriting Model",
|
|
377
|
+
"modelDesc": "Specify the model used to optimize user inquiries",
|
|
378
|
+
"title": "Knowledge Base"
|
|
379
|
+
},
|
|
375
380
|
"title": "System Assistants",
|
|
376
381
|
"topic": {
|
|
377
382
|
"label": "Topic Naming Model",
|
|
@@ -13,6 +13,7 @@
|
|
|
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
|
+
"batchDelete": "Eliminar en lote",
|
|
16
17
|
"blog": "Blog de productos",
|
|
17
18
|
"cancel": "Cancelar",
|
|
18
19
|
"changelog": "Registro de cambios",
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"defaultSession": "Sesión predeterminada",
|
|
32
33
|
"delete": "Eliminar",
|
|
33
34
|
"document": "Documento de uso",
|
|
35
|
+
"download": "Descargar",
|
|
34
36
|
"duplicate": "Duplicar",
|
|
35
37
|
"edit": "Editar",
|
|
36
38
|
"export": "Exportar configuración",
|
|
@@ -192,6 +194,7 @@
|
|
|
192
194
|
},
|
|
193
195
|
"tab": {
|
|
194
196
|
"chat": "Chat",
|
|
197
|
+
"files": "Archivos",
|
|
195
198
|
"market": "Descubrir",
|
|
196
199
|
"me": "Yo",
|
|
197
200
|
"setting": "Configuración"
|
|
@@ -372,6 +372,11 @@
|
|
|
372
372
|
"modelDesc": "Modelo designado para generar el nombre, descripción, avatar y etiquetas del asistente",
|
|
373
373
|
"title": "Generación automática de información del asistente"
|
|
374
374
|
},
|
|
375
|
+
"queryRewrite": {
|
|
376
|
+
"label": "Modelo de reescritura de preguntas",
|
|
377
|
+
"modelDesc": "Modelo designado para optimizar las preguntas de los usuarios",
|
|
378
|
+
"title": "Base de conocimientos"
|
|
379
|
+
},
|
|
375
380
|
"title": "Asistente del sistema",
|
|
376
381
|
"topic": {
|
|
377
382
|
"label": "Modelo de nombramiento de temas",
|
|
@@ -13,6 +13,7 @@
|
|
|
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
|
+
"batchDelete": "Suppression en masse",
|
|
16
17
|
"blog": "Blog des produits",
|
|
17
18
|
"cancel": "Annuler",
|
|
18
19
|
"changelog": "Journal des modifications",
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"defaultSession": "Session par défaut",
|
|
32
33
|
"delete": "Supprimer",
|
|
33
34
|
"document": "Document d'utilisation",
|
|
35
|
+
"download": "Télécharger",
|
|
34
36
|
"duplicate": "Dupliquer",
|
|
35
37
|
"edit": "Modifier",
|
|
36
38
|
"export": "Exporter",
|
|
@@ -192,6 +194,7 @@
|
|
|
192
194
|
},
|
|
193
195
|
"tab": {
|
|
194
196
|
"chat": "Conversation",
|
|
197
|
+
"files": "Fichiers",
|
|
195
198
|
"market": "Découvrir",
|
|
196
199
|
"me": "moi",
|
|
197
200
|
"setting": "Paramètre"
|
|
@@ -372,6 +372,11 @@
|
|
|
372
372
|
"modelDesc": "Modèle spécifié pour générer le nom, la description, l'avatar et les balises de l'assistant",
|
|
373
373
|
"title": "Génération automatique des informations de l'assistant"
|
|
374
374
|
},
|
|
375
|
+
"queryRewrite": {
|
|
376
|
+
"label": "Modèle de reformulation des questions",
|
|
377
|
+
"modelDesc": "Modèle utilisé pour optimiser les questions des utilisateurs",
|
|
378
|
+
"title": "Base de connaissances"
|
|
379
|
+
},
|
|
375
380
|
"title": "Agent système",
|
|
376
381
|
"topic": {
|
|
377
382
|
"label": "Modèle de nommage des sujets",
|
|
@@ -13,6 +13,7 @@
|
|
|
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
|
+
"batchDelete": "Elimina in batch",
|
|
16
17
|
"blog": "Blog sui prodotti",
|
|
17
18
|
"cancel": "Annulla",
|
|
18
19
|
"changelog": "Registro modifiche",
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"defaultSession": "Sessione predefinita",
|
|
32
33
|
"delete": "Elimina",
|
|
33
34
|
"document": "Documento di utilizzo",
|
|
35
|
+
"download": "Scarica",
|
|
34
36
|
"duplicate": "Duplicato",
|
|
35
37
|
"edit": "Modifica",
|
|
36
38
|
"export": "Esporta configurazione",
|
|
@@ -192,6 +194,7 @@
|
|
|
192
194
|
},
|
|
193
195
|
"tab": {
|
|
194
196
|
"chat": "Chat",
|
|
197
|
+
"files": "File",
|
|
195
198
|
"market": "Scopri",
|
|
196
199
|
"me": "io",
|
|
197
200
|
"setting": "Impostazioni"
|
|
@@ -372,6 +372,11 @@
|
|
|
372
372
|
"modelDesc": "Modello specificato per generare nome, descrizione, avatar e etichetta dell'assistente",
|
|
373
373
|
"title": "Genera automaticamente informazioni sull'assistente"
|
|
374
374
|
},
|
|
375
|
+
"queryRewrite": {
|
|
376
|
+
"label": "Modello di riscrittura delle domande",
|
|
377
|
+
"modelDesc": "Modello specificato per ottimizzare le domande degli utenti",
|
|
378
|
+
"title": "Banca dati"
|
|
379
|
+
},
|
|
375
380
|
"title": "Assistente di sistema",
|
|
376
381
|
"topic": {
|
|
377
382
|
"label": "Modello di denominazione degli argomenti",
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"autoGenerate": "自動生成",
|
|
14
14
|
"autoGenerateTooltip": "ヒントに基づいてエージェントの説明を自動生成します",
|
|
15
15
|
"autoGenerateTooltipDisabled": "ツールチップを入力してから自動生成機能を使用してください",
|
|
16
|
+
"batchDelete": "バッチ削除",
|
|
16
17
|
"blog": "製品ブログ",
|
|
17
18
|
"cancel": "キャンセル",
|
|
18
19
|
"changelog": "変更履歴",
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"defaultSession": "デフォルトセッション",
|
|
32
33
|
"delete": "削除",
|
|
33
34
|
"document": "ドキュメント",
|
|
35
|
+
"download": "ダウンロード",
|
|
34
36
|
"duplicate": "コピーを作成する",
|
|
35
37
|
"edit": "編集",
|
|
36
38
|
"export": "エクスポート",
|
|
@@ -192,6 +194,7 @@
|
|
|
192
194
|
},
|
|
193
195
|
"tab": {
|
|
194
196
|
"chat": "チャット",
|
|
197
|
+
"files": "ファイル",
|
|
195
198
|
"market": "探す",
|
|
196
199
|
"me": "私",
|
|
197
200
|
"setting": "設定"
|
|
@@ -372,6 +372,11 @@
|
|
|
372
372
|
"modelDesc": "アシスタントの名前、説明、アバター、ラベルを生成するために指定されたモデル",
|
|
373
373
|
"title": "アシスタント情報の自動生成"
|
|
374
374
|
},
|
|
375
|
+
"queryRewrite": {
|
|
376
|
+
"label": "質問リライトモデル",
|
|
377
|
+
"modelDesc": "ユーザーの質問を最適化するために指定されたモデル",
|
|
378
|
+
"title": "知識ベース"
|
|
379
|
+
},
|
|
375
380
|
"title": "システムアシスタント",
|
|
376
381
|
"topic": {
|
|
377
382
|
"label": "トピックネーミングモデル",
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"autoGenerate": "자동 생성",
|
|
14
14
|
"autoGenerateTooltip": "힌트 단어를 기반으로 에이전트 설명을 자동으로 완성합니다",
|
|
15
15
|
"autoGenerateTooltipDisabled": "자동 완성 기능을 사용하려면 툴팁을 입력하십시오",
|
|
16
|
+
"batchDelete": "일괄 삭제",
|
|
16
17
|
"blog": "제품 블로그",
|
|
17
18
|
"cancel": "취소",
|
|
18
19
|
"changelog": "변경 로그",
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"defaultSession": "기본 세션",
|
|
32
33
|
"delete": "삭제",
|
|
33
34
|
"document": "사용 설명서",
|
|
35
|
+
"download": "다운로드",
|
|
34
36
|
"duplicate": "복제품 만들기",
|
|
35
37
|
"edit": "편집",
|
|
36
38
|
"export": "내보내기",
|
|
@@ -192,6 +194,7 @@
|
|
|
192
194
|
},
|
|
193
195
|
"tab": {
|
|
194
196
|
"chat": "채팅",
|
|
197
|
+
"files": "파일",
|
|
195
198
|
"market": "발견",
|
|
196
199
|
"me": "나",
|
|
197
200
|
"setting": "설정"
|
|
@@ -372,6 +372,11 @@
|
|
|
372
372
|
"modelDesc": "어시스턴트 이름, 설명, 프로필 이미지, 레이블을 생성하는 데 사용되는 모델을 지정합니다.",
|
|
373
373
|
"title": "어시스턴트 정보 자동 생성"
|
|
374
374
|
},
|
|
375
|
+
"queryRewrite": {
|
|
376
|
+
"label": "질문 재작성 모델",
|
|
377
|
+
"modelDesc": "사용자의 질문을 최적화하는 데 사용되는 모델 지정",
|
|
378
|
+
"title": "지식 베이스"
|
|
379
|
+
},
|
|
375
380
|
"title": "시스템 도우미",
|
|
376
381
|
"topic": {
|
|
377
382
|
"label": "주제 명명 모델",
|
|
@@ -13,6 +13,7 @@
|
|
|
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
|
+
"batchDelete": "Batch verwijderen",
|
|
16
17
|
"blog": "Product Blog",
|
|
17
18
|
"cancel": "Annuleren",
|
|
18
19
|
"changelog": "Wijzigingslogboek",
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"defaultSession": "Standaard assistent",
|
|
32
33
|
"delete": "Verwijderen",
|
|
33
34
|
"document": "Gebruiksaanwijzing",
|
|
35
|
+
"download": "Downloaden",
|
|
34
36
|
"duplicate": "Dupliceren",
|
|
35
37
|
"edit": "Bewerken",
|
|
36
38
|
"export": "Exporteren",
|
|
@@ -192,6 +194,7 @@
|
|
|
192
194
|
},
|
|
193
195
|
"tab": {
|
|
194
196
|
"chat": "Chat",
|
|
197
|
+
"files": "Bestanden",
|
|
195
198
|
"market": "Ontdekken",
|
|
196
199
|
"me": "Ik",
|
|
197
200
|
"setting": "Instellingen"
|
|
@@ -372,6 +372,11 @@
|
|
|
372
372
|
"modelDesc": "Model voor het genereren van assistentnaam, beschrijving, profielfoto en labels",
|
|
373
373
|
"title": "Automatisch assistentinformatie genereren"
|
|
374
374
|
},
|
|
375
|
+
"queryRewrite": {
|
|
376
|
+
"label": "Vraag herschrijvingsmodel",
|
|
377
|
+
"modelDesc": "Model dat is opgegeven voor het optimaliseren van gebruikersvragen",
|
|
378
|
+
"title": "Kennisbank"
|
|
379
|
+
},
|
|
375
380
|
"title": "Systeemassistent",
|
|
376
381
|
"topic": {
|
|
377
382
|
"label": "Onderwerp Naamgevingsmodel",
|
|
@@ -13,6 +13,7 @@
|
|
|
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
|
+
"batchDelete": "Usuń wiele",
|
|
16
17
|
"blog": "Blog produktowy",
|
|
17
18
|
"cancel": "Anuluj",
|
|
18
19
|
"changelog": "Dziennik zmian",
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"defaultSession": "Domyślna sesja",
|
|
32
33
|
"delete": "Usuń",
|
|
33
34
|
"document": "Dokumentacja",
|
|
35
|
+
"download": "Pobierz",
|
|
34
36
|
"duplicate": "Utwórz kopię",
|
|
35
37
|
"edit": "Edytuj",
|
|
36
38
|
"export": "Eksportuj ustawienia",
|
|
@@ -192,6 +194,7 @@
|
|
|
192
194
|
},
|
|
193
195
|
"tab": {
|
|
194
196
|
"chat": "Czat",
|
|
197
|
+
"files": "Pliki",
|
|
195
198
|
"market": "Odkrywaj",
|
|
196
199
|
"me": "ja",
|
|
197
200
|
"setting": "Ustawienia"
|
|
@@ -372,6 +372,11 @@
|
|
|
372
372
|
"modelDesc": "Określa model używany do generowania nazwy, opisu, awatara i etykiety asystenta",
|
|
373
373
|
"title": "Automatyczne generowanie informacji o asystencie"
|
|
374
374
|
},
|
|
375
|
+
"queryRewrite": {
|
|
376
|
+
"label": "Model przekształcania zapytań",
|
|
377
|
+
"modelDesc": "Model używany do optymalizacji zapytań użytkowników",
|
|
378
|
+
"title": "Baza wiedzy"
|
|
379
|
+
},
|
|
375
380
|
"title": "Asystent Systemowy",
|
|
376
381
|
"topic": {
|
|
377
382
|
"label": "Model nazewnictwa tematów",
|
|
@@ -13,6 +13,7 @@
|
|
|
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
|
+
"batchDelete": "Excluir em massa",
|
|
16
17
|
"blog": "Blog de Produtos",
|
|
17
18
|
"cancel": "Cancelar",
|
|
18
19
|
"changelog": "Registro de alterações",
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"defaultSession": "Sessão padrão",
|
|
32
33
|
"delete": "Excluir",
|
|
33
34
|
"document": "Documento de Uso",
|
|
35
|
+
"download": "Baixar",
|
|
34
36
|
"duplicate": "Duplicar",
|
|
35
37
|
"edit": "Editar",
|
|
36
38
|
"export": "Exportar configuração",
|
|
@@ -192,6 +194,7 @@
|
|
|
192
194
|
},
|
|
193
195
|
"tab": {
|
|
194
196
|
"chat": "Chat",
|
|
197
|
+
"files": "Arquivos",
|
|
195
198
|
"market": "Descobrir",
|
|
196
199
|
"me": "eu",
|
|
197
200
|
"setting": "Configuração"
|
|
@@ -372,6 +372,11 @@
|
|
|
372
372
|
"modelDesc": "Especifica o modelo usado para gerar o nome, descrição, avatar e tags do assistente",
|
|
373
373
|
"title": "Geração Automática de Informações do Assistente"
|
|
374
374
|
},
|
|
375
|
+
"queryRewrite": {
|
|
376
|
+
"label": "Modelo de Reescrita de Perguntas",
|
|
377
|
+
"modelDesc": "Modelo designado para otimizar as perguntas dos usuários",
|
|
378
|
+
"title": "Base de Conhecimento"
|
|
379
|
+
},
|
|
375
380
|
"title": "Assistente do Sistema",
|
|
376
381
|
"topic": {
|
|
377
382
|
"label": "Modelo de Nomeação de Tópicos",
|