@lobehub/chat 1.133.1 → 1.133.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/.cursor/rules/project-introduce.mdc +19 -25
  2. package/.cursor/rules/project-structure.mdc +102 -221
  3. package/.cursor/rules/{rules-attach.mdc → rules-index.mdc} +2 -11
  4. package/.cursor/rules/typescript.mdc +3 -53
  5. package/.vscode/settings.json +2 -1
  6. package/AGENTS.md +33 -54
  7. package/CHANGELOG.md +25 -0
  8. package/CLAUDE.md +1 -26
  9. package/changelog/v1.json +9 -0
  10. package/locales/ar/chat.json +5 -0
  11. package/locales/ar/models.json +3 -3
  12. package/locales/bg-BG/chat.json +5 -0
  13. package/locales/de-DE/chat.json +5 -0
  14. package/locales/en-US/chat.json +5 -0
  15. package/locales/es-ES/chat.json +5 -0
  16. package/locales/es-ES/tool.json +2 -2
  17. package/locales/fa-IR/chat.json +5 -0
  18. package/locales/fa-IR/models.json +3 -3
  19. package/locales/fr-FR/chat.json +5 -0
  20. package/locales/fr-FR/models.json +3 -3
  21. package/locales/it-IT/chat.json +5 -0
  22. package/locales/ja-JP/chat.json +5 -0
  23. package/locales/ko-KR/chat.json +5 -0
  24. package/locales/nl-NL/chat.json +5 -0
  25. package/locales/pl-PL/chat.json +5 -0
  26. package/locales/pt-BR/chat.json +5 -0
  27. package/locales/ru-RU/chat.json +5 -0
  28. package/locales/ru-RU/tool.json +2 -2
  29. package/locales/tr-TR/chat.json +5 -0
  30. package/locales/tr-TR/models.json +3 -3
  31. package/locales/vi-VN/chat.json +5 -0
  32. package/locales/zh-CN/chat.json +5 -0
  33. package/locales/zh-TW/chat.json +5 -0
  34. package/package.json +1 -1
  35. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/default.tsx +2 -0
  36. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatMinimap/index.tsx +335 -0
  37. package/src/app/[variants]/(main)/chat/(workspace)/_layout/Desktop/TopicPanel.tsx +4 -0
  38. package/src/features/Conversation/components/ChatItem/index.tsx +56 -2
  39. package/src/features/Conversation/components/VirtualizedList/VirtuosoContext.ts +88 -0
  40. package/src/features/Conversation/components/VirtualizedList/index.tsx +15 -1
  41. package/src/locales/default/chat.ts +5 -0
  42. package/.cursor/rules/backend-architecture.mdc +0 -176
  43. package/.cursor/rules/code-review.mdc +0 -58
  44. package/.cursor/rules/cursor-ux.mdc +0 -32
  45. package/.cursor/rules/define-database-model.mdc +0 -8
  46. package/.cursor/rules/system-role.mdc +0 -31
