@lobehub/chat 1.19.25 → 1.19.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/CHANGELOG.md +59 -0
  2. package/README.md +8 -8
  3. package/README.zh-CN.md +8 -8
  4. package/docker-compose/local/.env.example +17 -15
  5. package/docker-compose/local/.env.zh-CN.example +19 -16
  6. package/docker-compose/local/docker-compose.yml +17 -16
  7. package/docker-compose/local/init_data.json.tar.gz +0 -0
  8. package/docker-compose/local/s3_data.tar.gz +0 -0
  9. package/docker-compose/local/setup.sh +242 -0
  10. package/docker-compose/local-logto/.env.example +33 -0
  11. package/docker-compose/local-logto/.env.zh-CN.example +33 -0
  12. package/docker-compose/local-logto/docker-compose.yml +102 -0
  13. package/docs/self-hosting/advanced/auth/next-auth/auth0.mdx +5 -6
  14. package/docs/self-hosting/advanced/auth/next-auth/auth0.zh-CN.mdx +4 -5
  15. package/docs/self-hosting/advanced/auth/next-auth/authelia.mdx +4 -4
  16. package/docs/self-hosting/advanced/auth/next-auth/authelia.zh-CN.mdx +4 -4
  17. package/docs/self-hosting/advanced/auth/next-auth/authentik.mdx +4 -4
  18. package/docs/self-hosting/advanced/auth/next-auth/authentik.zh-CN.mdx +4 -4
  19. package/docs/self-hosting/advanced/auth/next-auth/cloudflare-zero-trust.mdx +4 -4
  20. package/docs/self-hosting/advanced/auth/next-auth/cloudflare-zero-trust.zh-CN.mdx +1 -1
  21. package/docs/self-hosting/advanced/auth/next-auth/github.mdx +3 -3
  22. package/docs/self-hosting/advanced/auth/next-auth/github.zh-CN.mdx +3 -3
  23. package/docs/self-hosting/advanced/auth/next-auth/logto.mdx +4 -4
  24. package/docs/self-hosting/advanced/auth/next-auth/logto.zh-CN.mdx +4 -4
  25. package/docs/self-hosting/advanced/auth/next-auth/microsoft-entra-id.mdx +4 -4
  26. package/docs/self-hosting/advanced/auth/next-auth/microsoft-entra-id.zh-CN.mdx +4 -4
  27. package/docs/self-hosting/advanced/auth/next-auth/zitadel.mdx +5 -5
  28. package/docs/self-hosting/advanced/auth/next-auth/zitadel.zh-CN.mdx +5 -5
  29. package/docs/self-hosting/server-database/docker-compose.mdx +2 -2
  30. package/docs/self-hosting/server-database/docker-compose.zh-CN.mdx +2 -2
  31. package/locales/ar/chat.json +2 -2
  32. package/locales/bg-BG/chat.json +2 -2
  33. package/locales/de-DE/chat.json +2 -2
  34. package/locales/en-US/chat.json +2 -2
  35. package/locales/es-ES/chat.json +2 -2
  36. package/locales/fr-FR/chat.json +2 -2
  37. package/locales/it-IT/chat.json +2 -2
  38. package/locales/ja-JP/chat.json +2 -2
  39. package/locales/ko-KR/chat.json +2 -2
  40. package/locales/nl-NL/chat.json +2 -2
  41. package/locales/pl-PL/chat.json +2 -2
  42. package/locales/pt-BR/chat.json +2 -2
  43. package/locales/ru-RU/chat.json +2 -2
  44. package/locales/tr-TR/chat.json +2 -2
  45. package/locales/vi-VN/chat.json +2 -2
  46. package/locales/zh-CN/chat.json +2 -2
  47. package/locales/zh-TW/chat.json +2 -2
  48. package/package.json +1 -1
  49. package/src/app/(main)/chat/(workspace)/_layout/Desktop/ChatHeader/Main.tsx +2 -2
  50. package/src/components/GalleyGrid/index.tsx +11 -8
  51. package/src/config/modelProviders/ai360.ts +2 -1
  52. package/src/layout/GlobalProvider/StoreInitialization.tsx +12 -8
  53. package/src/libs/agent-runtime/ai360/index.ts +8 -0
  54. package/src/locales/default/chat.ts +2 -2
@@ -0,0 +1,102 @@
1
+ services:
2
+ network-service:
3
+ image: alpine
4
+ container_name: lobe-network
5
+ ports:
6
+ - '${MINIO_PORT}:${MINIO_PORT}' # MinIO API
7
+ - '9001:9001' # MinIO Console
8
+ - '${LOGTO_PORT}:${LOGTO_PORT}' # Logto
9
+ - '3002:3002' # Logto Admin
10
+ - '${LOBE_PORT}:3210' # LobeChat
11
+ command: tail -f /dev/null
12
+ networks:
13
+ - lobe-network
14
+
15
+ postgresql:
16
+ image: pgvector/pgvector:pg16
17
+ container_name: lobe-postgres
18
+ ports:
19
+ - "5432:5432"
20
+ volumes:
21
+ - './data:/var/lib/postgresql/data'
22
+ environment:
23
+ - 'POSTGRES_DB=${LOBE_DB_NAME}'
24
+ - 'POSTGRES_PASSWORD=${POSTGRES_PASSWORD}'
25
+ healthcheck:
26
+ test: ['CMD-SHELL', 'pg_isready -U postgres']
27
+ interval: 5s
28
+ timeout: 5s
29
+ retries: 5
30
+ restart: always
31
+ networks:
32
+ - lobe-network
33
+
34
+ minio:
35
+ image: minio/minio
36
+ container_name: lobe-minio
37
+ network_mode: 'service:network-service'
38
+ volumes:
39
+ - './s3_data:/etc/minio/data'
40
+ environment:
41
+ - 'MINIO_ROOT_USER=${MINIO_ROOT_USER}'
42
+ - 'MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD}'
43
+ - 'MINIO_API_CORS_ALLOW_ORIGIN=http://localhost:${LOBE_PORT}'
44
+ restart: always
45
+ command: >
46
+ server /etc/minio/data --address ":${MINIO_PORT}" --console-address ":9001"
47
+
48
+ logto:
49
+ image: svhd/logto
50
+ container_name: lobe-logto
51
+ network_mode: 'service:network-service'
52
+ depends_on:
53
+ postgresql:
54
+ condition: service_healthy
55
+ environment:
56
+ - 'TRUST_PROXY_HEADER=1'
57
+ - 'PORT=${LOGTO_PORT}'
58
+ - 'DB_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgresql:5432/logto'
59
+ - 'ENDPOINT=http://localhost:${LOGTO_PORT}'
60
+ - 'ADMIN_ENDPOINT=http://localhost:3002'
61
+ entrypoint: ['sh', '-c', 'npm run cli db seed -- --swe && npm start']
62
+
63
+
64
+ lobe:
65
+ image: lobehub/lobe-chat-database
66
+ container_name: lobe-database
67
+ network_mode: 'service:network-service'
68
+ depends_on:
69
+ postgresql:
70
+ condition: service_healthy
71
+ network-service:
72
+ condition: service_started
73
+ minio:
74
+ condition: service_started
75
+ logto:
76
+ condition: service_started
77
+
78
+ environment:
79
+ - 'APP_URL=http://localhost:3210'
80
+ - 'NEXT_AUTH_SSO_PROVIDERS=logto'
81
+ - 'KEY_VAULTS_SECRET=Kix2wcUONd4CX51E/ZPAd36BqM4wzJgKjPtz2sGztqQ='
82
+ - 'NEXT_AUTH_SECRET=NX2kaPE923dt6BL2U8e9oSre5RfoT7hg'
83
+ - 'NEXTAUTH_URL=http://localhost:${LOBE_PORT}/api/auth'
84
+ - 'LOGTO_ISSUER=http://localhost:${LOGTO_PORT}/oidc'
85
+ - 'DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgresql:5432/${LOBE_DB_NAME}'
86
+ - 'S3_ENDPOINT=http://localhost:${MINIO_PORT}'
87
+ - 'S3_BUCKET=${MINIO_LOBE_BUCKET}'
88
+ - 'S3_PUBLIC_DOMAIN=http://localhost:${MINIO_PORT}'
89
+ - 'S3_ENABLE_PATH_STYLE=1'
90
+ env_file:
91
+ - .env
92
+ restart: always
93
+
94
+ volumes:
95
+ data:
96
+ driver: local
97
+ s3_data:
98
+ driver: local
99
+
100
+ networks:
101
+ lobe-network:
102
+ driver: bridge
@@ -77,12 +77,11 @@ When deploying LobeChat, you need to configure the following environment variabl
77
77
  | Environment Variable | Type | Description |
