@lobehub/lobehub 2.0.0-next.122 → 2.0.0-next.124
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 +51 -0
- package/README.md +8 -8
- package/README.zh-CN.md +8 -8
- package/changelog/v1.json +18 -0
- package/docs/development/database-schema.dbml +1 -0
- package/locales/ar/chat.json +6 -0
- package/locales/bg-BG/chat.json +6 -0
- package/locales/de-DE/chat.json +6 -0
- package/locales/en-US/chat.json +6 -0
- package/locales/es-ES/chat.json +6 -0
- package/locales/fa-IR/chat.json +6 -0
- package/locales/fr-FR/chat.json +6 -0
- package/locales/it-IT/chat.json +6 -0
- package/locales/ja-JP/chat.json +6 -0
- package/locales/ko-KR/chat.json +6 -0
- package/locales/nl-NL/chat.json +6 -0
- package/locales/pl-PL/chat.json +6 -0
- package/locales/pt-BR/chat.json +6 -0
- package/locales/ru-RU/chat.json +6 -0
- package/locales/tr-TR/chat.json +6 -0
- package/locales/vi-VN/chat.json +6 -0
- package/locales/zh-CN/chat.json +6 -0
- package/locales/zh-TW/chat.json +6 -0
- package/package.json +1 -1
- package/packages/database/migrations/0048_add_editor_data.sql +1 -0
- package/packages/database/migrations/meta/0048_snapshot.json +8533 -0
- package/packages/database/migrations/meta/_journal.json +8 -1
- package/packages/database/src/core/migrations.json +6 -0
- package/packages/database/src/schemas/agent.ts +1 -0
- package/src/app/[variants]/(main)/chat/components/topic/features/Topic/TopicListContent/TopicItem/TopicContent.tsx +15 -8
- package/src/app/[variants]/(main)/chat/components/topic/features/Topic/TopicListContent/TopicItem/index.tsx +27 -30
- package/src/features/AgentSetting/AgentPlugin/index.tsx +6 -2
- package/src/layout/GlobalProvider/StoreInitialization.tsx +3 -3
- package/src/store/aiInfra/slices/aiProvider/action.ts +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,57 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 2.0.0-next.124](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.123...v2.0.0-next.124)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2025-11-27**</sup>
|
|
8
|
+
|
|
9
|
+
#### 🐛 Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **misc**: Fixed the agent settings plugins pages error problem, improve topic item interaction and editing behavior.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### What's fixed
|
|
19
|
+
|
|
20
|
+
- **misc**: Fixed the agent settings plugins pages error problem, closes [#10437](https://github.com/lobehub/lobe-chat/issues/10437) ([c58f37a](https://github.com/lobehub/lobe-chat/commit/c58f37a))
|
|
21
|
+
- **misc**: Improve topic item interaction and editing behavior, closes [#10409](https://github.com/lobehub/lobe-chat/issues/10409) ([85b45cb](https://github.com/lobehub/lobe-chat/commit/85b45cb))
|
|
22
|
+
|
|
23
|
+
</details>
|
|
24
|
+
|
|
25
|
+
<div align="right">
|
|
26
|
+
|
|
27
|
+
[](#readme-top)
|
|
28
|
+
|
|
29
|
+
</div>
|
|
30
|
+
|
|
31
|
+
## [Version 2.0.0-next.123](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.122...v2.0.0-next.123)
|
|
32
|
+
|
|
33
|
+
<sup>Released on **2025-11-27**</sup>
|
|
34
|
+
|
|
35
|
+
#### 💄 Styles
|
|
36
|
+
|
|
37
|
+
- **misc**: Update i18n.
|
|
38
|
+
|
|
39
|
+
<br/>
|
|
40
|
+
|
|
41
|
+
<details>
|
|
42
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
43
|
+
|
|
44
|
+
#### Styles
|
|
45
|
+
|
|
46
|
+
- **misc**: Update i18n, closes [#10445](https://github.com/lobehub/lobe-chat/issues/10445) ([4942bc9](https://github.com/lobehub/lobe-chat/commit/4942bc9))
|
|
47
|
+
|
|
48
|
+
</details>
|
|
49
|
+
|
|
50
|
+
<div align="right">
|
|
51
|
+
|
|
52
|
+
[](#readme-top)
|
|
53
|
+
|
|
54
|
+
</div>
|
|
55
|
+
|
|
5
56
|
## [Version 2.0.0-next.122](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.121...v2.0.0-next.122)
|
|
6
57
|
|
|
7
58
|
<sup>Released on **2025-11-26**</sup>
|
package/README.md
CHANGED
|
@@ -345,14 +345,14 @@ In addition, these plugins are not limited to news aggregation, but can also ext
|
|
|
345
345
|
|
|
346
346
|
<!-- PLUGIN LIST -->
|
|
347
347
|
|
|
348
|
-
| Recent Submits
|
|
349
|
-
|
|
|
350
|
-
| [SEO](https://lobechat.com/discover/plugin/SEO)<br/><sup>By **orrenprunckun** on **2025-11-14**</sup>
|
|
351
|
-
| [Shopping tools](https://lobechat.com/discover/plugin/ShoppingTools)<br/><sup>By **shoppingtools** on **2025-10-27**</sup>
|
|
352
|
-
| [
|
|
353
|
-
| [
|
|
354
|
-
|
|
355
|
-
> 📊 Total plugins: [<kbd>**
|
|
348
|
+
| Recent Submits | Description |
|
|
349
|
+
| ---------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
|
|
350
|
+
| [SEO](https://lobechat.com/discover/plugin/SEO)<br/><sup>By **orrenprunckun** on **2025-11-14**</sup> | Enter any URL and keyword and get an On-Page SEO analysis & insights!<br/>`seo` |
|
|
351
|
+
| [Shopping tools](https://lobechat.com/discover/plugin/ShoppingTools)<br/><sup>By **shoppingtools** on **2025-10-27**</sup> | Search for products on eBay & AliExpress, find eBay events & coupons. Get prompt examples.<br/>`shopping` `e-bay` `ali-express` `coupons` |
|
|
352
|
+
| [Web](https://lobechat.com/discover/plugin/web)<br/><sup>By **Proghit** on **2025-01-24**</sup> | Smart web search that reads and analyzes pages to deliver comprehensive answers from Google results.<br/>`web` `search` |
|
|
353
|
+
| [Bing_websearch](https://lobechat.com/discover/plugin/Bingsearch-identifier)<br/><sup>By **FineHow** on **2024-12-22**</sup> | Search for information from the internet base BingApi<br/>`bingsearch` |
|
|
354
|
+
|
|
355
|
+
> 📊 Total plugins: [<kbd>**41**</kbd>](https://lobechat.com/discover/plugins)
|
|
356
356
|
|
|
357
357
|
<!-- PLUGIN LIST -->
|
|
358
358
|
|
package/README.zh-CN.md
CHANGED
|
@@ -338,14 +338,14 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
|
|
|
338
338
|
|
|
339
339
|
<!-- PLUGIN LIST -->
|
|
340
340
|
|
|
341
|
-
| 最近新增
|
|
342
|
-
|
|
|
343
|
-
| [SEO](https://lobechat.com/discover/plugin/SEO)<br/><sup>By **orrenprunckun** on **2025-11-14**</sup>
|
|
344
|
-
| [购物工具](https://lobechat.com/discover/plugin/ShoppingTools)<br/><sup>By **shoppingtools** on **2025-10-27**</sup>
|
|
345
|
-
| [
|
|
346
|
-
| [
|
|
347
|
-
|
|
348
|
-
> 📊 Total plugins: [<kbd>**
|
|
341
|
+
| 最近新增 | 描述 |
|
|
342
|
+
| -------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------ |
|
|
343
|
+
| [SEO](https://lobechat.com/discover/plugin/SEO)<br/><sup>By **orrenprunckun** on **2025-11-14**</sup> | 输入任何 URL 和关键词,获取页面 SEO 分析和见解!<br/>`seo` |
|
|
344
|
+
| [购物工具](https://lobechat.com/discover/plugin/ShoppingTools)<br/><sup>By **shoppingtools** on **2025-10-27**</sup> | 在 eBay 和 AliExpress 上搜索产品,查找 eBay 活动和优惠券。获取快速示例。<br/>`购物` `e-bay` `ali-express` `优惠券` |
|
|
345
|
+
| [网页](https://lobechat.com/discover/plugin/web)<br/><sup>By **Proghit** on **2025-01-24**</sup> | 智能网页搜索,读取和分析页面,以提供来自 Google 结果的全面答案。<br/>`网页` `搜索` |
|
|
346
|
+
| [必应网页搜索](https://lobechat.com/discover/plugin/Bingsearch-identifier)<br/><sup>By **FineHow** on **2024-12-22**</sup> | 通过 BingApi 搜索互联网上的信息<br/>`bingsearch` |
|
|
347
|
+
|
|
348
|
+
> 📊 Total plugins: [<kbd>**41**</kbd>](https://lobechat.com/discover/plugins)
|
|
349
349
|
|
|
350
350
|
<!-- PLUGIN LIST -->
|
|
351
351
|
|
package/changelog/v1.json
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"children": {
|
|
4
|
+
"fixes": [
|
|
5
|
+
"Fixed the agent settings plugins pages error problem, improve topic item interaction and editing behavior."
|
|
6
|
+
]
|
|
7
|
+
},
|
|
8
|
+
"date": "2025-11-27",
|
|
9
|
+
"version": "2.0.0-next.124"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"children": {
|
|
13
|
+
"improvements": [
|
|
14
|
+
"Update i18n."
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"date": "2025-11-27",
|
|
18
|
+
"version": "2.0.0-next.123"
|
|
19
|
+
},
|
|
2
20
|
{
|
|
3
21
|
"children": {
|
|
4
22
|
"fixes": [
|
package/locales/ar/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "استنادًا إلى آلية تفكير كلود (Claude Thinking) المحدودة (<1>اعرف المزيد</1>)، عند التفعيل، سيتم تعطيل حد عدد الرسائل التاريخية تلقائيًا",
|
|
54
54
|
"title": "تفعيل التفكير العميق"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "نسبة العرض إلى الارتفاع للصورة"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "دقة الصورة"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "استهلاك توكن التفكير"
|
|
58
64
|
},
|
package/locales/bg-BG/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "Ограничения на механизма Claude Thinking (<1>Научете повече</1>), при активиране автоматично ще се деактивира ограничението на броя на историческите съобщения",
|
|
54
54
|
"title": "Активиране на дълбочинно мислене"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "Съотношение на ширина и височина на изображението"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "Разделителна способност на изображението"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "Токени за разходи при мислене"
|
|
58
64
|
},
|
package/locales/de-DE/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "Basierend auf den Einschränkungen des Claude Thinking-Mechanismus (<1>Mehr erfahren</1>), wird bei Aktivierung die Begrenzung der Anzahl historischer Nachrichten automatisch deaktiviert.",
|
|
54
54
|
"title": "Tiefes Denken aktivieren"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "Seitenverhältnis des Bildes"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "Bildauflösung"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "Token für Denkaufwand"
|
|
58
64
|
},
|
package/locales/en-US/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "Based on the Claude Thinking mechanism limit (<1>Learn more</1>), enabling this will automatically disable the limit on the number of historical messages.",
|
|
54
54
|
"title": "Enable Deep Thinking"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "Image Aspect Ratio"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "Image Resolution"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "Thinking Consumption Token"
|
|
58
64
|
},
|
package/locales/es-ES/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "Basado en las restricciones del mecanismo Claude Thinking (<1>Más información</1>), al activarlo se desactivará automáticamente el límite de mensajes históricos",
|
|
54
54
|
"title": "Activar el pensamiento profundo"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "Relación de aspecto de la imagen"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "Resolución de la imagen"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "Token de consumo de pensamiento"
|
|
58
64
|
},
|
package/locales/fa-IR/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "محدودیتهای مبتنی بر مکانیزم تفکر کلاود (<1>بیشتر بدانید</1>) . با فعالسازی این گزینه، محدودیت تعداد پیامهای تاریخی بهطور خودکار غیرفعال خواهد شد",
|
|
54
54
|
"title": "فعالسازی تفکر عمیق"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "نسبت عرض به ارتفاع تصویر"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "وضوح تصویر"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "توکن مصرف تفکر"
|
|
58
64
|
},
|
package/locales/fr-FR/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "Basé sur les restrictions du mécanisme Claude Thinking (<1>En savoir plus</1>), une fois activé, la limite du nombre de messages historiques sera automatiquement désactivée.",
|
|
54
54
|
"title": "Activer la réflexion approfondie"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "Rapport largeur/hauteur de l'image"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "Résolution de l'image"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "Token de consommation de réflexion"
|
|
58
64
|
},
|
package/locales/it-IT/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "Limitazioni basate sul meccanismo di pensiero di Claude (<1>Scopri di più</1>), attivando questa opzione verrà disabilitato automaticamente il limite sul numero di messaggi storici.",
|
|
54
54
|
"title": "Attiva il pensiero profondo"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "Proporzioni dell'immagine"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "Risoluzione dell'immagine"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "Token di consumo del pensiero"
|
|
58
64
|
},
|
package/locales/ja-JP/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "Claude Thinkingメカニズムに基づく制限(<1>詳細はこちら</1>)により、有効にすると過去のメッセージ数制限が自動的に無効になります。",
|
|
54
54
|
"title": "深い思考を有効にする"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "画像のアスペクト比"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "画像の解像度"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "思考消費トークン"
|
|
58
64
|
},
|
package/locales/ko-KR/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "Claude Thinking 메커니즘에 기반한 제한 (<1>자세히 알아보기</1>), 활성화하면 자동으로 이전 메시지 수 제한이 비활성화됩니다.",
|
|
54
54
|
"title": "심층 사고 활성화"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "이미지 가로세로 비율"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "이미지 해상도"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "사고 소모 토큰"
|
|
58
64
|
},
|
package/locales/nl-NL/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "Beperkingen op basis van het Claude Thinking-mechanisme (<1>Lees meer</1>), wanneer ingeschakeld, wordt automatisch de limiet voor het aantal historische berichten uitgeschakeld.",
|
|
54
54
|
"title": "Diepe denkwijze inschakelen"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "Beeldverhouding"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "Beeldresolutie"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "Denken verbruik Token"
|
|
58
64
|
},
|
package/locales/pl-PL/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "Ograniczenia oparte na mechanizmie Claude Thinking (<1>Dowiedz się więcej</1>), po włączeniu automatycznie wyłączone zostanie ograniczenie liczby wiadomości historycznych",
|
|
54
54
|
"title": "Włącz głębokie myślenie"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "Proporcje obrazu"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "Rozdzielczość obrazu"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "Token zużycia myślenia"
|
|
58
64
|
},
|
package/locales/pt-BR/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "Baseado nas restrições do mecanismo Claude Thinking (<1>Saiba mais</1>), ao ativar, o limite de mensagens históricas será desativado automaticamente.",
|
|
54
54
|
"title": "Ativar Pensamento Profundo"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "Proporção da Imagem"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "Resolução da Imagem"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "Token de Consumo de Pensamento"
|
|
58
64
|
},
|
package/locales/ru-RU/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "Ограничение на основе механизма Claude Thinking (<1>Узнать больше</1>), при включении автоматически отключается ограничение на количество исторических сообщений",
|
|
54
54
|
"title": "Включить глубокое мышление"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "Соотношение сторон изображения"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "Разрешение изображения"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "Токены на размышления"
|
|
58
64
|
},
|
package/locales/tr-TR/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "Claude Thinking mekanizmasına dayalı kısıtlamalar (<1>Daha fazla bilgi edinin</1>), açıldığında otomatik olarak geçmiş mesaj sayısı sınırı devre dışı bırakılacaktır.",
|
|
54
54
|
"title": "Derin Düşünmeyi Aç"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "Görüntü En-Boy Oranı"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "Görüntü Çözünürlüğü"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "Düşünme Tüketim Tokeni"
|
|
58
64
|
},
|
package/locales/vi-VN/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "Giới hạn dựa trên cơ chế Claude Thinking (<1>Tìm hiểu thêm</1>), khi bật sẽ tự động vô hiệu hóa giới hạn số lượng tin nhắn lịch sử",
|
|
54
54
|
"title": "Bật tư duy sâu sắc"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "Tỷ lệ khung hình ảnh"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "Độ phân giải hình ảnh"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "Token tiêu tốn cho tư duy"
|
|
58
64
|
},
|
package/locales/zh-CN/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "基于 Claude Thinking 机制限制(<1>了解更多</1>),开启后将自动禁用历史消息数限制",
|
|
54
54
|
"title": "开启深度思考"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "图片宽高比"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "图片分辨率"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "思考消耗 Token"
|
|
58
64
|
},
|
package/locales/zh-TW/chat.json
CHANGED
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"desc": "基於 Claude Thinking 機制限制(<1>了解更多</1>),開啟後將自動禁用歷史消息數限制",
|
|
54
54
|
"title": "開啟深度思考"
|
|
55
55
|
},
|
|
56
|
+
"imageAspectRatio": {
|
|
57
|
+
"title": "圖片寬高比"
|
|
58
|
+
},
|
|
59
|
+
"imageResolution": {
|
|
60
|
+
"title": "圖片解析度"
|
|
61
|
+
},
|
|
56
62
|
"reasoningBudgetToken": {
|
|
57
63
|
"title": "思考消耗 Token"
|
|
58
64
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/lobehub",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.124",
|
|
4
4
|
"description": "LobeHub - an open-source,comprehensive AI Agent framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"framework",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ALTER TABLE "agents" ADD COLUMN IF NOT EXISTS "editor_data" jsonb;
|