package/CHANGELOG.md CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.133.2](https://github.com/lobehub/lobe-chat/compare/v1.133.1...v1.133.2)
6
+
7
+ <sup>Released on **2025-09-30**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Add minimap to chat list for quick navigation.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Add minimap to chat list for quick navigation, closes [#9470](https://github.com/lobehub/lobe-chat/issues/9470) ([8db47eb](https://github.com/lobehub/lobe-chat/commit/8db47eb))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
5
30
  ### [Version 1.133.1](https://github.com/lobehub/lobe-chat/compare/v1.133.0...v1.133.1)
6
31
 
7
32
  <sup>Released on **2025-09-30**</sup>
package/CLAUDE.md CHANGED
@@ -72,29 +72,4 @@ Some useful rules of this project. Read them when needed.
72
72
 
73
73
  ### 📋 Complete Rule Files
74
74
 
75
- **Core Development**
76
-
77
- - `backend-architecture.mdc` - Three-layer architecture, data flow
78
- - `react-component.mdc` - antd-style, Lobe UI usage
79
- - `drizzle-schema-style-guide.mdc` - Schema naming, patterns
80
- - `define-database-model.mdc` - Model templates, CRUD patterns
81
- - `i18n.mdc` - Internationalization workflow
82
-
83
- **State & UI**
84
-
85
- - `zustand-slice-organization.mdc` - Store organization
86
- - `zustand-action-patterns.mdc` - Action patterns
87
- - `packages/react-layout-kit.mdc` - flex layout components usage
88
-
89
- **Testing & Quality**
90
-
91
- - `testing-guide/testing-guide.mdc` - Test strategy, mock patterns
92
- - `code-review.mdc` - Review process and standards
93
-
94
- **Desktop (Electron)**
95
-
96
- - `desktop-feature-implementation.mdc` - Main/renderer process patterns
97
- - `desktop-local-tools-implement.mdc` - Tool integration workflow
98
- - `desktop-menu-configuration.mdc` - App menu, context menu, tray menu
99
- - `desktop-window-management.mdc` - Window creation, state management, multi-window
100
- - `desktop-controller-tests.mdc` - Controller unit testing guide
75
+ Some useful project rules are listed in @.cursor/rules/rules-index.mdc
package/changelog/v1.json CHANGED
@@ -1,4 +1,13 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "improvements": [
5
+ "Add minimap to chat list for quick navigation."
6
+ ]
7
+ },
8
+ "date": "2025-09-30",
9
+ "version": "1.133.2"
10
+ },
2
11
  {
3
12
  "children": {
4
13
  "improvements": [
@@ -150,6 +150,11 @@
150
150
  "total": "الإجمالي المستهلك"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "الانتقال إلى الرسالة رقم {{index}}",
155
+ "nextMessage": "الرسالة التالية",
156
+ "previousMessage": "الرسالة السابقة"
157
+ },
153
158
  "newAgent": "مساعد جديد",
154
159
  "pin": "تثبيت",
155
160
  "pinOff": "إلغاء التثبيت",
@@ -681,7 +681,7 @@
681
681
  "description": "Claude Sonnet 4 يحسن بشكل كبير على قدرات Sonnet 3.7 الرائدة في الصناعة، ويظهر أداءً ممتازًا في الترميز، محققًا 72.7% في SWE-bench. يوازن النموذج بين الأداء والكفاءة، مناسب للحالات الداخلية والخارجية، ويحقق تحكمًا أكبر في التنفيذ من خلال قابلية تحكم محسنة."
682
682
  },
683
683
  "anthropic/claude-sonnet-4.5": {
684
- "description": "كلود سونيت 4.5 هو أذكى نموذج حتى الآن من أنثروبيك."
684
+ "description": "كلود سونيت 4.5 هو أذكى نموذج قدمته شركة أنثروبيك حتى الآن."
685
685
  },
686
686
  "ascend-tribe/pangu-pro-moe": {
687
687
  "description": "Pangu-Pro-MoE 72B-A16B هو نموذج لغة ضخم نادر التنشيط يحتوي على 72 مليار معلمة و16 مليار معلمة نشطة، يعتمد على بنية الخبراء المختلطين المجمعة (MoGE). في مرحلة اختيار الخبراء، يتم تجميع الخبراء وتقيد تنشيط عدد متساوٍ من الخبراء داخل كل مجموعة لكل رمز، مما يحقق توازنًا في تحميل الخبراء ويعزز بشكل كبير كفاءة نشر النموذج على منصة Ascend."
@@ -777,7 +777,7 @@
777
777
  "description": "كلود سونيت 4 نموذج تفكيري يمكنه إنتاج استجابات شبه فورية أو تفكير تدريجي مطول، حيث يمكن للمستخدم رؤية هذه العمليات بوضوح."
778
778
  },
779
779
  "claude-sonnet-4-5-20250929": {
780
- "description": "كلود سونيت 4.5 هو أذكى نموذج حتى الآن من أنثروبيك."
780
+ "description": "كلود سونيت 4.5 هو أذكى نموذج قدمته شركة أنثروبيك حتى الآن."
781
781
  },
782
782
  "codegeex-4": {
783
783
  "description": "CodeGeeX-4 هو مساعد برمجي قوي، يدعم مجموعة متنوعة من لغات البرمجة في الإجابة الذكية وإكمال الشيفرة، مما يعزز من كفاءة التطوير."
@@ -3149,4 +3149,4 @@
3149
3149
  "zai/glm-4.5v": {
3150
3150
  "description": "GLM-4.5V مبني على نموذج GLM-4.5-Air الأساسي، يرث التقنيات المثبتة من GLM-4.1V-Thinking، ويوسعها بفعالية من خلال بنية MoE القوية التي تضم 106 مليار معلمة."
3151
3151
  }
3152
- }
3152
+ }
@@ -150,6 +150,11 @@
150
150
  "total": "Общо разходи"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "Отиди до съобщение № {{index}}",