78
78
  | --- | --- | --- |
79
79
  | `NEXT_AUTH_SECRET` | Required | Key used to encrypt Auth.js session tokens. You can generate a key using the following command: `openssl rand -base64 32` |
80
- | `NEXT_AUTH_SSO_PROVIDERS` | Optional | Select the single sign-on provider for LoboChat. Use `auth0` for Auth0. |
81
- | `AUTH0_CLIENT_ID` | Required | Client ID of the Auth0 application |
82
- | `AUTH0_CLIENT_SECRET` | Required | Client Secret of the Auth0 application |
83
- | `AUTH0_ISSUER` | Required | Domain of the Auth0 application, `https://example.auth0.com` |
84
- | `ACCESS_CODE` | Required | Add a password to access this service. You can set a sufficiently long random password to "disable" access code authorization. |
85
- | `NEXTAUTH_URL` | Optional | The URL is used to specify the callback address for the execution of OAuth authentication in Auth.js. It needs to be set only when the default address is incorrect. `https://example.com/api/auth` |
80
+ | `NEXT_AUTH_SSO_PROVIDERS` | Required | Select the single sign-on provider for LoboChat. Use `auth0` for Auth0. |
81
+ | `AUTH_AUTH0_ID` | Required | Client ID of the Auth0 application |
82
+ | `AUTH_AUTH0_SECRET` | Required | Client Secret of the Auth0 application |
83
+ | `AUTH_AUTH0_ISSUER` | Required | Domain of the Auth0 application, `https://example.auth0.com` |
84
+ | `NEXTAUTH_URL` | Required | The URL is used to specify the callback address for the execution of OAuth authentication in Auth.js. It needs to be set only when the default address is incorrect. `https://example.com/api/auth` |
86
85
 
87
86
  <Callout type={'tip'}>
