@lobehub/chat 1.79.7 → 1.79.8
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/CHANGELOG.md +25 -0
- package/changelog/v1.json +9 -0
- package/docs/development/database-schema.dbml +119 -0
- package/locales/ar/models.json +12 -0
- package/locales/ar/oauth.json +39 -0
- package/locales/bg-BG/models.json +12 -0
- package/locales/bg-BG/oauth.json +39 -0
- package/locales/de-DE/models.json +12 -0
- package/locales/de-DE/oauth.json +39 -0
- package/locales/en-US/models.json +12 -0
- package/locales/en-US/oauth.json +39 -0
- package/locales/es-ES/models.json +12 -0
- package/locales/es-ES/oauth.json +39 -0
- package/locales/fa-IR/models.json +12 -0
- package/locales/fa-IR/oauth.json +39 -0
- package/locales/fr-FR/models.json +12 -0
- package/locales/fr-FR/oauth.json +39 -0
- package/locales/it-IT/models.json +12 -0
- package/locales/it-IT/oauth.json +39 -0
- package/locales/ja-JP/models.json +12 -0
- package/locales/ja-JP/oauth.json +39 -0
- package/locales/ko-KR/models.json +12 -0
- package/locales/ko-KR/oauth.json +39 -0
- package/locales/nl-NL/models.json +12 -0
- package/locales/nl-NL/oauth.json +39 -0
- package/locales/pl-PL/models.json +12 -0
- package/locales/pl-PL/oauth.json +39 -0
- package/locales/pt-BR/models.json +12 -0
- package/locales/pt-BR/oauth.json +39 -0
- package/locales/ru-RU/models.json +12 -0
- package/locales/ru-RU/oauth.json +39 -0
- package/locales/tr-TR/models.json +12 -0
- package/locales/tr-TR/oauth.json +39 -0
- package/locales/vi-VN/models.json +12 -0
- package/locales/vi-VN/oauth.json +39 -0
- package/locales/zh-CN/models.json +12 -0
- package/locales/zh-CN/oauth.json +39 -0
- package/locales/zh-TW/models.json +12 -0
- package/locales/zh-TW/oauth.json +39 -0
- package/package.json +4 -1
- package/scripts/generate-oidc-jwk.mjs +59 -0
- package/scripts/migrateServerDB/index.ts +3 -1
- package/src/app/(backend)/oidc/[...oidc]/route.ts +270 -0
- package/src/app/(backend)/oidc/consent/route.ts +97 -0
- package/src/app/[variants]/oauth/consent/[uid]/Client.tsx +97 -0
- package/src/app/[variants]/oauth/consent/[uid]/failed/page.tsx +36 -0
- package/src/app/[variants]/oauth/consent/[uid]/page.tsx +71 -0
- package/src/app/[variants]/oauth/consent/[uid]/success/page.tsx +30 -0
- package/src/database/client/migrations.json +27 -8
- package/src/database/migrations/0020_add_oidc.sql +124 -0
- package/src/database/migrations/meta/0020_snapshot.json +4975 -0
- package/src/database/migrations/meta/_journal.json +7 -0
- package/src/database/repositories/tableViewer/index.test.ts +1 -1
- package/src/database/schemas/index.ts +1 -0
- package/src/database/schemas/oidc.ts +158 -0
- package/src/database/server/models/__tests__/adapter.test.ts +503 -0
- package/src/envs/oidc.ts +18 -0
- package/src/libs/agent-runtime/azureOpenai/index.ts +4 -1
- package/src/libs/agent-runtime/utils/streams/protocol.ts +2 -4
- package/src/libs/oidc-provider/adapter.ts +494 -0
- package/src/libs/oidc-provider/config.ts +53 -0
- package/src/libs/oidc-provider/http-adapter.ts +279 -0
- package/src/libs/oidc-provider/interaction-policy.ts +37 -0
- package/src/libs/oidc-provider/provider.ts +260 -0
- package/src/locales/default/index.ts +2 -0
- package/src/locales/default/oauth.ts +41 -0
- package/src/middleware.ts +94 -6
- package/src/server/services/oidc/index.ts +29 -0
- package/src/server/services/oidc/oidcProvider.ts +27 -0
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.79.8](https://github.com/lobehub/lobe-chat/compare/v1.79.7...v1.79.8)
|
6
|
+
|
7
|
+
<sup>Released on **2025-04-12**</sup>
|
8
|
+
|
9
|
+
#### 🐛 Bug Fixes
|
10
|
+
|
11
|
+
- **misc**: Fix Azure OpenAI unable to process image messages in local s3.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### What's fixed
|
19
|
+
|
20
|
+
- **misc**: Fix Azure OpenAI unable to process image messages in local s3, closes [#7385](https://github.com/lobehub/lobe-chat/issues/7385) ([c98c0f8](https://github.com/lobehub/lobe-chat/commit/c98c0f8))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.79.7](https://github.com/lobehub/lobe-chat/compare/v1.79.6...v1.79.7)
|
6
31
|
|
7
32
|
<sup>Released on **2025-04-11**</sup>
|
package/changelog/v1.json
CHANGED
@@ -349,6 +349,125 @@ table nextauth_verificationtokens {
|
|
349
349
|
}
|
350
350
|
}
|
351
351
|
|
352
|
+
table oidc_access_tokens {
|
353
|
+
id varchar(255) [pk, not null]
|
354
|
+
data jsonb [not null]
|
355
|
+
expires_at "timestamp with time zone" [not null]
|
356
|
+
consumed_at "timestamp with time zone"
|
357
|
+
user_id text [not null]
|
358
|
+
client_id varchar(255) [not null]
|
359
|
+
grant_id varchar(255)
|
360
|
+
accessed_at "timestamp with time zone" [not null, default: `now()`]
|
361
|
+
created_at "timestamp with time zone" [not null, default: `now()`]
|
362
|
+
updated_at "timestamp with time zone" [not null, default: `now()`]
|
363
|
+
}
|
364
|
+
|
365
|
+
table oidc_authorization_codes {
|
366
|
+
id varchar(255) [pk, not null]
|
367
|
+
data jsonb [not null]
|
368
|
+
expires_at "timestamp with time zone" [not null]
|
369
|
+
consumed_at "timestamp with time zone"
|
370
|
+
user_id text [not null]
|
371
|
+
client_id varchar(255) [not null]
|
372
|
+
grant_id varchar(255)
|
373
|
+
accessed_at "timestamp with time zone" [not null, default: `now()`]
|
374
|
+
created_at "timestamp with time zone" [not null, default: `now()`]
|
375
|
+
updated_at "timestamp with time zone" [not null, default: `now()`]
|
376
|
+
}
|
377
|
+
|
378
|
+
table oidc_clients {
|
379
|
+
id varchar(255) [pk, not null]
|
380
|
+
name text [not null]
|
381
|
+
description text
|
382
|
+
client_secret varchar(255)
|
383
|
+
redirect_uris text[] [not null]
|
384
|
+
grants text[] [not null]
|
385
|
+
response_types text[] [not null]
|
386
|
+
scopes text[] [not null]
|
387
|
+
token_endpoint_auth_method varchar(20)
|
388
|
+
application_type varchar(20)
|
389
|
+
client_uri text
|
390
|
+
logo_uri text
|
391
|
+
policy_uri text
|
392
|
+
tos_uri text
|
393
|
+
is_first_party boolean [default: false]
|
394
|
+
accessed_at "timestamp with time zone" [not null, default: `now()`]
|
395
|
+
created_at "timestamp with time zone" [not null, default: `now()`]
|
396
|
+
updated_at "timestamp with time zone" [not null, default: `now()`]
|
397
|
+
}
|
398
|
+
|
399
|
+
table oidc_consents {
|
400
|
+
user_id text [not null]
|
401
|
+
client_id varchar(255) [not null]
|
402
|
+
scopes text[] [not null]
|
403
|
+
expires_at "timestamp with time zone"
|
404
|
+
accessed_at "timestamp with time zone" [not null, default: `now()`]
|
405
|
+
created_at "timestamp with time zone" [not null, default: `now()`]
|
406
|
+
updated_at "timestamp with time zone" [not null, default: `now()`]
|
407
|
+
|
408
|
+
indexes {
|
409
|
+
(user_id, client_id) [pk]
|
410
|
+
}
|
411
|
+
}
|
412
|
+
|
413
|
+
table oidc_device_codes {
|
414
|
+
id varchar(255) [pk, not null]
|
415
|
+
data jsonb [not null]
|
416
|
+
expires_at "timestamp with time zone" [not null]
|
417
|
+
consumed_at "timestamp with time zone"
|
418
|
+
user_id text
|
419
|
+
client_id varchar(255) [not null]
|
420
|
+
grant_id varchar(255)
|
421
|
+
user_code varchar(255)
|
422
|
+
accessed_at "timestamp with time zone" [not null, default: `now()`]
|
423
|
+
created_at "timestamp with time zone" [not null, default: `now()`]
|
424
|
+
updated_at "timestamp with time zone" [not null, default: `now()`]
|
425
|
+
}
|
426
|
+
|
427
|
+
table oidc_grants {
|
428
|
+
id varchar(255) [pk, not null]
|
429
|
+
data jsonb [not null]
|
430
|
+
expires_at "timestamp with time zone" [not null]
|
431
|
+
consumed_at "timestamp with time zone"
|
432
|
+
user_id text [not null]
|
433
|
+
client_id varchar(255) [not null]
|
434
|
+
accessed_at "timestamp with time zone" [not null, default: `now()`]
|
435
|
+
created_at "timestamp with time zone" [not null, default: `now()`]
|
436
|
+
updated_at "timestamp with time zone" [not null, default: `now()`]
|
437
|
+
}
|
438
|
+
|
439
|
+
table oidc_interactions {
|
440
|
+
id varchar(255) [pk, not null]
|
441
|
+
data jsonb [not null]
|
442
|
+
expires_at "timestamp with time zone" [not null]
|
443
|
+
accessed_at "timestamp with time zone" [not null, default: `now()`]
|
444
|
+
created_at "timestamp with time zone" [not null, default: `now()`]
|
445
|
+
updated_at "timestamp with time zone" [not null, default: `now()`]
|
446
|
+
}
|
447
|
+
|
448
|
+
table oidc_refresh_tokens {
|
449
|
+
id varchar(255) [pk, not null]
|
450
|
+
data jsonb [not null]
|
451
|
+
expires_at "timestamp with time zone" [not null]
|
452
|
+
consumed_at "timestamp with time zone"
|
453
|
+
user_id text [not null]
|
454
|
+
client_id varchar(255) [not null]
|
455
|
+
grant_id varchar(255)
|
456
|
+
accessed_at "timestamp with time zone" [not null, default: `now()`]
|
457
|
+
created_at "timestamp with time zone" [not null, default: `now()`]
|
458
|
+
updated_at "timestamp with time zone" [not null, default: `now()`]
|
459
|
+
}
|
460
|
+
|
461
|
+
table oidc_sessions {
|
462
|
+
id varchar(255) [pk, not null]
|
463
|
+
data jsonb [not null]
|
464
|
+
expires_at "timestamp with time zone" [not null]
|
465
|
+
user_id text [not null]
|
466
|
+
accessed_at "timestamp with time zone" [not null, default: `now()`]
|
467
|
+
created_at "timestamp with time zone" [not null, default: `now()`]
|
468
|
+
updated_at "timestamp with time zone" [not null, default: `now()`]
|
469
|
+
}
|
470
|
+
|
352
471
|
table chunks {
|
353
472
|
id uuid [pk, not null, default: `gen_random_uuid()`]
|
354
473
|
text text
|
package/locales/ar/models.json
CHANGED
@@ -1109,6 +1109,18 @@
|
|
1109
1109
|
"grok-2-vision-1212": {
|
1110
1110
|
"description": "لقد تم تحسين هذا النموذج في الدقة، والامتثال للتعليمات، والقدرة على التعامل مع لغات متعددة."
|
1111
1111
|
},
|
1112
|
+
"grok-3-beta": {
|
1113
|
+
"description": "نموذج رائد، يتفوق في استخراج البيانات، البرمجة، وتلخيص النصوص في التطبيقات المؤسسية، ويملك معرفة عميقة في مجالات المالية، الطب، القانون، والعلوم."
|
1114
|
+
},
|
1115
|
+
"grok-3-fast-beta": {
|
1116
|
+
"description": "نموذج رائد، يتفوق في استخراج البيانات، البرمجة، وتلخيص النصوص في التطبيقات المؤسسية، ويملك معرفة عميقة في مجالات المالية، الطب، القانون، والعلوم."
|
1117
|
+
},
|
1118
|
+
"grok-3-mini-beta": {
|
1119
|
+
"description": "نموذج خفيف الوزن، يفكر قبل بدء المحادثة. يعمل بسرعة وذكاء، مناسب للمهام المنطقية التي لا تتطلب معرفة عميقة في المجالات، ويمكنه الحصول على مسارات التفكير الأصلية."
|
1120
|
+
},
|
1121
|
+
"grok-3-mini-fast-beta": {
|
1122
|
+
"description": "نموذج خفيف الوزن، يفكر قبل بدء المحادثة. يعمل بسرعة وذكاء، مناسب للمهام المنطقية التي لا تتطلب معرفة عميقة في المجالات، ويمكنه الحصول على مسارات التفكير الأصلية."
|
1123
|
+
},
|
1112
1124
|
"grok-beta": {
|
1113
1125
|
"description": "يمتلك أداءً يعادل Grok 2، ولكنه يتمتع بكفاءة وسرعة ووظائف أعلى."
|
1114
1126
|
},
|
@@ -0,0 +1,39 @@
|
|
1
|
+
{
|
2
|
+
"consent": {
|
3
|
+
"buttons": {
|
4
|
+
"accept": "موافقة",
|
5
|
+
"deny": "رفض"
|
6
|
+
},
|
7
|
+
"description": "تطبيق {clientId} يطلب الوصول إلى حسابك في LobeChat",
|
8
|
+
"error": {
|
9
|
+
"sessionInvalid": {
|
10
|
+
"message": "جلسة التفويض منتهية أو غير صالحة، يرجى إعادة بدء عملية التفويض.",
|
11
|
+
"title": "جلسة التفويض غير صالحة"
|
12
|
+
},
|
13
|
+
"title": "حدث خطأ",
|
14
|
+
"unsupportedInteraction": {
|
15
|
+
"message": "نوع التفاعل غير مدعوم: {promptName}",
|
16
|
+
"title": "نوع التفاعل غير مدعوم"
|
17
|
+
}
|
18
|
+
},
|
19
|
+
"permissionsTitle": "يطلب التطبيق الأذونات التالية:",
|
20
|
+
"scope": {
|
21
|
+
"email": "الوصول إلى عنوان بريدك الإلكتروني",
|
22
|
+
"offline_access": "الاستمرار في الوصول إلى بياناتك أثناء عدم الاتصال",
|
23
|
+
"openid": "استخدام حسابك في LobeChat للتحقق من الهوية",
|
24
|
+
"profile": "الوصول إلى معلومات ملفك الشخصي الأساسية (الاسم، الصورة، إلخ)",
|
25
|
+
"sync:read": "قراءة بيانات المزامنة الخاصة بك",
|
26
|
+
"sync:write": "كتابة وتحديث بيانات المزامنة الخاصة بك"
|
27
|
+
},
|
28
|
+
"title": "طلب التفويض"
|
29
|
+
},
|
30
|
+
"failed": {
|
31
|
+
"backToHome": "العودة إلى الصفحة الرئيسية",
|
32
|
+
"subTitle": "لقد رفضت منح التطبيق الوصول إلى حسابك في LobeChat",
|
33
|
+
"title": "تم رفض التفويض"
|
34
|
+
},
|
35
|
+
"success": {
|
36
|
+
"subTitle": "لقد منحت التطبيق الوصول إلى حسابك في LobeChat بنجاح، يمكنك إغلاق هذه الصفحة الآن",
|
37
|
+
"title": "تم التفويض بنجاح"
|
38
|
+
}
|
39
|
+
}
|
@@ -1109,6 +1109,18 @@
|
|
1109
1109
|
"grok-2-vision-1212": {
|
1110
1110
|
"description": "Този модел е подобрен по отношение на точност, спазване на инструкции и многоезични способности."
|
1111
1111
|
},
|
1112
|
+
"grok-3-beta": {
|
1113
|
+
"description": "Флагмански модел, специализиран в извличането на данни, програмирането и обобщаването на текстове за корпоративни приложения, с дълбоки познания в области като финанси, здравеопазване, право и наука."
|
1114
|
+
},
|
1115
|
+
"grok-3-fast-beta": {
|
1116
|
+
"description": "Флагмански модел, специализиран в извличането на данни, програмирането и обобщаването на текстове за корпоративни приложения, с дълбоки познания в области като финанси, здравеопазване, право и наука."
|
1117
|
+
},
|
1118
|
+
"grok-3-mini-beta": {
|
1119
|
+
"description": "Лек модел, който обмисля преди разговор. Работи бързо и интелигентно, подходящ за логически задачи, които не изискват дълбоки познания в областта, и може да улови оригиналните мисловни процеси."
|
1120
|
+
},
|
1121
|
+
"grok-3-mini-fast-beta": {
|
1122
|
+
"description": "Лек модел, който обмисля преди разговор. Работи бързо и интелигентно, подходящ за логически задачи, които не изискват дълбоки познания в областта, и може да улови оригиналните мисловни процеси."
|
1123
|
+
},
|
1112
1124
|
"grok-beta": {
|
1113
1125
|
"description": "С производителност, сравнима с Grok 2, но с по-висока ефективност, скорост и функции."
|
1114
1126
|
},
|
@@ -0,0 +1,39 @@
|
|
1
|
+
{
|
2
|
+
"consent": {
|
3
|
+
"buttons": {
|
4
|
+
"accept": "Разреши",
|
5
|
+
"deny": "Отказ"
|
6
|
+
},
|
7
|
+
"description": "Приложението {clientId} иска достъп до вашия LobeChat акаунт",
|
8
|
+
"error": {
|
9
|
+
"sessionInvalid": {
|
10
|
+
"message": "Сесията за разрешение е изтекла или невалидна, моля, стартирайте отново процеса на разрешение.",
|
11
|
+
"title": "Невалидна сесия за разрешение"
|
12
|
+
},
|
13
|
+
"title": "Възникна грешка",
|
14
|
+
"unsupportedInteraction": {
|
15
|
+
"message": "Неподдържан тип взаимодействие: {promptName}",
|
16
|
+
"title": "Неподдържан тип взаимодействие"
|
17
|
+
}
|
18
|
+
},
|
19
|
+
"permissionsTitle": "Приложението иска следните разрешения:",
|
20
|
+
"scope": {
|
21
|
+
"email": "Достъп до вашия имейл адрес",
|
22
|
+
"offline_access": "Достъп до вашите данни, докато сте офлайн",
|
23
|
+
"openid": "Аутентификация с вашия LobeChat акаунт",
|
24
|
+
"profile": "Достъп до основната ви информация (име, аватар и др.)",
|
25
|
+
"sync:read": "Четене на вашите синхронизирани данни",
|
26
|
+
"sync:write": "Записване и актуализиране на вашите синхронизирани данни"
|
27
|
+
},
|
28
|
+
"title": "Заявка за разрешение"
|
29
|
+
},
|
30
|
+
"failed": {
|
31
|
+
"backToHome": "Върнете се на началната страница",
|
32
|
+
"subTitle": "Вие отказахте разрешение на приложението да получи достъп до вашия LobeChat акаунт",
|
33
|
+
"title": "Разрешението е отказано"
|
34
|
+
},
|
35
|
+
"success": {
|
36
|
+
"subTitle": "Успешно разрешихте на приложението достъп до вашия LobeChat акаунт, можете да затворите тази страница",
|
37
|
+
"title": "Успешно разрешение"
|
38
|
+
}
|
39
|
+
}
|
@@ -1109,6 +1109,18 @@
|
|
1109
1109
|
"grok-2-vision-1212": {
|
1110
1110
|
"description": "Dieses Modell hat Verbesserungen in Bezug auf Genauigkeit, Befolgung von Anweisungen und Mehrsprachigkeit erfahren."
|
1111
1111
|
},
|
1112
|
+
"grok-3-beta": {
|
1113
|
+
"description": "Flaggschiff-Modell, das sich auf Datenextraktion, Programmierung und Textzusammenfassungen für Unternehmensanwendungen spezialisiert hat und über umfassendes Wissen in den Bereichen Finanzen, Gesundheitswesen, Recht und Wissenschaft verfügt."
|
1114
|
+
},
|
1115
|
+
"grok-3-fast-beta": {
|
1116
|
+
"description": "Flaggschiff-Modell, das sich auf Datenextraktion, Programmierung und Textzusammenfassungen für Unternehmensanwendungen spezialisiert hat und über umfassendes Wissen in den Bereichen Finanzen, Gesundheitswesen, Recht und Wissenschaft verfügt."
|
1117
|
+
},
|
1118
|
+
"grok-3-mini-beta": {
|
1119
|
+
"description": "Leichtgewichtiges Modell, das vor dem Gespräch nachdenkt. Es läuft schnell und intelligent und eignet sich für logische Aufgaben, die kein tiefes Fachwissen erfordern, und kann die ursprünglichen Denkprozesse erfassen."
|
1120
|
+
},
|
1121
|
+
"grok-3-mini-fast-beta": {
|
1122
|
+
"description": "Leichtgewichtiges Modell, das vor dem Gespräch nachdenkt. Es läuft schnell und intelligent und eignet sich für logische Aufgaben, die kein tiefes Fachwissen erfordern, und kann die ursprünglichen Denkprozesse erfassen."
|
1123
|
+
},
|
1112
1124
|
"grok-beta": {
|
1113
1125
|
"description": "Bietet eine Leistung, die mit Grok 2 vergleichbar ist, jedoch mit höherer Effizienz, Geschwindigkeit und Funktionalität."
|
1114
1126
|
},
|
@@ -0,0 +1,39 @@
|
|
1
|
+
{
|
2
|
+
"consent": {
|
3
|
+
"buttons": {
|
4
|
+
"accept": "Zustimmen",
|
5
|
+
"deny": "Ablehnen"
|
6
|
+
},
|
7
|
+
"description": "Die Anwendung {clientId} fordert Zugriff auf Ihr LobeChat-Konto an",
|
8
|
+
"error": {
|
9
|
+
"sessionInvalid": {
|
10
|
+
"message": "Die Autorisierungssitzung ist abgelaufen oder ungültig. Bitte starten Sie den Autorisierungsprozess erneut.",
|
11
|
+
"title": "Ungültige Autorisierungssitzung"
|
12
|
+
},
|
13
|
+
"title": "Ein Fehler ist aufgetreten",
|
14
|
+
"unsupportedInteraction": {
|
15
|
+
"message": "Nicht unterstützter Interaktionstyp: {promptName}",
|
16
|
+
"title": "Nicht unterstützter Interaktionstyp"
|
17
|
+
}
|
18
|
+
},
|
19
|
+
"permissionsTitle": "Die Anwendung fordert die folgenden Berechtigungen an:",
|
20
|
+
"scope": {
|
21
|
+
"email": "Zugriff auf Ihre E-Mail-Adresse",
|
22
|
+
"offline_access": "Zugriff auf Ihre Daten auch im Offline-Modus",
|
23
|
+
"openid": "Authentifizierung mit Ihrem LobeChat-Konto",
|
24
|
+
"profile": "Zugriff auf Ihre Profilinformationen (Name, Avatar usw.)",
|
25
|
+
"sync:read": "Lesen Ihrer Synchronisierungsdaten",
|
26
|
+
"sync:write": "Schreiben und Aktualisieren Ihrer Synchronisierungsdaten"
|
27
|
+
},
|
28
|
+
"title": "Autorisierungsanfrage"
|
29
|
+
},
|
30
|
+
"failed": {
|
31
|
+
"backToHome": "Zurück zur Startseite",
|
32
|
+
"subTitle": "Sie haben die Autorisierung für die Anwendung zum Zugriff auf Ihr LobeChat-Konto abgelehnt",
|
33
|
+
"title": "Autorisierung abgelehnt"
|
34
|
+
},
|
35
|
+
"success": {
|
36
|
+
"subTitle": "Sie haben der Anwendung erfolgreich Zugriff auf Ihr LobeChat-Konto gewährt. Sie können diese Seite jetzt schließen.",
|
37
|
+
"title": "Autorisierung erfolgreich"
|
38
|
+
}
|
39
|
+
}
|
@@ -1109,6 +1109,18 @@
|
|
1109
1109
|
"grok-2-vision-1212": {
|
1110
1110
|
"description": "This model has improved in accuracy, instruction adherence, and multilingual capabilities."
|
1111
1111
|
},
|
1112
|
+
"grok-3-beta": {
|
1113
|
+
"description": "A flagship model, proficient in data extraction, programming, and text summarization for enterprise applications, with deep knowledge in fields such as finance, healthcare, law, and science."
|
1114
|
+
},
|
1115
|
+
"grok-3-fast-beta": {
|
1116
|
+
"description": "A flagship model, proficient in data extraction, programming, and text summarization for enterprise applications, with deep knowledge in fields such as finance, healthcare, law, and science."
|
1117
|
+
},
|
1118
|
+
"grok-3-mini-beta": {
|
1119
|
+
"description": "A lightweight model that thinks before responding. It operates quickly and intelligently, suitable for logical tasks that do not require deep domain knowledge, while capturing the raw thought process."
|
1120
|
+
},
|
1121
|
+
"grok-3-mini-fast-beta": {
|
1122
|
+
"description": "A lightweight model that thinks before responding. It operates quickly and intelligently, suitable for logical tasks that do not require deep domain knowledge, while capturing the raw thought process."
|
1123
|
+
},
|
1112
1124
|
"grok-beta": {
|
1113
1125
|
"description": "Offers performance comparable to Grok 2 but with higher efficiency, speed, and functionality."
|
1114
1126
|
},
|
@@ -0,0 +1,39 @@
|
|
1
|
+
{
|
2
|
+
"consent": {
|
3
|
+
"buttons": {
|
4
|
+
"accept": "Authorize",
|
5
|
+
"deny": "Deny"
|
6
|
+
},
|
7
|
+
"description": "The application {clientId} is requesting access to your LobeChat account",
|
8
|
+
"error": {
|
9
|
+
"sessionInvalid": {
|
10
|
+
"message": "The authorization session has expired or is invalid. Please restart the authorization process.",
|
11
|
+
"title": "Invalid Authorization Session"
|
12
|
+
},
|
13
|
+
"title": "An Error Occurred",
|
14
|
+
"unsupportedInteraction": {
|
15
|
+
"message": "Unsupported interaction type: {promptName}",
|
16
|
+
"title": "Unsupported Interaction Type"
|
17
|
+
}
|
18
|
+
},
|
19
|
+
"permissionsTitle": "The application requests the following permissions:",
|
20
|
+
"scope": {
|
21
|
+
"email": "Access your email address",
|
22
|
+
"offline_access": "Continue to access your data while you are offline",
|
23
|
+
"openid": "Authenticate using your LobeChat account",
|
24
|
+
"profile": "Access your basic profile information (name, avatar, etc.)",
|
25
|
+
"sync:read": "Read your sync data",
|
26
|
+
"sync:write": "Write and update your sync data"
|
27
|
+
},
|
28
|
+
"title": "Authorization Request"
|
29
|
+
},
|
30
|
+
"failed": {
|
31
|
+
"backToHome": "Back to Home",
|
32
|
+
"subTitle": "You have denied the application access to your LobeChat account",
|
33
|
+
"title": "Authorization Denied"
|
34
|
+
},
|
35
|
+
"success": {
|
36
|
+
"subTitle": "You have successfully authorized the application to access your LobeChat account. You can close this page now.",
|
37
|
+
"title": "Authorization Successful"
|
38
|
+
}
|
39
|
+
}
|
@@ -1109,6 +1109,18 @@
|
|
1109
1109
|
"grok-2-vision-1212": {
|
1110
1110
|
"description": "Este modelo ha mejorado en precisión, cumplimiento de instrucciones y capacidades multilingües."
|
1111
1111
|
},
|
1112
|
+
"grok-3-beta": {
|
1113
|
+
"description": "Modelo insignia, experto en extracción de datos, programación y resúmenes de texto para aplicaciones empresariales, con un profundo conocimiento en campos como finanzas, salud, derecho y ciencia."
|
1114
|
+
},
|
1115
|
+
"grok-3-fast-beta": {
|
1116
|
+
"description": "Modelo insignia, experto en extracción de datos, programación y resúmenes de texto para aplicaciones empresariales, con un profundo conocimiento en campos como finanzas, salud, derecho y ciencia."
|
1117
|
+
},
|
1118
|
+
"grok-3-mini-beta": {
|
1119
|
+
"description": "Modelo ligero, que reflexiona antes de la conversación. Rápido e inteligente, adecuado para tareas lógicas que no requieren un conocimiento profundo del dominio, y capaz de capturar la trayectoria de pensamiento original."
|
1120
|
+
},
|
1121
|
+
"grok-3-mini-fast-beta": {
|
1122
|
+
"description": "Modelo ligero, que reflexiona antes de la conversación. Rápido e inteligente, adecuado para tareas lógicas que no requieren un conocimiento profundo del dominio, y capaz de capturar la trayectoria de pensamiento original."
|
1123
|
+
},
|
1112
1124
|
"grok-beta": {
|
1113
1125
|
"description": "Ofrece un rendimiento comparable al de Grok 2, pero con mayor eficiencia, velocidad y funcionalidad."
|
1114
1126
|
},
|
@@ -0,0 +1,39 @@
|
|
1
|
+
{
|
2
|
+
"consent": {
|
3
|
+
"buttons": {
|
4
|
+
"accept": "Autorizar",
|
5
|
+
"deny": "Denegar"
|
6
|
+
},
|
7
|
+
"description": "La aplicación {clientId} solicita acceso a su cuenta de LobeChat",
|
8
|
+
"error": {
|
9
|
+
"sessionInvalid": {
|
10
|
+
"message": "La sesión de autorización ha expirado o es inválida, por favor inicie nuevamente el proceso de autorización.",
|
11
|
+
"title": "Sesión de autorización inválida"
|
12
|
+
},
|
13
|
+
"title": "Ocurrió un error",
|
14
|
+
"unsupportedInteraction": {
|
15
|
+
"message": "Tipo de interacción no soportado: {promptName}",
|
16
|
+
"title": "Tipo de interacción no soportado"
|
17
|
+
}
|
18
|
+
},
|
19
|
+
"permissionsTitle": "La aplicación solicita los siguientes permisos:",
|
20
|
+
"scope": {
|
21
|
+
"email": "Acceder a su dirección de correo electrónico",
|
22
|
+
"offline_access": "Continuar accediendo a sus datos mientras está desconectado",
|
23
|
+
"openid": "Autenticarse con su cuenta de LobeChat",
|
24
|
+
"profile": "Acceder a su información básica de perfil (nombre, foto, etc.)",
|
25
|
+
"sync:read": "Leer sus datos de sincronización",
|
26
|
+
"sync:write": "Escribir y actualizar sus datos de sincronización"
|
27
|
+
},
|
28
|
+
"title": "Solicitud de autorización"
|
29
|
+
},
|
30
|
+
"failed": {
|
31
|
+
"backToHome": "Volver a la página de inicio",
|
32
|
+
"subTitle": "Ha denegado el acceso de la aplicación a su cuenta de LobeChat",
|
33
|
+
"title": "Autorización denegada"
|
34
|
+
},
|
35
|
+
"success": {
|
36
|
+
"subTitle": "Ha autorizado con éxito a la aplicación para acceder a su cuenta de LobeChat, puede cerrar esta página",
|
37
|
+
"title": "Autorización exitosa"
|
38
|
+
}
|
39
|
+
}
|
@@ -1109,6 +1109,18 @@
|
|
1109
1109
|
"grok-2-vision-1212": {
|
1110
1110
|
"description": "این مدل در دقت، پیروی از دستورات و توانایی چند زبانه بهبود یافته است."
|
1111
1111
|
},
|
1112
|
+
"grok-3-beta": {
|
1113
|
+
"description": "مدل پرچمدار، متخصص در استخراج داده، برنامهنویسی و خلاصهسازی متن برای کاربردهای سازمانی، با دانش عمیق در زمینههای مالی، پزشکی، حقوقی و علمی."
|
1114
|
+
},
|
1115
|
+
"grok-3-fast-beta": {
|
1116
|
+
"description": "مدل پرچمدار، متخصص در استخراج داده، برنامهنویسی و خلاصهسازی متن برای کاربردهای سازمانی، با دانش عمیق در زمینههای مالی، پزشکی، حقوقی و علمی."
|
1117
|
+
},
|
1118
|
+
"grok-3-mini-beta": {
|
1119
|
+
"description": "مدل سبکوزن، قبل از گفتگو فکر میکند. سریع و هوشمند است و برای وظایف منطقی که به دانش عمیق حوزه نیاز ندارند مناسب است و میتواند مسیر تفکر اولیه را به دست آورد."
|
1120
|
+
},
|
1121
|
+
"grok-3-mini-fast-beta": {
|
1122
|
+
"description": "مدل سبکوزن، قبل از گفتگو فکر میکند. سریع و هوشمند است و برای وظایف منطقی که به دانش عمیق حوزه نیاز ندارند مناسب است و میتواند مسیر تفکر اولیه را به دست آورد."
|
1123
|
+
},
|
1112
1124
|
"grok-beta": {
|
1113
1125
|
"description": "عملکردی معادل Grok 2 دارد، اما با کارایی، سرعت و قابلیتهای بالاتر."
|
1114
1126
|
},
|
@@ -0,0 +1,39 @@
|
|
1
|
+
{
|
2
|
+
"consent": {
|
3
|
+
"buttons": {
|
4
|
+
"accept": "اجازه",
|
5
|
+
"deny": "رد"
|
6
|
+
},
|
7
|
+
"description": "برنامه {clientId} درخواست دسترسی به حساب LobeChat شما را دارد",
|
8
|
+
"error": {
|
9
|
+
"sessionInvalid": {
|
10
|
+
"message": "جلسه مجوز منقضی یا نامعتبر است، لطفاً فرآیند مجوز را دوباره آغاز کنید.",
|
11
|
+
"title": "جلسه مجوز نامعتبر"
|
12
|
+
},
|
13
|
+
"title": "خطا رخ داده است",
|
14
|
+
"unsupportedInteraction": {
|
15
|
+
"message": "نوع تعامل پشتیبانی نمیشود: {promptName}",
|
16
|
+
"title": "نوع تعامل پشتیبانی نمیشود"
|
17
|
+
}
|
18
|
+
},
|
19
|
+
"permissionsTitle": "برنامه درخواست دسترسی به مجوزهای زیر را دارد:",
|
20
|
+
"scope": {
|
21
|
+
"email": "دسترسی به آدرس ایمیل شما",
|
22
|
+
"offline_access": "دسترسی به دادههای شما در حالت آفلاین",
|
23
|
+
"openid": "احراز هویت با حساب LobeChat شما",
|
24
|
+
"profile": "دسترسی به اطلاعات پروفایل شما (نام، تصویر پروفایل و غیره)",
|
25
|
+
"sync:read": "خواندن دادههای همگامسازی شما",
|
26
|
+
"sync:write": "نوشتن و بهروزرسانی دادههای همگامسازی شما"
|
27
|
+
},
|
28
|
+
"title": "درخواست مجوز"
|
29
|
+
},
|
30
|
+
"failed": {
|
31
|
+
"backToHome": "بازگشت به صفحه اصلی",
|
32
|
+
"subTitle": "شما دسترسی برنامه به حساب LobeChat خود را رد کردهاید",
|
33
|
+
"title": "دسترسی رد شد"
|
34
|
+
},
|
35
|
+
"success": {
|
36
|
+
"subTitle": "شما با موفقیت به برنامه دسترسی به حساب LobeChat خود را دادهاید، میتوانید این صفحه را ببندید",
|
37
|
+
"title": "دسترسی موفقیتآمیز"
|
38
|
+
}
|
39
|
+
}
|
@@ -1109,6 +1109,18 @@
|
|
1109
1109
|
"grok-2-vision-1212": {
|
1110
1110
|
"description": "Ce modèle a été amélioré en termes de précision, de respect des instructions et de capacités multilingues."
|
1111
1111
|
},
|
1112
|
+
"grok-3-beta": {
|
1113
|
+
"description": "Modèle phare, spécialisé dans l'extraction de données, la programmation et le résumé de texte pour des applications d'entreprise, avec une connaissance approfondie des domaines financier, médical, juridique et scientifique."
|
1114
|
+
},
|
1115
|
+
"grok-3-fast-beta": {
|
1116
|
+
"description": "Modèle phare, spécialisé dans l'extraction de données, la programmation et le résumé de texte pour des applications d'entreprise, avec une connaissance approfondie des domaines financier, médical, juridique et scientifique."
|
1117
|
+
},
|
1118
|
+
"grok-3-mini-beta": {
|
1119
|
+
"description": "Modèle léger, qui réfléchit avant de répondre. Rapide et intelligent, il est adapté aux tâches logiques ne nécessitant pas de connaissances approfondies dans un domaine, tout en permettant de capturer les pensées brutes."
|
1120
|
+
},
|
1121
|
+
"grok-3-mini-fast-beta": {
|
1122
|
+
"description": "Modèle léger, qui réfléchit avant de répondre. Rapide et intelligent, il est adapté aux tâches logiques ne nécessitant pas de connaissances approfondies dans un domaine, tout en permettant de capturer les pensées brutes."
|
1123
|
+
},
|
1112
1124
|
"grok-beta": {
|
1113
1125
|
"description": "Offre des performances comparables à Grok 2, mais avec une efficacité, une vitesse et des fonctionnalités supérieures."
|
1114
1126
|
},
|
@@ -0,0 +1,39 @@
|
|
1
|
+
{
|
2
|
+
"consent": {
|
3
|
+
"buttons": {
|
4
|
+
"accept": "Autoriser",
|
5
|
+
"deny": "Refuser"
|
6
|
+
},
|
7
|
+
"description": "L'application {clientId} demande l'accès à votre compte LobeChat",
|
8
|
+
"error": {
|
9
|
+
"sessionInvalid": {
|
10
|
+
"message": "La session d'autorisation a expiré ou est invalide, veuillez relancer le processus d'autorisation.",
|
11
|
+
"title": "Session d'autorisation invalide"
|
12
|
+
},
|
13
|
+
"title": "Une erreur s'est produite",
|
14
|
+
"unsupportedInteraction": {
|
15
|
+
"message": "Type d'interaction non pris en charge : {promptName}",
|
16
|
+
"title": "Type d'interaction non pris en charge"
|
17
|
+
}
|
18
|
+
},
|
19
|
+
"permissionsTitle": "L'application demande les permissions suivantes :",
|
20
|
+
"scope": {
|
21
|
+
"email": "Accéder à votre adresse e-mail",
|
22
|
+
"offline_access": "Continuer à accéder à vos données lorsque vous êtes hors ligne",
|
23
|
+
"openid": "S'authentifier avec votre compte LobeChat",
|
24
|
+
"profile": "Accéder à vos informations de profil (nom, photo, etc.)",
|
25
|
+
"sync:read": "Lire vos données de synchronisation",
|
26
|
+
"sync:write": "Écrire et mettre à jour vos données de synchronisation"
|
27
|
+
},
|
28
|
+
"title": "Demande d'autorisation"
|
29
|
+
},
|
30
|
+
"failed": {
|
31
|
+
"backToHome": "Retour à l'accueil",
|
32
|
+
"subTitle": "Vous avez refusé d'autoriser l'application à accéder à votre compte LobeChat",
|
33
|
+
"title": "Autorisation refusée"
|
34
|
+
},
|
35
|
+
"success": {
|
36
|
+
"subTitle": "Vous avez réussi à autoriser l'application à accéder à votre compte LobeChat, vous pouvez fermer cette page",
|
37
|
+
"title": "Autorisation réussie"
|
38
|
+
}
|
39
|
+
}
|
@@ -1109,6 +1109,18 @@
|
|
1109
1109
|
"grok-2-vision-1212": {
|
1110
1110
|
"description": "Questo modello ha migliorato l'accuratezza, il rispetto delle istruzioni e le capacità multilingue."
|
1111
1111
|
},
|
1112
|
+
"grok-3-beta": {
|
1113
|
+
"description": "Modello di punta, specializzato in estrazione di dati, programmazione e sintesi di testi per applicazioni aziendali, con una profonda conoscenza nei settori finanziario, medico, legale e scientifico."
|
1114
|
+
},
|
1115
|
+
"grok-3-fast-beta": {
|
1116
|
+
"description": "Modello di punta, specializzato in estrazione di dati, programmazione e sintesi di testi per applicazioni aziendali, con una profonda conoscenza nei settori finanziario, medico, legale e scientifico."
|
1117
|
+
},
|
1118
|
+
"grok-3-mini-beta": {
|
1119
|
+
"description": "Modello leggero, riflette prima di rispondere. Esegue rapidamente e in modo intelligente, adatto a compiti logici che non richiedono conoscenze approfondite del settore e in grado di acquisire il tracciato di pensiero originale."
|
1120
|
+
},
|
1121
|
+
"grok-3-mini-fast-beta": {
|
1122
|
+
"description": "Modello leggero, riflette prima di rispondere. Esegue rapidamente e in modo intelligente, adatto a compiti logici che non richiedono conoscenze approfondite del settore e in grado di acquisire il tracciato di pensiero originale."
|
1123
|
+
},
|
1112
1124
|
"grok-beta": {
|
1113
1125
|
"description": "Offre prestazioni comparabili a Grok 2, ma con maggiore efficienza, velocità e funzionalità."
|
1114
1126
|
},
|