155
+ "nextMessage": "Следващо съобщение",
156
+ "previousMessage": "Предишно съобщение"
157
+ },
153
158
  "newAgent": "Нов агент",
154
159
  "pin": "Закачи",
155
160
  "pinOff": "Откачи",
@@ -150,6 +150,11 @@
150
150
  "total": "Gesamter Verbrauch"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "Zur Nachricht Nr. {{index}} springen",
155
+ "nextMessage": "Nächste Nachricht",
156
+ "previousMessage": "Vorherige Nachricht"
157
+ },
153
158
  "newAgent": "Neuer Assistent",
154
159
  "pin": "Anheften",
155
160
  "pinOff": "Anheften aufheben",
@@ -150,6 +150,11 @@
150
150
  "total": "Total Consumption"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "Jump to message {{index}}",
155
+ "nextMessage": "Next message",
156
+ "previousMessage": "Previous message"
157
+ },
153
158
  "newAgent": "New Assistant",
154
159
  "pin": "Pin",
155
160
  "pinOff": "Unpin",
@@ -150,6 +150,11 @@
150
150
  "total": "Total consumido"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "Ir al mensaje número {{index}}",
155
+ "nextMessage": "Mensaje siguiente",
156
+ "previousMessage": "Mensaje anterior"
157
+ },
153
158
  "newAgent": "Nuevo asistente",
154
159
  "pin": "Fijar",
155
160
  "pinOff": "Desfijar",
@@ -4,7 +4,7 @@
4
4
  "executing": "Ejecutando...",
5
5
  "files": "Archivos:",
6
6
  "output": "Salida:",
7
- "returnValue": "Valor de retorno:"
7
+ "returnValue": "Valor devuelto:"
8
8
  },
9
9
  "dalle": {
10
10
  "autoGenerate": "Auto-generar",
@@ -86,4 +86,4 @@
86
86
  "keyRequired": "La clave del campo no puede estar vacía",
87
87
  "stringifyError": "No se puede serializar el parámetro, por favor verifica el formato de los parámetros"
88
88
  }
89
- }
89
+ }
@@ -150,6 +150,11 @@
150
150
  "total": "مجموع مصرف"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "رفتن به پیام شماره {{index}}",
155
+ "nextMessage": "پیام بعدی",
156
+ "previousMessage": "پیام قبلی"
157
+ },
153
158
  "newAgent": "دستیار جدید",
154
159
  "pin": "سنجاق کردن",
155
160
  "pinOff": "لغو سنجاق",
@@ -681,7 +681,7 @@
681
681
  "description": "Claude Sonnet 4 بهبود قابل توجهی بر توانایی‌های پیشرو در صنعت Sonnet 3.7 دارد و در کدنویسی عملکرد برجسته‌ای با 72.7% در SWE-bench ارائه می‌دهد. این مدل تعادل بین عملکرد و کارایی را حفظ کرده و برای موارد استفاده داخلی و خارجی مناسب است و با کنترل‌پذیری بهبود یافته، کنترل بیشتری بر نتایج فراهم می‌کند."
682
682
  },
683
683
  "anthropic/claude-sonnet-4.5": {
684
- "description": "Claude Sonnet 4.5 هو هوشمندترین مدل تا به امروز از Anthropic."
684
+ "description": "کلود سونت ۴.۵ هوشمندترین مدل تا به امروز شرکت Anthropic است."
685
685
  },
686
686
  "ascend-tribe/pangu-pro-moe": {
687
687
  "description": "Pangu-Pro-MoE 72B-A16B یک مدل زبان بزرگ پراکنده با 72 میلیارد پارامتر و 16 میلیارد پارامتر فعال است که بر اساس معماری متخصصان ترکیبی گروه‌بندی شده (MoGE) ساخته شده است. در مرحله انتخاب متخصص، متخصصان به گروه‌هایی تقسیم می‌شوند و توکن‌ها در هر گروه به تعداد مساوی متخصصان فعال می‌شوند تا تعادل بار متخصصان حفظ شود، که به طور قابل توجهی کارایی استقرار مدل را در پلتفرم Ascend افزایش می‌دهد."
@@ -777,7 +777,7 @@
777
777
  "description": "مدل تفکر Claude Sonnet 4 می‌تواند پاسخ‌های تقریباً فوری یا تفکر گام به گام طولانی‌مدت تولید کند که کاربران می‌توانند این فرآیندها را به وضوح مشاهده کنند."
778
778
  },