88
87
  You can refer to the related variable details at [📘Environment Variables](/docs/self-hosting/environment-variable#auth0).
@@ -73,11 +73,10 @@ http(s)://your-domain/api/auth/callback/auth0
73
73
  | --- | --- | --- |
74
74
  | `NEXT_AUTH_SECRET` | 必选 | 用于加密 Auth.js 会话令牌的密钥。您可以使用以下命令生成秘钥: `openssl rand -base64 32` |
75
75
  | `NEXT_AUTH_SSO_PROVIDERS` | 必选 | 选择 LoboChat 的单点登录提供商。使用 Auth0 请填写 `auth0`。 |
76
- | `AUTH0_CLIENT_ID` | 必选 | Auth0 应用程序的 Client ID |
77
- | `AUTH0_CLIENT_SECRET` | 必选 | Auth0 应用程序的 Client Secret |
78
- | `AUTH0_ISSUER` | 必选 | Auth0 应用程序的 Domain,`https://example.auth0.com` |
79
- | `ACCESS_CODE` | 必选 | 添加访问此服务的密码,你可以设置一个足够长的随机密码以 “禁用” 访问码授权 |
80
- | `NEXTAUTH_URL` | 可选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://example.com/api/auth` |
76
+ | `AUTH_AUTH0_ID` | 必选 | Auth0 应用程序的 Client ID |
77
+ | `AUTH_AUTH0_SECRET` | 必选 | Auth0 应用程序的 Client Secret |
78
+ | `AUTH_AUTH0_ISSUER` | 必选 | Auth0 应用程序的 Domain,`https://example.auth0.com` |
79
+ | `NEXTAUTH_URL` | 必选 | URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://example.com/api/auth` |
81
80
 
82
81
  <Callout type={'tip'}>
83
82
  前往 [📘 环境变量](/zh/docs/self-hosting/environment-variables/auth#auth-0) 可查阅相关变量详情。
@@ -59,10 +59,10 @@ When deploying LobeChat, you need to configure the following environment variabl
59
59
  | --- | --- | --- |
60
60
  | `NEXT_AUTH_SECRET` | Required | The secret used to encrypt Auth.js session tokens. You can generate a secret using the following command: `openssl rand -base64 32` |
61
61
  | `NEXT_AUTH_SSO_PROVIDERS` | Required | Select the SSO provider for LoboChat. Use `authentik` for Authentik. |
62
- | `AUTHELIA_CLIENT_ID` | Required | The id just configured in Authelia, example value is lobe-chat |
63
- | `AUTHELIA_CLIENT_SECRET` | The plaintext corresponding to the secret just configured in Authelia, example value is insecure_secret |
64
- | `AUTHELIA_ISSUER` | Required | Your Authelia URL, for example https://sso.example.com |
65
- | `NEXTAUTH_URL` | Optional | This URL is used to specify the callback address for Auth.js when performing OAuth verification. It only needs to be set when the default generated redirect address is incorrect. https://chat.example.com/api/auth |
62
+ | `AUTH_AUTHELIA_ID` | Required | The id just configured in Authelia, example value is lobe-chat |
63
+ | `AUTH_AUTHELIA_SECRET` | Required | The plaintext corresponding to the secret just configured in Authelia, example value is insecure_secret |
64
+ | `AUTH_AUTHELIA_ISSUER` | Required | Your Authelia URL, for example https://sso.example.com |
65
+ | `NEXTAUTH_URL` | Required | This URL is used to specify the callback address for Auth.js when performing OAuth verification. It only needs to be set when the default generated redirect address is incorrect. https://chat.example.com/api/auth |
66
66
 
67
67
  <Callout type={'tip'}>
68
68
  Go to [📘 Environment Variables](/docs/self-hosting/environment-variable#Authelia) for details about the variables.
@@ -57,10 +57,10 @@ identity_providers:
57
57
  | --- | --- | --- |
58
58
  | `NEXT_AUTH_SECRET` | 必选 | 用于加密 Auth.js 会话令牌的密钥。您可以使用以下命令生成秘钥: `openssl rand -base64 32` |
59
59
  | `NEXT_AUTH_SSO_PROVIDERS` | 必选 | 选择 LoboChat 的单点登录提供商。使用 Authelia 请填写 `authelia`。 |
60
- | `AUTHELIA_CLIENT_ID` | 必选 | 刚刚在 Authelia 配置的 `id`,示例值是 `lobe-chat` |
61
- | `AUTHELIA_CLIENT_SECRET` | 必选 | 刚刚在 Authelia 配置的 `secret` 对应的明文,示例值是 `insecure_secret` |
62
- | `AUTHELIA_ISSUER` | 必选 |您的 Authelia 的网址,例如 `https://sso.example.com` |
63
- | `NEXTAUTH_URL` | 可选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://chat.example.com/api/auth` |
60
+ | `AUTH_AUTHELIA_ID` | 必选 | 刚刚在 Authelia 配置的 `id`,示例值是 `lobe-chat` |
61
+ | `AUTH_AUTHELIA_SECRET` | 必选 | 刚刚在 Authelia 配置的 `secret` 对应的明文,示例值是 `insecure_secret` |
62
+ | `AUTH_AUTHELIA_ISSUER` | 必选 |您的 Authelia 的网址,例如 `https://sso.example.com` |
63
+ | `NEXTAUTH_URL` | 必选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://chat.example.com/api/auth` |
64
64
 
65
65
  <Callout type={'tip'}>
66
66
  前往 [📘 环境变量](/zh/docs/self-hosting/environment-variable#Authelia) 可查阅相关变量详情。
@@ -56,10 +56,10 @@ When deploying LobeChat, you need to configure the following environment variabl
56
56
  | --- | --- | --- |
57
57
  | `NEXT_AUTH_SECRET` | Required | The secret used to encrypt Auth.js session tokens. You can generate a secret using the following command: `openssl rand -base64 32` |
58
58
  | `NEXT_AUTH_SSO_PROVIDERS` | Required | Select the SSO provider for LoboChat. Use `authentik` for Authentik. |
59
- | `AUTHENTIK_CLIENT_ID` | Required | The Client ID from the Authentik application provider details page |
60
- | `AUTHENTIK_CLIENT_SECRET` | Required | The Client Secret from the Authentik application provider details page |
61
- | `AUTHENTIK_ISSUER` | Required | The OpenID Configuration Issuer from the Authentik application provider details page |
62
- | `NEXTAUTH_URL` | Optional | This URL is used to specify the callback address for Auth.js when performing OAuth authentication. It only needs to be set when the default generated redirect address is incorrect. `https://example.com/api/auth` |
59
+ | `AUTH_AUTHENTIK_ID` | Required | The Client ID from the Authentik application provider details page |
60
+ | `AUTH_AUTHENTIK_SECRET` | Required | The Client Secret from the Authentik application provider details page |
61
+ | `AUTH_AUTHENTIK_ISSUER` | Required | The OpenID Configuration Issuer from the Authentik application provider details page |
62
+ | `NEXTAUTH_URL` | Required | This URL is used to specify the callback address for Auth.js when performing OAuth authentication. It only needs to be set when the default generated redirect address is incorrect. `https://example.com/api/auth` |
63
63
 
64
64
  <Callout type={'tip'}>
65
65
  Go to [📘 Environment Variables](/docs/self-hosting/environment-variable#Authentik) for details about the variables.
@@ -51,10 +51,10 @@ https://your-domain/api/auth/callback/authentik
51
51
  | --- | --- | --- |
52
52
  | `NEXT_AUTH_SECRET` | 必选 | 用于加密 Auth.js 会话令牌的密钥。您可以使用以下命令生成秘钥: `openssl rand -base64 32` |
53
53
  | `NEXT_AUTH_SSO_PROVIDERS` | 必选 | 选择 LoboChat 的单点登录提供商。使用 Authentik 请填写 `authentik`。 |
54
- | `AUTHENTIK_CLIENT_ID` | 必选 | Authentik 提供程序详情页的 客户端 ID |
55
- | `AUTHENTIK_CLIENT_SECRET` | 必选 | Authentik 提供程序详情页的 客户端 Secret |
56
- | `AUTHENTIK_ISSUER` | 必选 | Authentik 提供程序详情页的 OpenID 配置颁发者 |
57
- | `NEXTAUTH_URL` | 可选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://example.com/api/auth` |
54
+ | `AUTH_AUTHENTIK_ID` | 必选 | Authentik 提供程序详情页的 客户端 ID |
55
+ | `AUTH_AUTHENTIK_SECRET` | 必选 | Authentik 提供程序详情页的 客户端 Secret |
56
+ | `AUTH_AUTHENTIK_ISSUER` | 必选 | Authentik 提供程序详情页的 OpenID 配置颁发者 |
57
+ | `NEXTAUTH_URL` | 必选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://example.com/api/auth` |
58
58
 
59
59
  <Callout type={'tip'}>
60
60
  前往 [📘 环境变量](/zh/docs/self-hosting/environment-variable#Authentik) 可查阅相关变量详情。
@@ -51,10 +51,10 @@ When deploying LobeChat, you need to configure the following environment variabl
51
51
  | --- | --- | --- |
52
52
  | `NEXT_AUTH_SECRET` | Required | The secret used to encrypt Auth.js session tokens. You can generate a secret using the following command: `openssl rand -base64 32` |
53
53
  | `NEXT_AUTH_SSO_PROVIDERS` | Required | Select the SSO provider for LoboChat. Use `cloudflare-zero-trust` for Cloudflare Zero Trust. |
54
- | `CLOUDFLARE_ZERO_TRUST_CLIENT_ID` | Required | The Client ID from the Cloudflare Zero Trust application provider details page |
55
- | `CLOUDFLARE_ZERO_TRUST_CLIENT_SECRET` | Required | The Client Secret from the Cloudflare Zero Trust application provider details page |
56
- | `CLOUDFLARE_ZERO_TRUST_ISSUER` | Required | The OpenID Configuration Issuer from the Cloudflare Zero Trust application provider details page |
57
- | `NEXTAUTH_URL` | Optional | This URL is used to specify the callback address for Auth.js when performing OAuth authentication. It only needs to be set when the default generated redirect address is incorrect. `https://example.com/api/auth` |
54
+ | `AUTH_CLOUDFLARE_ZERO_TRUST_ID` | Required | The Client ID from the Cloudflare Zero Trust application provider details page |
55
+ | `AUTH_CLOUDFLARE_ZERO_TRUST_SECRET` | Required | The Client Secret from the Cloudflare Zero Trust application provider details page |
56
+ | `AUTH_CLOUDFLARE_ZERO_TRUST_ISSUER` | Required | The OpenID Configuration Issuer from the Cloudflare Zero Trust application provider details page |
57
+ | `NEXTAUTH_URL` | Required | This URL is used to specify the callback address for Auth.js when performing OAuth authentication. It only needs to be set when the default generated redirect address is incorrect. `https://example.com/api/auth` |
58
58
 
59
59
  <Callout type={'tip'}>
60
60
  Go to [📘 Environment Variables](/docs/self-hosting/environment-variable#Cloudflare%20Zero%20Trust) for details about the variables.
@@ -52,7 +52,7 @@ tags:
52
52
  | `CLOUDFLARE_ZERO_TRUST_CLIENT_ID` | 必选 | 在 Cloudflare Zero Trust 生成的 `Client ID`,示例值是 `lobe-chat` |
53
53
  | `CLOUDFLARE_ZERO_TRUST_CLIENT_SECRET` | 必选 | 在 Cloudflare Zero Trust 生成的 `Client secret`,示例值是 `insecure_secret` |
54
54
  | `CLOUDFLARE_ZERO_TRUST_ISSUER` | 必选 | 在 Cloudflare Zero Trust 生成的 `Issuer`,例如 `https://example.cloudflareaccess.com/cdn-cgi/access/sso/oidc/7db0f` |
55
- | `NEXTAUTH_URL` | 可选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://chat.example.com/api/auth` |
55
+ | `NEXTAUTH_URL` | 必选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://chat.example.com/api/auth` |
56
56
 
57
57
  <Callout type={'tip'}>
58
58
  前往 [📘 环境变量](/zh/docs/self-hosting/environment-variable#Cloudflare%20Zero%20Trust) 可查阅相关变量详情。
@@ -84,9 +84,9 @@ When deploying LobeChat, you need to configure the following environment variabl
84
84
  | --- | --- | --- |
85
85
  | `NEXT_AUTH_SECRET` | Required | Key used to encrypt Auth.js session tokens. You can generate the key using the command: `openssl rand -base64 32` |
86
86
  | `NEXT_AUTH_SSO_PROVIDERS` | Required | Select the Single Sign-On provider for LobeChat. Use `github` for Github. |
87
- | `GITHUB_CLIENT_ID` | Required | Client ID in the Github App details page. |
88
- | `GITHUB_CLIENT_SECRET` | Required | Client Secret in the Github App details page. |
89
- | `NEXTAUTH_URL` | Optional | This URL is used to specify the callback address for Auth.js when performing OAuth authentication. Only set it if the default generated redirect address is incorrect. `https://example.com/api/auth` |
87
+ | `AUTH_GITHUB_ID` | Required | Client ID in the Github App details page. |
88
+ | `AUTH_GITHUB_SECRET` | Required | Client Secret in the Github App details page. |
89
+ | `NEXTAUTH_URL` | Required | This URL is used to specify the callback address for Auth.js when performing OAuth authentication. Only set it if the default generated redirect address is incorrect. `https://example.com/api/auth` |
90
90
 
91
91
  <Callout type={'tip'}>
92
92
  Go to [📘 Environment Variables](/docs/self-hosting/environment-variables/auth#github) for detailed
@@ -80,9 +80,9 @@ tags:
80
80
  | --- | --- | --- |
81
81
  | `NEXT_AUTH_SECRET` | 必选 | 用于加密 Auth.js 会话令牌的密钥。您可以使用以下命令生成秘钥: `openssl rand -base64 32` |
82
82
  | `NEXT_AUTH_SSO_PROVIDERS` | 必选 | 选择 LoboChat 的单点登录提供商。使用 Github 请填写 `github`。 |
83
- | `GITHUB_CLIENT_ID` | 必选 | Github App详情页的 客户端 ID |
84
- | `GITHUB_CLIENT_SECRET` | 必选 | Github App详情页的 客户端 Secret |
85
- | `NEXTAUTH_URL` | 可选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://example.com/api/auth` |
83
+ | `AUTH_GITHUB_ID` | 必选 | Github App详情页的 客户端 ID |
84
+ | `AUTH_GITHUB_SECRET` | 必选 | Github App详情页的 客户端 Secret |
85
+ | `NEXTAUTH_URL` | 必选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://example.com/api/auth` |
86
86
 
87
87
  <Callout type={'tip'}>
88
88
  前往 [📘 环境变量](/zh/docs/self-hosting/environment-variables/auth#github) 可查阅相关变量详情。
@@ -60,10 +60,10 @@ If you are using Logto Cloud, assume its endpoint domain is `https://example.log
60
60
  | ------------------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
61
61
  | `NEXT_AUTH_SECRET` | Required | The key used to encrypt Auth.js session tokens. You can generate a key using the command: `openssl rand -base64 32` |
62
62
  | `NEXT_AUTH_SSO_PROVIDERS` | Required | Select the single sign-on provider for LobeChat. For Logto, enter `logto`. |
63
- | `LOGTO_CLIENT_ID` | Required | The Client ID from the Logto App details page |
64
- | `LOGTO_CLIENT_SECRET` | Required | The Client Secret from the Logto App details page |
65
- | `LOGTO_ISSUER` | Required | OpenID Connect issuer of the Logto provider |
66
- | `NEXTAUTH_URL` | Optional | This URL specifies the callback address for Auth.js during OAuth verification, needed only if the default generated redirect address is incorrect. `https://lobe.example.com/api/auth` |
63
+ | `AUTH_LOGTO_ID` | Required | The Client ID from the Logto App details page |
64
+ | `AUTH_LOGTO_SECRET` | Required | The Client Secret from the Logto App details page |
65
+ | `AUTH_LOGTO_ISSUER` | Required | OpenID Connect issuer of the Logto provider |
66
+ | `NEXTAUTH_URL` | Required | This URL specifies the callback address for Auth.js during OAuth verification, needed only if the default generated redirect address is incorrect. `https://lobe.example.com/api/auth` |
67
67
 
68
68
  <Callout type={'tip'}>
69
69
  Visit [📘 Environment Variables](/docs/self-hosting/environment-variables/auth#logto) for details on related variables.
@@ -64,10 +64,10 @@ tags:
64
64
  | --- | --- | --- |
65
65
  | `NEXT_AUTH_SECRET` | 必选 | 用于加密 Auth.js 会话令牌的密钥。您可以使用以下命令生成秘钥: `openssl rand -base64 32` |
66
66
  | `NEXT_AUTH_SSO_PROVIDERS` | 必选 | 选择 LoboChat 的单点登录提供商。使用 Logto 请填写 `logto`。 |
67
- | `LOGTO_CLIENT_ID` | 必选 | Logto App 详情页的 Client ID |
68
- | `LOGTO_CLIENT_SECRET` | 必选 | Logto App 详情页的 Client Secret |
69
- | `LOGTO_ISSUER` | 必选 | Logto 提供程序的 OpenID Connect 颁发者 |
70
- | `NEXTAUTH_URL` | 可选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://lobe.example.com/api/auth` |
67
+ | `AUTH_LOGTO_ID` | 必选 | Logto App 详情页的 Client ID |
68
+ | `AUTH_LOGTO_SECRET` | 必选 | Logto App 详情页的 Client Secret |
69
+ | `AUTH_LOGTO_ISSUER` | 必选 | Logto 提供程序的 OpenID Connect 颁发者 |
70
+ | `NEXTAUTH_URL` | 必选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://lobe.example.com/api/auth` |
71
71
 
72
72
  <Callout type={'tip'}>
73
73
  前往 [📘 环境变量](/zh/docs/self-hosting/environment-variables/auth#logto) 可查阅相关变量详情。
@@ -73,10 +73,10 @@ When deploying LobeChat, you need to configure the following environment variabl
73
73
  | --- | --- | --- |
74
74
  | `NEXT_AUTH_SECRET` | Required | Key used to encrypt Auth.js session tokens. You can generate the key using the following command: `openssl rand -base64 32` |
75
75
  | `NEXT_AUTH_SSO_PROVIDERS` | Required | Select the single sign-on provider for LoboChat. Use `azure-ad` for Microsoft Entra ID. |
76
- | `AZURE_AD_CLIENT_ID` | Required | Client ID of the Microsoft Entra ID application. |
77
- | `AZURE_AD_CLIENT_SECRET` | Required | Client Secret of the Microsoft Entra ID application. |
78
- | `AZURE_AD_TENANT_ID` | Required | Tenant ID of the Microsoft Entra ID application. |
79
- | `NEXTAUTH_URL` | Optional | This URL is used to specify the callback address for Auth.js when performing OAuth authentication. It is only necessary to set it when the default generated redirect address is incorrect. `https://example.com/api/auth` |
76
+ | `AUTH_AZURE_AD_ID` | Required | Client ID of the Microsoft Entra ID application. |
77
+ | `AUTH_AZURE_AD_SECRET` | Required | Client Secret of the Microsoft Entra ID application. |
78
+ | `AUTH_AZURE_AD_TENANT_ID` | Required | Tenant ID of the Microsoft Entra ID application. |
79
+ | `NEXTAUTH_URL` | Required | This URL is used to specify the callback address for Auth.js when performing OAuth authentication. It is only necessary to set it when the default generated redirect address is incorrect. `https://example.com/api/auth` |
80
80
 
81
81
  <Callout type={'tip'}>
82
82
  You can refer to [📘 environment
@@ -70,10 +70,10 @@ https://your-domain/api/auth/callback/azure-ad
70
70
  | --- | --- | --- |
71
71
  | `NEXT_AUTH_SECRET` | 必选 | 用于加密 Auth.js 会话令牌的密钥。您可以使用以下命令生成秘钥: `openssl rand -base64 32` |
72
72
  | `NEXT_AUTH_SSO_PROVIDERS` | 必选 | 选择 LoboChat 的单点登录提供商。使用 Microsoft Entra ID 请填写 `azure-ad`。 |
73
- | `AZURE_AD_CLIENT_ID` | 必选 | Microsoft Entra ID 应用程序的 Client ID |
74
- | `AZURE_AD_CLIENT_SECRET` | 必选 | Microsoft Entra ID 应用程序的 Client Secret |
75
- | `AZURE_AD_TENANT_ID` | 必选 | Microsoft Entra ID 应用程序的 Tenant ID |
76
- | `NEXTAUTH_URL` | 可选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://example.com/api/auth` |
73
+ | `AUTH_AZURE_AD_ID` | 必选 | Microsoft Entra ID 应用程序的 Client ID |
74
+ | `AUTH_AZURE_AD_SECRET` | 必选 | Microsoft Entra ID 应用程序的 Client Secret |
75
+ | `AUTH_AZURE_AD_TENANT_ID` | 必选 | Microsoft Entra ID 应用程序的 Tenant ID |
76
+ | `NEXTAUTH_URL` | 必选 | 该 URL 用于指定 Auth.js 在执行 OAuth 验证时的回调地址,当默认生成的重定向地址发生不正确时才需要设置。`https://example.com/api/auth` |
77
77
 
78
78
  <Callout type={'tip'}>
79
79
  前往 [📘 环境变量](/zh/docs/self-hosting/environment-variable#microsoft-entra-id) 可查阅相关变量详情。
@@ -100,11 +100,11 @@ When deploying LobeChat, you need to configure the following environment variabl
100
100
  | Environment Variable | Type | Description |
101
101
  | --- | --- | --- |
102
102
  | `NEXT_AUTH_SECRET` | Required | Key used to encrypt Auth.js session tokens. You can generate a key using the following command: `openssl rand -base64 32` |
103
- | `NEXT_AUTH_SSO_PROVIDERS` | Optional | Select the single sign-on provider for LoboChat. Use `zitadel` for ZITADEL. |
104
- | `ZITADEL_CLIENT_ID` | Required | Client ID (`ClientId` as shown in ZITADEL) of the ZITADEL application |
105
- | `ZITADEL_CLIENT_SECRET` | Required | Client Secret (`ClientSecret` as shown in ZITADEL) of the ZITADEL application |
106
- | `ZITADEL_ISSUER` | Required | Issuer URL of the ZITADEL application |
107
- | `NEXTAUTH_URL` | Optional | The URL is used to specify the callback address for the execution of OAuth authentication in Auth.js. It needs to be set only when the default address is incorrect. `https://example.com/api/auth` |
103
+ | `NEXT_AUTH_SSO_PROVIDERS` | Required | Select the single sign-on provider for LoboChat. Use `zitadel` for ZITADEL. |
104
+ | `AUTH_ZITADEL_ID` | Required | Client ID (`ClientId` as shown in ZITADEL) of the ZITADEL application |
105
+ | `AUTH_ZITADEL_SECRET` | Required | Client Secret (`ClientSecret` as shown in ZITADEL) of the ZITADEL application |
106
+ | `AUTH_ZITADEL_ISSUER` | Required | Issuer URL of the ZITADEL application |
107
+ | `NEXTAUTH_URL` | Required | The URL is used to specify the callback address for the execution of OAuth authentication in Auth.js. It needs to be set only when the default address is incorrect. `https://example.com/api/auth` |
108
108
 
109
109
  <Callout type={'tip'}>
110
110
  You can refer to the related variable details at [📘Environment Variables](/docs/self-hosting/environment-variables/auth#zitadel).
@@ -96,11 +96,11 @@ http(s)://your-domain/api/auth/callback/zitadel
96
96
  | 环境变量 | 类型 | 描述 |
97
97
  | --- | --- | --- |
98
98
  | `NEXT_AUTH_SECRET` | 必选 | 用于加密 Auth.js 会话令牌的密钥。您可以使用以下命令生成密钥:`openssl rand -base64 32` |
99
- | `NEXT_AUTH_SSO_PROVIDERS` | 可选 | 为 LobeChat 选择单点登录提供程序。对于 ZITADEL,请填写 `zitadel`。 |
100
- | `ZITADEL_CLIENT_ID` | 必选 | ZITADEL 应用的 Client ID(`ClientId`)。 |
101
- | `ZITADEL_CLIENT_SECRET` | 必选 | ZITADEL 应用的 Client Secret(`ClientSecret`)。 |
102
- | `ZITADEL_ISSUER` | 必选 | ZITADEL 应用的 OpenID Connect 颁发者(issuer)URL。 |
103
- | `NEXTAUTH_URL` | 可选 | 该 URL 用于指定 Auth.js 中执行 OAuth 认证的回调地址。仅当默认地址不正确时才需要设置。`https://example.com/api/auth` |
99
+ | `NEXT_AUTH_SSO_PROVIDERS` | 必选 | 为 LobeChat 选择单点登录提供程序。对于 ZITADEL,请填写 `zitadel`。 |
100
+ | `AUTH_ZITADEL_ID` | 必选 | ZITADEL 应用的 Client ID(`ClientId`)。 |
101
+ | `AUTH_ZITADEL_SECRET` | 必选 | ZITADEL 应用的 Client Secret(`ClientSecret`)。 |
102
+ | `AUTH_ZITADEL_ISSUER` | 必选 | ZITADEL 应用的 OpenID Connect 颁发者(issuer)URL。 |
103
+ | `NEXTAUTH_URL` | 必选 | 该 URL 用于指定 Auth.js 中执行 OAuth 认证的回调地址。仅当默认地址不正确时才需要设置。`https://example.com/api/auth` |
104
104
 
105
105
  <Callout type={'tip'}>
106
106
  您可以在 [📘 环境变量](/zh/docs/self-hosting/environment-variables/auth#zitadel) 中查看相关变量的详细信息。
@@ -69,8 +69,8 @@ mkdir lobe-chat-db
69
69
  Pull the configuration files into your directory:
70
70
 
71
71
  ```sh
72
- curl -fsSL https://raw.githubusercontent.com/lobehub/lobe-chat/HEAD/docker-compose/local/docker-compose.yml > docker-compose.yml
73
- curl -fsSL https://raw.githubusercontent.com/lobehub/lobe-chat/HEAD/docker-compose/local/.env.example > .env
72
+ curl -fsSL https://raw.githubusercontent.com/lobehub/lobe-chat/HEAD/docker-compose/local-logto/docker-compose.yml > docker-compose.yml
73
+ curl -fsSL https://raw.githubusercontent.com/lobehub/lobe-chat/HEAD/docker-compose/local-logto/.env.example > .env
74
74
  ```
75
75
 
76
76
  ### Start Services
@@ -67,8 +67,8 @@ mkdir lobe-chat-db
67
67
  拉取配置文件到你的目录中:
68
68
 
69
69
  ```sh
70
- curl -fsSL https://raw.githubusercontent.com/lobehub/lobe-chat/HEAD/docker-compose/local/docker-compose.yml > docker-compose.yml
71
- curl -fsSL https://raw.githubusercontent.com/lobehub/lobe-chat/HEAD/docker-compose/local/.env.zh-CN.example > .env
70
+ curl -fsSL https://raw.githubusercontent.com/lobehub/lobe-chat/HEAD/docker-compose/local-logto/docker-compose.yml > docker-compose.yml
71
+ curl -fsSL https://raw.githubusercontent.com/lobehub/lobe-chat/HEAD/docker-compose/local-logto/.env.zh-CN.example > .env
72
72
  ```
73
73
 
74
74
  ### 启动服务
@@ -5,7 +5,7 @@
5
5
  "agentDefaultMessage": "مرحبًا، أنا **{{name}}**، يمكنك بدء المحادثة معي على الفور، أو يمكنك الذهاب إلى [إعدادات المساعد]({{url}}) لإكمال معلوماتي.",
6
6
  "agentDefaultMessageWithSystemRole": "مرحبًا، أنا **{{name}}**، {{systemRole}}، دعنا نبدأ الدردشة!",
7
7
  "agentDefaultMessageWithoutEdit": "مرحبًا، أنا **{{name}}**، دعنا نبدأ المحادثة!",
8
- "agentsAndConversations": "الوكلاء والمحادثات",
8
+ "agents": "مساعد",
9
9
  "artifact": {
10
10
  "generating": "جاري الإنشاء",
11
11
  "thinking": "جاري التفكير",
@@ -81,7 +81,7 @@
81
81
  },
82
82
  "regenerate": "إعادة الإنشاء",
83
83
  "roleAndArchive": "الدور والأرشيف",
84
- "searchAgentPlaceholder": "البحث عن مساعد ومحادثة...",
84
+ "searchAgentPlaceholder": "مساعد البحث...",
85
85
  "sendPlaceholder": "أدخل محتوى الدردشة...",
86
86
  "sessionGroup": {
87
87
  "config": "إدارة المجموعات",
@@ -5,7 +5,7 @@
5
5
  "agentDefaultMessage": "Здравейте, аз съм **{{name}}**, можете да започнете разговор с мен веднага или да отидете на [Настройки на асистента]({{url}}), за да попълните информацията ми.",
6
6
  "agentDefaultMessageWithSystemRole": "Здравей, аз съм **{{name}}**, {{systemRole}}. Нека започнем да чатим!",
7
7
  "agentDefaultMessageWithoutEdit": "Здравей, аз съм **{{name}}** и нека започнем разговора!",
8
- "agentsAndConversations": "агенти и разговори",
8
+ "agents": "Асистент",
9
9
  "artifact": {
10
10
  "generating": "Генериране",
11
11
  "thinking": "В процес на мислене",
@@ -81,7 +81,7 @@
81
81
  },
82
82
  "regenerate": "Прегенерирай",
83
83
  "roleAndArchive": "Роля и архив",
84
- "searchAgentPlaceholder": "Търсене на агенти и разговори...",
84
+ "searchAgentPlaceholder": "Търсач на помощ...",
85
85
  "sendPlaceholder": "Напиши съобщението си тук...",
86
86
  "sessionGroup": {
87
87
  "config": "Управление на групи",
@@ -5,7 +5,7 @@
5
5
  "agentDefaultMessage": "Hallo, ich bin **{{name}}**. Du kannst sofort mit mir sprechen oder zu den [Assistenteneinstellungen]({{url}}) gehen, um meine Informationen zu vervollständigen.",
6
6
  "agentDefaultMessageWithSystemRole": "Hallo, ich bin **{{name}}**, {{systemRole}}. Lass uns chatten!",
7
7
  "agentDefaultMessageWithoutEdit": "Hallo, ich bin **{{name}}**. Lassen Sie uns ins Gespräch kommen!",
8
- "agentsAndConversations": "Agenten und Unterhaltungen",
8
+ "agents": "Assistent",
9
9
  "artifact": {
10
10
  "generating": "Wird generiert",
11
11
  "thinking": "Denken",
@@ -81,7 +81,7 @@
81
81
  },
82
82
  "regenerate": "Neu generieren",
83
83
  "roleAndArchive": "Rolle und Archiv",
84
- "searchAgentPlaceholder": "Assistenten und Unterhaltungen durchsuchen...",
84
+ "searchAgentPlaceholder": "Suchassistent...",
85
85
  "sendPlaceholder": "Chat-Nachricht eingeben...",
86
86
  "sessionGroup": {
87
87
  "config": "Gruppenkonfiguration",
@@ -5,7 +5,7 @@
5
5
  "agentDefaultMessage": "Hello, I am **{{name}}**. You can start a conversation with me right away, or you can go to [Assistant Settings]({{url}}) to complete my information.",
6
6
  "agentDefaultMessageWithSystemRole": "Hello, I'm **{{name}}**, {{systemRole}}. Let's start chatting!",
7
7
  "agentDefaultMessageWithoutEdit": "Hello, I'm **{{name}}**, let's start chatting!",
8
- "agentsAndConversations": "Assistants and Conversations",
8
+ "agents": "Assistants",
9
9
  "artifact": {
10
10
  "generating": "Generating",
11
11
  "thinking": "Thinking",
@@ -81,7 +81,7 @@
81
81
  },
82
82
  "regenerate": "Regenerate",
83
83
  "roleAndArchive": "Role and Archive",
84
- "searchAgentPlaceholder": "Search assistants and conversations...",
84
+ "searchAgentPlaceholder": "Search assistants...",
85
85
  "sendPlaceholder": "Type your message here...",
86
86
  "sessionGroup": {
87
87
  "config": "Group Management",
@@ -5,7 +5,7 @@
5
5
  "agentDefaultMessage": "Hola, soy **{{name}}**. Puedes comenzar a hablar conmigo de inmediato o ir a [Configuración del asistente]({{url}}) para completar mi información.",
6
6
  "agentDefaultMessageWithSystemRole": "Hola, soy **{{name}}**, {{systemRole}}, ¡comencemos a chatear!",
7
7
  "agentDefaultMessageWithoutEdit": "¡Hola, soy **{{name}}**! Comencemos nuestra conversación.",
8
- "agentsAndConversations": "agentesYConversaciones",
8
+ "agents": "Asistente",
9
9
  "artifact": {
10
10
  "generating": "Generando",
11
11
  "thinking": "Pensando",
@@ -81,7 +81,7 @@
81
81
  },
82
82
  "regenerate": "Regenerar",
83
83
  "roleAndArchive": "Rol y archivo",
84
- "searchAgentPlaceholder": "Buscar asistentes y conversaciones...",
84
+ "searchAgentPlaceholder": "Asistente de búsqueda...",
85
85
  "sendPlaceholder": "Escribe tu mensaje...",
86
86
  "sessionGroup": {
87
87
  "config": "Gestión de grupos",
@@ -5,7 +5,7 @@
5
5
  "agentDefaultMessage": "Bonjour, je suis **{{name}}**, vous pouvez commencer à discuter avec moi immédiatement ou vous rendre dans [Paramètres de l'assistant]({{url}}) pour compléter mes informations.",
6
6
  "agentDefaultMessageWithSystemRole": "Bonjour, je suis **{{name}}**, {{systemRole}}. Commençons la conversation !",
7
7
  "agentDefaultMessageWithoutEdit": "Bonjour, je suis **{{name}}**. Commençons notre conversation !",
8
- "agentsAndConversations": "Agents et conversations",
8
+ "agents": "Assistant",
9
9
  "artifact": {
10
10
  "generating": "Génération en cours",
11
11
  "thinking": "En réflexion",
@@ -81,7 +81,7 @@
81
81
  },
82
82
  "regenerate": "Regénérer",
83
83
  "roleAndArchive": "Rôle et archivage",
84
- "searchAgentPlaceholder": "Rechercher des agents et des conversations...",
84
+ "searchAgentPlaceholder": "Assistant de recherche...",
85
85
  "sendPlaceholder": "Saisissez votre message...",
86
86
  "sessionGroup": {
87
87
  "config": "Gestion des groupes",
@@ -5,7 +5,7 @@
5
5
  "agentDefaultMessage": "Ciao, sono **{{name}}**, puoi iniziare subito a parlare con me oppure andare su [Impostazioni assistente]({{url}}) per completare le mie informazioni.",
6
6
  "agentDefaultMessageWithSystemRole": "Ciao, sono **{{name}}**, {{systemRole}}, iniziamo a chattare!",
7
7
  "agentDefaultMessageWithoutEdit": "Ciao, sono **{{name}}**. Cominciamo a chiacchierare!",
8
- "agentsAndConversations": "Assistenti e Conversazioni",
8
+ "agents": "Assistente",
9
9
  "artifact": {
10
10
  "generating": "Generazione in corso",
11
11
  "thinking": "In fase di riflessione",
@@ -81,7 +81,7 @@
81
81
  },
82
82
  "regenerate": "Rigenera",
83
83
  "roleAndArchive": "Ruolo e archivio",
84
- "searchAgentPlaceholder": "Cerca assistente e conversazioni...",
84
+ "searchAgentPlaceholder": "Assistente di ricerca...",
85
85
  "sendPlaceholder": "Inserisci il testo della chat...",
86
86
  "sessionGroup": {
87
87
  "config": "Gestione gruppi",
@@ -5,7 +5,7 @@
5
5
  "agentDefaultMessage": "こんにちは、私は **{{name}}** です。すぐに私と会話を始めることもできますし、[アシスタント設定]({{url}}) に行って私の情報を充実させることもできます。",
6
6
  "agentDefaultMessageWithSystemRole": "こんにちは、私は **{{name}}** です、{{systemRole}}、さあ、チャットを始めましょう!",
7
7
  "agentDefaultMessageWithoutEdit": "こんにちは、私は**{{name}}**です。会話しましょう!",
8
- "agentsAndConversations": "エージェントと会話",
8
+ "agents": "エージェント",
9
9
  "artifact": {
10
10
  "generating": "生成中",
11
11
  "thinking": "思考中",
@@ -81,7 +81,7 @@
81
81
  },
82
82
  "regenerate": "再生成",
83
83
  "roleAndArchive": "役割とアーカイブ",
84
- "searchAgentPlaceholder": "エージェントや会話を検索...",
84
+ "searchAgentPlaceholder": "検索アシスタント...",
85
85
  "sendPlaceholder": "チャット内容を入力してください...",
86
86
  "sessionGroup": {
87
87
  "config": "グループ設定",
@@ -5,7 +5,7 @@
5
5
  "agentDefaultMessage": "안녕하세요, 저는 **{{name}}**입니다. 지금 바로 저와 대화를 시작하시거나 [도우미 설정]({{url}})으로 가셔서 제 정보를 완성하실 수 있습니다.",
6
6
  "agentDefaultMessageWithSystemRole": "안녕하세요, 저는 **{{name}}**입니다. {{systemRole}}입니다. 대화를 시작해 봅시다!",
7
7
  "agentDefaultMessageWithoutEdit": "안녕하세요, 저는 **{{name}}**입니다. 대화를 시작해보세요!",
8
- "agentsAndConversations": "에이전트 및 대화",
8
+ "agents": "도우미",
9
9
  "artifact": {
10
10
  "generating": "생성 중",
11
11
  "thinking": "생각 중",
@@ -81,7 +81,7 @@
81
81
  },
82
82
  "regenerate": "재생성",
83
83
  "roleAndArchive": "역할 및 아카이브",
84
- "searchAgentPlaceholder": "도우미 및 대화 검색...",
84
+ "searchAgentPlaceholder": "검색 도우미...",
85
85
  "sendPlaceholder": "채팅 내용 입력...",
86
86
  "sessionGroup": {
87
87
  "config": "그룹 설정",
@@ -5,7 +5,7 @@
5
5
  "agentDefaultMessage": "Hallo, ik ben **{{name}}**. Je kunt meteen met me beginnen praten, of je kunt naar [Assistentinstellingen]({{url}}) gaan om mijn informatie aan te vullen.",
6
6
  "agentDefaultMessageWithSystemRole": "Hallo, ik ben **{{name}}**, {{systemRole}}, laten we beginnen met praten!",
7
7
  "agentDefaultMessageWithoutEdit": "Hallo, ik ben **{{name}}**. Laten we beginnen met een gesprek!",
8
- "agentsAndConversations": "agenten en gesprekken",
8
+ "agents": "Assistent",
9
9
  "artifact": {
10
10
  "generating": "Genereren",
11
11
  "thinking": "Denken",
@@ -81,7 +81,7 @@
81
81
  },
82
82
  "regenerate": "Opnieuw genereren",
83
83
  "roleAndArchive": "Rol en archief",
84
- "searchAgentPlaceholder": "Zoek assistenten en gesprekken...",
84
+ "searchAgentPlaceholder": "Zoekassistent...",
85
85
  "sendPlaceholder": "Voer chatbericht in...",
86
86
  "sessionGroup": {
87
87
  "config": "Groepsbeheer",
@@ -5,7 +5,7 @@
5
5
  "agentDefaultMessage": "Cześć, jestem **{{name}}**, możesz od razu rozpocząć ze mną rozmowę lub przejść do [ustawień asystenta]({{url}}), aby uzupełnić moje informacje.",
6
6
  "agentDefaultMessageWithSystemRole": "Cześć, jestem **{{name}}**, {{systemRole}}, zacznijmy rozmowę!",
7
7
  "agentDefaultMessageWithoutEdit": "Cześć, jestem **{{name}}**. Zacznijmy rozmowę!",
8
- "agentsAndConversations": "Agenci i rozmowy",
8
+ "agents": "Asystent",
9
9
  "artifact": {
10
10
  "generating": "Generowanie",
11
11
  "thinking": "Myślenie",
@@ -81,7 +81,7 @@
81
81
  },
82
82
  "regenerate": "Wygeneruj ponownie",
83
83
  "roleAndArchive": "Rola i archiwum",
84
- "searchAgentPlaceholder": "Szukaj asystentów i rozmów...",
84
+ "searchAgentPlaceholder": "Wyszukaj pomocnika...",
85
85
  "sendPlaceholder": "Wpisz treść rozmowy...",
86
86
  "sessionGroup": {
87
87
  "config": "Zarządzanie grupami",