779
779
  "claude-sonnet-4-5-20250929": {
780
- "description": "Claude Sonnet 4.5 هو هوشمندترین مدل تا به امروز از Anthropic."
780
+ "description": "کلود سونت ۴.۵ هوشمندترین مدل تا به امروز شرکت Anthropic است."
781
781
  },
782
782
  "codegeex-4": {
783
783
  "description": "CodeGeeX-4 یک دستیار برنامه‌نویسی قدرتمند مبتنی بر هوش مصنوعی است که از پرسش و پاسخ هوشمند و تکمیل کد در زبان‌های برنامه‌نویسی مختلف پشتیبانی می‌کند و بهره‌وری توسعه را افزایش می‌دهد."
@@ -3149,4 +3149,4 @@
3149
3149
  "zai/glm-4.5v": {
3150
3150
  "description": "GLM-4.5V بر پایه مدل پایه GLM-4.5-Air ساخته شده است، فناوری اثبات شده GLM-4.1V-Thinking را به ارث برده و در عین حال با معماری قدرتمند MoE با 106 میلیارد پارامتر به طور مؤثر مقیاس‌پذیر شده است."
3151
3151
  }
3152
- }
3152
+ }
@@ -150,6 +150,11 @@
150
150
  "total": "Total consommé"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "Aller au message n° {{index}}",
155
+ "nextMessage": "Message suivant",
156
+ "previousMessage": "Message précédent"
157
+ },
153
158
  "newAgent": "Nouvel agent",
154
159
  "pin": "Épingler",
155
160
  "pinOff": "Désépingler",
@@ -681,7 +681,7 @@
681
681
  "description": "Claude Sonnet 4 améliore significativement les capacités de Sonnet 3.7, excelle en codage avec un score de pointe de 72,7 % sur SWE-bench. Ce modèle équilibre performance et efficacité, adapté aux cas d'usage internes et externes, avec un contrôle accru grâce à une meilleure contrôlabilité."
682
682
  },
683
683
  "anthropic/claude-sonnet-4.5": {
684
- "description": "Claude Sonnet 4.5 est le modèle le plus intelligent développé par Anthropic à ce jour."
684
+ "description": "Claude Sonnet 4.5 est le modèle le plus intelligent d'Anthropic à ce jour."
685
685
  },
686
686
  "ascend-tribe/pangu-pro-moe": {
687
687
  "description": "Pangu-Pro-MoE 72B-A16B est un grand modèle de langage sparse à 72 milliards de paramètres, avec 16 milliards de paramètres activés. Il repose sur une architecture Mixture of Experts groupée (MoGE), qui regroupe les experts lors de la sélection et contraint chaque token à activer un nombre égal d'experts dans chaque groupe, assurant ainsi un équilibre de charge entre les experts et améliorant considérablement l'efficacité de déploiement sur la plateforme Ascend."
@@ -777,7 +777,7 @@
777
777
  "description": "Le modèle de réflexion Claude Sonnet 4 produit des réponses quasi instantanées ou des raisonnements prolongés étape par étape, clairement visibles par l'utilisateur."
778
778
  },
779
779
  "claude-sonnet-4-5-20250929": {
780
- "description": "Claude Sonnet 4.5 est le modèle le plus intelligent développé par Anthropic à ce jour."
780
+ "description": "Claude Sonnet 4.5 est le modèle le plus intelligent d'Anthropic à ce jour."
781
781
  },
782
782
  "codegeex-4": {
783
783
  "description": "CodeGeeX-4 est un puissant assistant de programmation AI, prenant en charge des questions intelligentes et l'achèvement de code dans divers langages de programmation, améliorant l'efficacité du développement."
@@ -3149,4 +3149,4 @@
3149
3149
  "zai/glm-4.5v": {
3150
3150
  "description": "GLM-4.5V est construit sur le modèle de base GLM-4.5-Air, héritant des techniques éprouvées de GLM-4.1V-Thinking, tout en réalisant une mise à l'échelle efficace grâce à une puissante architecture MoE de 106 milliards de paramètres."
3151
3151
  }
3152
- }
3152
+ }
@@ -150,6 +150,11 @@
150
150
  "total": "Totale consumato"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "Vai al messaggio n. {{index}}",
155
+ "nextMessage": "Messaggio successivo",
156
+ "previousMessage": "Messaggio precedente"
157
+ },
153
158
  "newAgent": "Nuovo assistente",
154
159
  "pin": "Fissa in alto",
155
160
  "pinOff": "Annulla fissaggio in alto",
@@ -150,6 +150,11 @@
150
150
  "total": "合計消費"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "メッセージ {{index}} へジャンプ",
155
+ "nextMessage": "次のメッセージ",
156
+ "previousMessage": "前のメッセージ"
157
+ },
153
158
  "newAgent": "新しいエージェント",
154
159
  "pin": "ピン留め",
155
160
  "pinOff": "ピン留め解除",
@@ -150,6 +150,11 @@
150
150
  "total": "총 소모"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "{{index}}번째 메시지로 이동",
155
+ "nextMessage": "다음 메시지",
156
+ "previousMessage": "이전 메시지"
157
+ },
153
158
  "newAgent": "새 도우미",
154
159
  "pin": "고정",
155
160
  "pinOff": "고정 해제",
@@ -150,6 +150,11 @@
150
150
  "total": "Totaal verbruik"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "Ga naar bericht {{index}}",
155
+ "nextMessage": "Volgend bericht",
156
+ "previousMessage": "Vorig bericht"
157
+ },
153
158
  "newAgent": "Nieuwe assistent",
154
159
  "pin": "Vastzetten",
155
160
  "pinOff": "Vastzetten uitschakelen",
@@ -150,6 +150,11 @@
150
150
  "total": "Całkowite zużycie"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "Przejdź do wiadomości nr {{index}}",
155
+ "nextMessage": "Następna wiadomość",
156
+ "previousMessage": "Poprzednia wiadomość"
157
+ },
153
158
  "newAgent": "Nowy asystent",
154
159
  "pin": "Przypnij",
155
160
  "pinOff": "Odepnij",
@@ -150,6 +150,11 @@
150
150
  "total": "Total consumido"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "Ir para a mensagem nº {{index}}",
155
+ "nextMessage": "Próxima mensagem",
156
+ "previousMessage": "Mensagem anterior"
157
+ },
153
158
  "newAgent": "Novo Assistente",
154
159
  "pin": "Fixar",
155
160
  "pinOff": "Desafixar",
@@ -150,6 +150,11 @@
150
150
  "total": "Общее потребление"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "Перейти к сообщению № {{index}}",
155
+ "nextMessage": "Следующее сообщение",
156
+ "previousMessage": "Предыдущее сообщение"
157
+ },
153
158
  "newAgent": "Создать помощника",
154
159
  "pin": "Закрепить",
155
160
  "pinOff": "Открепить",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "codeInterpreter": {
3
3
  "error": "Ошибка выполнения",
4
- "executing": "Выполняется...",
4
+ "executing": "Выполнение...",
5
5
  "files": "Файлы:",
6
6
  "output": "Вывод:",
7
7
  "returnValue": "Возвращаемое значение:"
@@ -86,4 +86,4 @@
86
86
  "keyRequired": "Ключ поля не может быть пустым",
87
87
  "stringifyError": "Не удалось сериализовать параметры, проверьте формат параметров"
88
88
  }
89
- }
89
+ }
@@ -150,6 +150,11 @@
150
150
  "total": "Toplam tüketim"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "{{index}} numaralı mesaja atla",
155
+ "nextMessage": "Sonraki mesaj",
156
+ "previousMessage": "Önceki mesaj"
157
+ },
153
158
  "newAgent": "Yeni Asistan",
154
159
  "pin": "Pin",
155
160
  "pinOff": "Unpin",
@@ -681,7 +681,7 @@
681
681
  "description": "Claude Sonnet 4, Sonnet 3.7'nin sektör lideri yetenekleri üzerine önemli geliştirmeler yapmış olup, kodlama alanında mükemmel performans sergiler ve SWE-bench'te en ileri %72.7 skoruna ulaşır. Model, performans ve verimlilik arasında denge sağlar, hem dahili hem de harici kullanım durumları için uygundur ve geliştirilmiş kontrol edilebilirlik ile uygulama üzerinde daha fazla hakimiyet sunar."
682
682
  },
683
683
  "anthropic/claude-sonnet-4.5": {
684
- "description": "Claude Sonnet 4.5, Anthropic'in şimdiye kadarki en zeki modelidir."
684
+ "description": "Claude Sonnet 4.5, Anthropic'in şimdiye kadarki en akıllı modelidir."
685
685
  },
686
686
  "ascend-tribe/pangu-pro-moe": {
687
687
  "description": "Pangu-Pro-MoE 72B-A16B, 72 milyar parametreli ve 16 milyar parametre aktive eden seyrek büyük bir dil modelidir. Bu model, grup tabanlı uzman karışımı (MoGE) mimarisine dayanır; uzman seçim aşamasında uzmanları gruplar halinde düzenler ve her grupta token başına eşit sayıda uzmanı aktive ederek uzman yük dengesini sağlar. Bu sayede Ascend platformunda modelin dağıtım verimliliği önemli ölçüde artırılmıştır."
@@ -777,7 +777,7 @@
777
777
  "description": "Claude Sonnet 4 düşünme modeli, neredeyse anında yanıtlar veya uzatılmış adım adım düşünme süreçleri üretebilir; kullanıcılar bu süreçleri net bir şekilde görebilir."
778
778
  },
779
779
  "claude-sonnet-4-5-20250929": {
780
- "description": "Claude Sonnet 4.5, Anthropic'in şimdiye kadarki en zeki modelidir."
780
+ "description": "Claude Sonnet 4.5, Anthropic'in şimdiye kadarki en akıllı modelidir."
781
781
  },
782
782
  "codegeex-4": {
783
783
  "description": "CodeGeeX-4, çeşitli programlama dillerinde akıllı soru-cevap ve kod tamamlama desteği sunan güçlü bir AI programlama asistanıdır, geliştirme verimliliğini artırır."
@@ -3149,4 +3149,4 @@
3149
3149
  "zai/glm-4.5v": {
3150
3150
  "description": "GLM-4.5V, GLM-4.5-Air temel modeli üzerine inşa edilmiştir, GLM-4.1V-Thinking'in doğrulanmış teknolojisini devralır ve güçlü 106 milyar parametreli MoE mimarisi ile etkili ölçeklenebilirlik sağlar."
3151
3151
  }
3152
- }
3152
+ }
@@ -150,6 +150,11 @@
150
150
  "total": "Tổng tiêu thụ"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "Chuyển đến tin nhắn thứ {{index}}",
155
+ "nextMessage": "Tin nhắn tiếp theo",
156
+ "previousMessage": "Tin nhắn trước"
157
+ },
153
158
  "newAgent": "Tạo trợ lý mới",
154
159
  "pin": "Ghim",
155
160
  "pinOff": "Bỏ ghim",
@@ -150,6 +150,11 @@
150
150
  "total": "总计消耗"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "跳转至第 {{index}} 条消息",
155
+ "nextMessage": "下一条消息",
156
+ "previousMessage": "上一条消息"
157
+ },
153
158
  "newAgent": "新建助手",
154
159
  "pin": "置顶",
155
160
  "pinOff": "取消置顶",
@@ -150,6 +150,11 @@
150
150
  "total": "總計消耗"
151
151
  }
152
152
  },
153
+ "minimap": {
154
+ "jumpToMessage": "跳轉至第 {{index}} 條訊息",
155
+ "nextMessage": "下一條訊息",
156
+ "previousMessage": "上一條訊息"
157
+ },
153
158
  "newAgent": "新建助手",
154
159
  "pin": "置頂",
155
160
  "pinOff": "取消置頂",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.133.1",
3
+ "version": "1.133.2",
4
4
  "description": "Lobe Chat - an open-source, high-performance chatbot 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",
@@ -4,6 +4,7 @@ import { RouteVariants } from '@/utils/server/routeVariants';
4
4
  import ChatHydration from './features/ChatHydration';
5
5
  import ChatInput from './features/ChatInput';
6
6
  import ChatList from './features/ChatList';
7
+ import ChatMinimap from './features/ChatMinimap';
7
8
  import ThreadHydration from './features/ThreadHydration';
8
9
  import ZenModeToast from './features/ZenModeToast';
9
10
 
@@ -17,6 +18,7 @@ const ChatConversation = async (props: DynamicLayoutProps) => {
17
18
  <ChatInput mobile={isMobile} />
18
19
  <ChatHydration />
19
20
  <ThreadHydration />
21
+ {!isMobile && <ChatMinimap />}
20
22
  </>
21
23
  );
22
24
  };