@lobehub/chat 1.55.4 → 1.56.1

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 (60) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/README.md +93 -45
  3. package/README.zh-CN.md +92 -44
  4. package/changelog/v1.json +18 -0
  5. package/contributing/Others/Lighthouse.md +2 -5
  6. package/contributing/Others/Lighthouse.zh-CN.md +3 -4
  7. package/docker-compose/local/docker-compose.yml +16 -0
  8. package/docs/self-hosting/advanced/auth/next-auth/casdoor.mdx +2 -1
  9. package/docs/self-hosting/advanced/auth/next-auth/casdoor.zh-CN.mdx +2 -1
  10. package/docs/self-hosting/advanced/auth/next-auth/logto.mdx +1 -1
  11. package/docs/self-hosting/advanced/auth/next-auth/logto.zh-CN.mdx +1 -1
  12. package/docs/self-hosting/server-database/docker-compose.zh-CN.mdx +1 -1
  13. package/docs/self-hosting/server-database.mdx +1 -1
  14. package/docs/usage/features/agent-market.mdx +1 -1
  15. package/docs/usage/features/agent-market.zh-CN.mdx +1 -1
  16. package/docs/usage/features/artifacts.mdx +23 -0
  17. package/docs/usage/features/artifacts.zh-CN.mdx +22 -0
  18. package/docs/usage/features/auth.mdx +1 -1
  19. package/docs/usage/features/auth.zh-CN.mdx +1 -1
  20. package/docs/usage/features/branching-conversations.mdx +21 -0
  21. package/docs/usage/features/branching-conversations.zh-CN.mdx +21 -0
  22. package/docs/usage/features/cot.mdx +18 -0
  23. package/docs/usage/features/cot.zh-CN.mdx +18 -0
  24. package/docs/usage/features/database.mdx +1 -1
  25. package/docs/usage/features/database.zh-CN.mdx +1 -1
  26. package/docs/usage/features/knowledge-base.mdx +24 -0
  27. package/docs/usage/features/knowledge-base.zh-CN.mdx +21 -0
  28. package/docs/usage/features/local-llm.mdx +1 -1
  29. package/docs/usage/features/local-llm.zh-CN.mdx +1 -1
  30. package/docs/usage/features/mobile.mdx +1 -1
  31. package/docs/usage/features/mobile.zh-CN.mdx +1 -1
  32. package/docs/usage/features/multi-ai-providers.mdx +1 -1
  33. package/docs/usage/features/multi-ai-providers.zh-CN.mdx +1 -1
  34. package/docs/usage/features/plugin-system.mdx +1 -1
  35. package/docs/usage/features/plugin-system.zh-CN.mdx +1 -1
  36. package/docs/usage/features/pwa.mdx +1 -1
  37. package/docs/usage/features/pwa.zh-CN.mdx +1 -1
  38. package/docs/usage/features/text-to-image.mdx +1 -1
  39. package/docs/usage/features/text-to-image.zh-CN.mdx +1 -1
  40. package/docs/usage/features/theme.mdx +1 -1
  41. package/docs/usage/features/theme.zh-CN.mdx +1 -1
  42. package/docs/usage/features/tts.mdx +1 -1
  43. package/docs/usage/features/tts.zh-CN.mdx +1 -1
  44. package/docs/usage/features/vision.mdx +1 -1
  45. package/docs/usage/features/vision.zh-CN.mdx +1 -1
  46. package/package.json +1 -1
  47. package/scripts/readmeWorkflow/syncAgentIndex.ts +0 -1
  48. package/scripts/readmeWorkflow/syncPluginIndex.ts +0 -1
  49. package/scripts/readmeWorkflow/syncProviderIndex.ts +0 -1
  50. package/scripts/vercelIgnoredBuildStep.js +1 -1
  51. package/src/app/[variants]/(main)/chat/(workspace)/features/AgentSettings/CategoryContent/useCategory.tsx +39 -33
  52. package/src/app/[variants]/(main)/chat/(workspace)/features/AgentSettings/index.tsx +3 -1
  53. package/src/app/[variants]/(main)/chat/(workspace)/features/SettingButton.tsx +3 -1
  54. package/src/config/knowledge.ts +14 -16
  55. package/src/hooks/useInterceptingRoutes.ts +2 -1
  56. package/src/server/modules/ContentChunk/index.ts +44 -6
  57. package/src/server/modules/ContentChunk/rules.test.ts +81 -0
  58. package/src/server/modules/ContentChunk/rules.ts +23 -0
  59. package/README.ja-JP.md +0 -844
  60. package/README.zh-TW.md +0 -887
package/CHANGELOG.md CHANGED
@@ -2,6 +2,56 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.56.1](https://github.com/lobehub/lobe-chat/compare/v1.56.0...v1.56.1)
6
+
7
+ <sup>Released on **2025-02-16**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **misc**: Fix inbox agent edit way in the new mode.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **misc**: Fix inbox agent edit way in the new mode, closes [#6190](https://github.com/lobehub/lobe-chat/issues/6190) ([6398362](https://github.com/lobehub/lobe-chat/commit/6398362))
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
+
30
+ ## [Version 1.56.0](https://github.com/lobehub/lobe-chat/compare/v1.55.4...v1.56.0)
31
+
32
+ <sup>Released on **2025-02-15**</sup>
33
+
34
+ #### ✨ Features
35
+
36
+ - **misc**: Add configurable PDF processing method with Unstructured.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### What's improved
44
+
45
+ - **misc**: Add configurable PDF processing method with Unstructured, closes [#5927](https://github.com/lobehub/lobe-chat/issues/5927) ([35fa3ee](https://github.com/lobehub/lobe-chat/commit/35fa3ee))
46
+
47
+ </details>
48
+
49
+ <div align="right">
50
+
51
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
52
+
53
+ </div>
54
+
5
55
  ### [Version 1.55.4](https://github.com/lobehub/lobe-chat/compare/v1.55.3...v1.55.4)
6
56
 
7
57
  <sup>Released on **2025-02-15**</sup>
package/README.md CHANGED
@@ -8,7 +8,7 @@ An open-source, modern-design ChatGPT/LLMs UI/Framework.<br/>
8
8
  Supports speech-synthesis, multi-modal, and extensible ([function call][docs-functionc-call]) plugin system.<br/>
9
9
  One-click **FREE** deployment of your private OpenAI ChatGPT/Claude/Gemini/Groq/Ollama chat application.
10
10
 
11
- **English** · [繁體中文](./README.zh-TW.md) · [简体中文](./README.zh-CN.md) · [日本語](./README.ja-JP.md) · [Official Site][official-site] · [Changelog][changelog] · [Documents][docs] · [Blog][blog] · [Feedback][github-issues-link]
11
+ **English** · [简体中文](./README.zh-CN.md) · [Official Site][official-site] · [Changelog][changelog] · [Documents][docs] · [Blog][blog] · [Feedback][github-issues-link]
12
12
 
13
13
  <!-- SHIELD GROUP -->
14
14
 
@@ -52,19 +52,22 @@ One-click **FREE** deployment of your private OpenAI ChatGPT/Claude/Gemini/Groq/
52
52
 
53
53
  - [👋🏻 Getting Started & Join Our Community](#-getting-started--join-our-community)
54
54
  - [✨ Features](#-features)
55
- - [`1` File Upload/Knowledge Base](#1-file-uploadknowledge-base)
56
- - [`2` Multi-Model Service Provider Support](#2-multi-model-service-provider-support)
57
- - [`3` Local Large Language Model (LLM) Support](#3-local-large-language-model-llm-support)
58
- - [`4` Model Visual Recognition](#4-model-visual-recognition)
59
- - [`5` TTS & STT Voice Conversation](#5-tts--stt-voice-conversation)
60
- - [`6` Text to Image Generation](#6-text-to-image-generation)
61
- - [`7` Plugin System (Function Calling)](#7-plugin-system-function-calling)
62
- - [`8` Agent Market (GPTs)](#8-agent-market-gpts)
63
- - [`9` Support Local / Remote Database](#9-support-local--remote-database)
64
- - [`10` Support Multi-User Management](#10-support-multi-user-management)
65
- - [`11` Progressive Web App (PWA)](#11-progressive-web-app-pwa)
66
- - [`12` Mobile Device Adaptation](#12-mobile-device-adaptation)
67
- - [`13` Custom Themes](#13-custom-themes)
55
+ - [`1` Chain of Thought](#1-chain-of-thought)
56
+ - [`2` Branching Conversations](#2-branching-conversations)
57
+ - [`3` Artifacts Support](#3-artifacts-support)
58
+ - [`4` File Upload /Knowledge Base](#4-file-upload-knowledge-base)
59
+ - [`5` Multi-Model Service Provider Support](#5-multi-model-service-provider-support)
60
+ - [`6` Local Large Language Model (LLM) Support](#6-local-large-language-model-llm-support)
61
+ - [`7` Model Visual Recognition](#7-model-visual-recognition)
62
+ - [`8` TTS & STT Voice Conversation](#8-tts--stt-voice-conversation)
63
+ - [`9` Text to Image Generation](#9-text-to-image-generation)
64
+ - [`10` Plugin System (Function Calling)](#10-plugin-system-function-calling)
65
+ - [`11` Agent Market (GPTs)](#11-agent-market-gpts)
66
+ - [`12` Support Local / Remote Database](#12-support-local--remote-database)
67
+ - [`13` Support Multi-User Management](#13-support-multi-user-management)
68
+ - [`14` Progressive Web App (PWA)](#14-progressive-web-app-pwa)
69
+ - [`15` Mobile Device Adaptation](#15-mobile-device-adaptation)
70
+ - [`16` Custom Themes](#16-custom-themes)
68
71
  - [`*` What's more](#-whats-more)
69
72
  - [⚡️ Performance](#️-performance)
70
73
  - [🛳 Self Hosting](#-self-hosting)
@@ -111,9 +114,48 @@ Whether for users or professional developers, LobeHub will be your AI Agent play
111
114
 
112
115
  ## ✨ Features
113
116
 
117
+ [![][image-feat-cot]][docs-feat-cot]
118
+
119
+ ### `1` [Chain of Thought][docs-feat-cot]
120
+
121
+ Experience AI reasoning like never before. Watch as complex problems unfold step by step through our innovative Chain of Thought (CoT) visualization. This breakthrough feature provides unprecedented transparency into AI's decision-making process, allowing you to observe how conclusions are reached in real-time.
122
+
123
+ By breaking down complex reasoning into clear, logical steps, you can better understand and validate the AI's problem-solving approach. Whether you're debugging, learning, or simply curious about AI reasoning, CoT visualization transforms abstract thinking into an engaging, interactive experience.
124
+
125
+ [![][back-to-top]](#readme-top)
126
+
127
+ [![][image-feat-branch]][docs-feat-branch]
128
+
129
+ ### `2` [Branching Conversations][docs-feat-branch]
130
+
131
+ Introducing a more natural and flexible way to chat with AI. With Branch Conversations, your discussions can flow in multiple directions, just like human conversations do. Create new conversation branches from any message, giving you the freedom to explore different paths while preserving the original context.
132
+
133
+ Choose between two powerful modes:
134
+
135
+ - **Continuation Mode:** Seamlessly extend your current discussion while maintaining valuable context
136
+ - **Standalone Mode:** Start fresh with a new topic based on any previous message
137
+
138
+ This groundbreaking feature transforms linear conversations into dynamic, tree-like structures, enabling deeper exploration of ideas and more productive interactions.
139
+
140
+ [![][back-to-top]](#readme-top)
141
+
142
+ [![][image-feat-artifacts]][docs-feat-artifacts]
143
+
144
+ ### `3` [Artifacts Support][docs-feat-artifacts]
145
+
146
+ Experience the power of Claude Artifacts, now integrated into LobeChat. This revolutionary feature expands the boundaries of AI-human interaction, enabling real-time creation and visualization of diverse content formats.
147
+
148
+ Create and visualize with unprecedented flexibility:
149
+
150
+ - Generate and display dynamic SVG graphics
151
+ - Build and render interactive HTML pages in real-time
152
+ - Produce professional documents in multiple formats
153
+
154
+ [![][back-to-top]](#readme-top)
155
+
114
156
  [![][image-feat-knowledgebase]][docs-feat-knowledgebase]
115
157
 
116
- ### `1` [File Upload/Knowledge Base][docs-feat-knowledgebase]
158
+ ### `4` [File Upload /Knowledge Base][docs-feat-knowledgebase]
117
159
 
118
160
  LobeChat supports file upload and knowledge base functionality. You can upload various types of files including documents, images, audio, and video, as well as create knowledge bases, making it convenient for users to manage and search for files. Additionally, you can utilize files and knowledge base features during conversations, enabling a richer dialogue experience.
119
161
 
@@ -131,7 +173,7 @@ LobeChat supports file upload and knowledge base functionality. You can upload v
131
173
 
132
174
  [![][image-feat-privoder]][docs-feat-provider]
133
175
 
134
- ### `2` [Multi-Model Service Provider Support][docs-feat-provider]
176
+ ### `5` [Multi-Model Service Provider Support][docs-feat-provider]
135
177
 
136
178
  In the continuous development of LobeChat, we deeply understand the importance of diversity in model service providers for meeting the needs of the community when providing AI conversation services. Therefore, we have expanded our support to multiple model service providers, rather than being limited to a single one, in order to offer users a more diverse and rich selection of conversations.
137
179
 
@@ -189,7 +231,7 @@ We have implemented support for the following model service providers:
189
231
 
190
232
  <!-- PROVIDER LIST -->
191
233
 
192
- At the same time, we are also planning to support more model service providers. If you would like LobeChat to support your favorite service provider, feel free to join our [💬 community discussion](https://github.com/lobehub/lobe-chat/discussions/6157).
234
+ At the same time, we are also planning to support more model service providers. If you would like LobeChat to support your favorite service provider, feel free to join our [💬 community discussion](https://github.com/lobehub/lobe-chat/discussions/1284).
193
235
 
194
236
  <div align="right">
195
237
 
@@ -199,7 +241,7 @@ At the same time, we are also planning to support more model service providers.
199
241
 
200
242
  [![][image-feat-local]][docs-feat-local]
201
243
 
202
- ### `3` [Local Large Language Model (LLM) Support][docs-feat-local]
244
+ ### `6` [Local Large Language Model (LLM) Support][docs-feat-local]
203
245
 
204
246
  To meet the specific needs of users, LobeChat also supports the use of local models based on [Ollama](https://ollama.ai), allowing users to flexibly use their own or third-party models.
205
247
 
@@ -215,7 +257,7 @@ To meet the specific needs of users, LobeChat also supports the use of local mod
215
257
 
216
258
  [![][image-feat-vision]][docs-feat-vision]
217
259
 
218
- ### `4` [Model Visual Recognition][docs-feat-vision]
260
+ ### `7` [Model Visual Recognition][docs-feat-vision]
219
261
 
220
262
  LobeChat now supports OpenAI's latest [`gpt-4-vision`](https://platform.openai.com/docs/guides/vision) model with visual recognition capabilities,
221
263
  a multimodal intelligence that can perceive visuals. Users can easily upload or drag and drop images into the dialogue box,
@@ -233,7 +275,7 @@ Whether it's sharing images in daily use or interpreting images within specific
233
275
 
234
276
  [![][image-feat-tts]][docs-feat-tts]
235
277
 
236
- ### `5` [TTS & STT Voice Conversation][docs-feat-tts]
278
+ ### `8` [TTS & STT Voice Conversation][docs-feat-tts]
237
279
 
238
280
  LobeChat supports Text-to-Speech (TTS) and Speech-to-Text (STT) technologies, enabling our application to convert text messages into clear voice outputs,
239
281
  allowing users to interact with our conversational agent as if they were talking to a real person. Users can choose from a variety of voices to pair with the agent.
@@ -250,7 +292,7 @@ Users can choose the voice that suits their personal preferences or specific sce
250
292
 
251
293
  [![][image-feat-t2i]][docs-feat-t2i]
252
294
 
253
- ### `6` [Text to Image Generation][docs-feat-t2i]
295
+ ### `9` [Text to Image Generation][docs-feat-t2i]
254
296
 
255
297
  With support for the latest text-to-image generation technology, LobeChat now allows users to invoke image creation tools directly within conversations with the agent. By leveraging the capabilities of AI tools such as [`DALL-E 3`](https://openai.com/dall-e-3), [`MidJourney`](https://www.midjourney.com/), and [`Pollinations`](https://pollinations.ai/), the agents are now equipped to transform your ideas into images.
256
298
 
@@ -264,7 +306,7 @@ This enables a more private and immersive creative process, allowing for the sea
264
306
 
265
307
  [![][image-feat-plugin]][docs-feat-plugin]
266
308
 
267
- ### `7` [Plugin System (Function Calling)][docs-feat-plugin]
309
+ ### `10` [Plugin System (Function Calling)][docs-feat-plugin]
268
310
 
269
311
  The plugin ecosystem of LobeChat is an important extension of its core functionality, greatly enhancing the practicality and flexibility of the LobeChat assistant.
270
312
 
@@ -299,7 +341,7 @@ In addition, these plugins are not limited to news aggregation, but can also ext
299
341
 
300
342
  [![][image-feat-agent]][docs-feat-agent]
301
343
 
302
- ### `8` [Agent Market (GPTs)][docs-feat-agent]
344
+ ### `11` [Agent Market (GPTs)][docs-feat-agent]
303
345
 
304
346
  In LobeChat Agent Marketplace, creators can discover a vibrant and innovative community that brings together a multitude of well-designed agents,
305
347
  which not only play an important role in work scenarios but also offer great convenience in learning processes.
@@ -338,7 +380,7 @@ Our marketplace is not just a showcase platform but also a collaborative space.
338
380
 
339
381
  [![][image-feat-database]][docs-feat-database]
340
382
 
341
- ### `9` [Support Local / Remote Database][docs-feat-database]
383
+ ### `12` [Support Local / Remote Database][docs-feat-database]
342
384
 
343
385
  LobeChat supports the use of both server-side and local databases. Depending on your needs, you can choose the appropriate deployment solution:
344
386
 
@@ -355,7 +397,7 @@ Regardless of which database you choose, LobeChat can provide you with an excell
355
397
 
356
398
  [![][image-feat-auth]][docs-feat-auth]
357
399
 
358
- ### `10` [Support Multi-User Management][docs-feat-auth]
400
+ ### `13` [Support Multi-User Management][docs-feat-auth]
359
401
 
360
402
  LobeChat supports multi-user management and provides two main user authentication and management solutions to meet different needs:
361
403
 
@@ -373,7 +415,7 @@ Regardless of which user management solution you choose, LobeChat can provide yo
373
415
 
374
416
  [![][image-feat-pwa]][docs-feat-pwa]
375
417
 
376
- ### `11` [Progressive Web App (PWA)][docs-feat-pwa]
418
+ ### `14` [Progressive Web App (PWA)][docs-feat-pwa]
377
419
 
378
420
  We deeply understand the importance of providing a seamless experience for users in today's multi-device environment.
379
421
  Therefore, we have adopted Progressive Web Application ([PWA](https://support.google.com/chrome/answer/9658361)) technology,
@@ -400,7 +442,7 @@ providing smooth animations, responsive layouts, and adapting to different devic
400
442
 
401
443
  [![][image-feat-mobile]][docs-feat-mobile]
402
444
 
403
- ### `12` [Mobile Device Adaptation][docs-feat-mobile]
445
+ ### `15` [Mobile Device Adaptation][docs-feat-mobile]
404
446
 
405
447
  We have carried out a series of optimization designs for mobile devices to enhance the user's mobile experience. Currently, we are iterating on the mobile user experience to achieve smoother and more intuitive interactions. If you have any suggestions or ideas, we welcome you to provide feedback through GitHub Issues or Pull Requests.
406
448
 
@@ -412,7 +454,7 @@ We have carried out a series of optimization designs for mobile devices to enhan
412
454
 
413
455
  [![][image-feat-theme]][docs-feat-theme]
414
456
 
415
- ### `13` [Custom Themes][docs-feat-theme]
457
+ ### `16` [Custom Themes][docs-feat-theme]
416
458
 
417
459
  As a design-engineering-oriented application, LobeChat places great emphasis on users' personalized experiences,
418
460
  hence introducing flexible and diverse theme modes, including a light mode for daytime and a dark mode for nighttime.
@@ -728,9 +770,9 @@ This project is [Apache 2.0](./LICENSE) licensed.
728
770
  [blog]: https://lobehub.com/blog
729
771
  [changelog]: https://lobehub.com/changelog
730
772
  [chat-desktop]: https://raw.githubusercontent.com/lobehub/lobe-chat/lighthouse/lighthouse/chat/desktop/pagespeed.svg
731
- [chat-desktop-report]: https://lobehub.github.io/lobe-chat/lighthouse/chat/desktop/lobechat_com_chat.html
773
+ [chat-desktop-report]: https://lobehub.github.io/lobe-chat/lighthouse/chat/desktop/chat_preview_lobehub_com_chat.html
732
774
  [chat-mobile]: https://raw.githubusercontent.com/lobehub/lobe-chat/lighthouse/lighthouse/chat/mobile/pagespeed.svg
733
- [chat-mobile-report]: https://lobehub.github.io/lobe-chat/lighthouse/chat/mobile/lobechat_com_chat.html
775
+ [chat-mobile-report]: https://lobehub.github.io/lobe-chat/lighthouse/chat/mobile/chat_preview_lobehub_com_chat.html
734
776
  [chat-plugin-sdk]: https://github.com/lobehub/chat-plugin-sdk
735
777
  [chat-plugin-template]: https://github.com/lobehub/chat-plugin-template
736
778
  [chat-plugins-gateway]: https://github.com/lobehub/chat-plugins-gateway
@@ -762,7 +804,10 @@ This project is [Apache 2.0](./LICENSE) licensed.
762
804
  [docs-docker]: https://lobehub.com/docs/self-hosting/platform/docker
763
805
  [docs-env-var]: https://lobehub.com/docs/self-hosting/environment-variables
764
806
  [docs-feat-agent]: https://lobehub.com/docs/usage/features/agent-market
807
+ [docs-feat-artifacts]: https://lobehub.com/docs/usage/features/artifacts
765
808
  [docs-feat-auth]: https://lobehub.com/docs/usage/features/auth
809
+ [docs-feat-branch]: https://lobehub.com/docs/usage/features/branching-conversations
810
+ [docs-feat-cot]: https://lobehub.com/docs/usage/features/cot
766
811
  [docs-feat-database]: https://lobehub.com/docs/usage/features/database
767
812
  [docs-feat-knowledgebase]: https://lobehub.com/blog/knowledge-base
768
813
  [docs-feat-local]: https://lobehub.com/docs/usage/features/local-llm
@@ -804,22 +849,25 @@ This project is [Apache 2.0](./LICENSE) licensed.
804
849
  [github-stars-shield]: https://img.shields.io/github/stars/lobehub/lobe-chat?color=ffcb47&labelColor=black&style=flat-square
805
850
  [github-trending-shield]: https://trendshift.io/api/badge/repositories/2256
806
851
  [github-trending-url]: https://trendshift.io/repositories/2256
807
- [image-banner]: https://github.com/lobehub/lobe-chat/assets/28616219/9f155dff-4737-429f-9cad-a70a1a860c5f
808
- [image-feat-agent]: https://github-production-user-asset-6210df.s3.amazonaws.com/17870709/268670869-f1ffbf66-42b6-42cf-a937-9ce1f8328514.png
809
- [image-feat-auth]: https://github.com/lobehub/lobe-chat/assets/17870709/8ce70e15-40df-451e-b700-66090fe5b8c2
810
- [image-feat-database]: https://github.com/lobehub/lobe-chat/assets/17870709/c27a0234-a4e9-40e5-8bcb-42d5ce7e40f9
811
- [image-feat-knowledgebase]: https://github.com/user-attachments/assets/77e58e1c-c82f-4341-b159-f4eeede9967f
812
- [image-feat-local]: https://github.com/lobehub/lobe-chat/assets/28616219/ca9a21bc-ea6c-4c90-bf4a-fa53b4fb2b5c
813
- [image-feat-mobile]: https://gw.alipayobjects.com/zos/kitchen/R441AuFS4W/mobile.webp
814
- [image-feat-plugin]: https://github-production-user-asset-6210df.s3.amazonaws.com/17870709/268670883-33c43a5c-a512-467e-855c-fa299548cce5.png
815
- [image-feat-privoder]: https://github.com/lobehub/lobe-chat/assets/28616219/b164bc54-8ba2-4c1e-b2f2-f4d7f7e7a551
816
- [image-feat-pwa]: https://gw.alipayobjects.com/zos/kitchen/69x6bllkX3/pwa.webp
817
- [image-feat-t2i]: https://github-production-user-asset-6210df.s3.amazonaws.com/17870709/297746445-0ff762b9-aa08-4337-afb7-12f932b6efbb.png
818
- [image-feat-theme]: https://gw.alipayobjects.com/zos/kitchen/pvus1lo%26Z7/darkmode.webp
819
- [image-feat-tts]: https://github-production-user-asset-6210df.s3.amazonaws.com/17870709/284072124-c9853d8d-f1b5-44a8-a305-45ebc0f6d19a.png
820
- [image-feat-vision]: https://github-production-user-asset-6210df.s3.amazonaws.com/17870709/284072129-382bdf30-e3d6-4411-b5a0-249710b8ba08.png
852
+ [image-banner]: https://github.com/user-attachments/assets/6f293c7f-47b4-47eb-9202-fe68a942d35b
853
+ [image-feat-agent]: https://github.com/user-attachments/assets/b3ab6e35-4fbc-468d-af10-e3e0c687350f
854
+ [image-feat-artifacts]: https://github.com/user-attachments/assets/7f95fad6-b210-4e6e-84a0-7f39e96f3a00
855
+ [image-feat-auth]: https://github.com/user-attachments/assets/80bb232e-19d1-4f97-98d6-e291f3585e6d
856
+ [image-feat-branch]: https://github.com/user-attachments/assets/92f72082-02bd-4835-9c54-b089aad7fd41
857
+ [image-feat-cot]: https://github.com/user-attachments/assets/f74f1139-d115-4e9c-8c43-040a53797a5e
858
+ [image-feat-database]: https://github.com/user-attachments/assets/f1697c8b-d1fb-4dac-ba05-153c6295d91d
859
+ [image-feat-knowledgebase]: https://github.com/user-attachments/assets/7da7a3b2-92fd-4630-9f4e-8560c74955ae
860
+ [image-feat-local]: https://github.com/user-attachments/assets/1239da50-d832-4632-a7ef-bd754c0f3850
861
+ [image-feat-mobile]: https://github.com/user-attachments/assets/32cf43c4-96bd-4a4c-bfb6-59acde6fe380
862
+ [image-feat-plugin]: https://github.com/user-attachments/assets/66a891ac-01b6-4e3f-b978-2eb07b489b1b
863
+ [image-feat-privoder]: https://github.com/user-attachments/assets/e553e407-42de-4919-977d-7dbfcf44a821
864
+ [image-feat-pwa]: https://github.com/user-attachments/assets/9647f70f-b71b-43b6-9564-7cdd12d1c24d
865
+ [image-feat-t2i]: https://github.com/user-attachments/assets/708274a7-2458-494b-a6ec-b73dfa1fa7c2
866
+ [image-feat-theme]: https://github.com/user-attachments/assets/b47c39f1-806f-492b-8fcb-b0fa973937c1
867
+ [image-feat-tts]: https://github.com/user-attachments/assets/50189597-2cc3-4002-b4c8-756a52ad5c0a
868
+ [image-feat-vision]: https://github.com/user-attachments/assets/18574a1f-46c2-4cbc-af2c-35a86e128a07
821
869
  [image-overview]: https://github.com/lobehub/lobe-chat/assets/17870709/56b95d48-f573-41cd-8b38-387bf88bc4bf
822
- [image-star]: https://github.com/lobehub/lobe-chat/assets/17870709/cb06b748-513f-47c2-8740-d876858d7855
870
+ [image-star]: https://github.com/user-attachments/assets/c3b482e7-cef5-4e94-bef9-226900ecfaab
823
871
  [issues-link]: https://img.shields.io/github/issues/lobehub/lobe-chat.svg?style=flat
824
872
  [lobe-chat-plugins]: https://github.com/lobehub/lobe-chat-plugins
825
873
  [lobe-commit]: https://github.com/lobehub/lobe-commit/tree/master/packages/lobe-commit
package/README.zh-CN.md CHANGED
@@ -8,7 +8,7 @@
8
8
  支持语音合成、多模态、可扩展的([function call][docs-functionc-call])插件系统<br/>
9
9
  一键**免费**拥有你自己的 ChatGPT/Gemini/Claude/Ollama 应用
10
10
 
11
- [English](./README.md) · [繁體中文](./README.zh-TW.md) · **简体中文** · [日本語](./README.ja-JP.md) · [官网][official-site] · [更新日志][changelog] · [文档][docs] · [博客][blog] · [反馈问题][github-issues-link]
11
+ [English](./README.md) · **简体中文** · [官网][official-site] · [更新日志][changelog] · [文档][docs] · [博客][blog] · [反馈问题][github-issues-link]
12
12
 
13
13
  <!-- SHIELD GROUP -->
14
14
 
@@ -52,20 +52,23 @@
52
52
 
53
53
  - [👋🏻 开始使用 & 交流](#-开始使用--交流)
54
54
  - [✨ 特性一览](#-特性一览)
55
- - [`1` 文件上传 / 知识库](#1-文件上传--知识库)
56
- - [`2` 多模型服务商支持](#2-多模型服务商支持)
57
- - [`3` 支持本地大语言模型 (LLM)](#3-支持本地大语言模型-llm)
58
- - [`4` 模型视觉识别 (Model Visual)](#4-模型视觉识别-model-visual)
59
- - [`5` TTS & STT 语音会话](#5-tts--stt-语音会话)
60
- - [`6` Text to Image 文生图](#6-text-to-image-文生图)
61
- - [`7` 插件系统 (Tools Calling)](#7-插件系统-tools-calling)
62
- - [`8` 助手市场 (GPTs)](#8-助手市场-gpts)
63
- - [`9` 支持本地 / 远程数据库](#9-支持本地--远程数据库)
64
- - [`10` 支持多用户管理](#10-支持多用户管理)
65
- - [`11` 渐进式 Web 应用 (PWA)](#11-渐进式-web-应用-pwa)
66
- - [`12` 移动设备适配](#12-移动设备适配)
67
- - [`13` 自定义主题](#13-自定义主题)
68
- - [更多特性](#更多特性)
55
+ - [`1` 思维链 (CoT)](#1-思维链-cot)
56
+ - [`2` 分支对话](#2-分支对话)
57
+ - [`3` 支持白板 (Artifacts)](#3-支持白板-artifacts)
58
+ - [`4` 文件上传 / 知识库](#4-文件上传--知识库)
59
+ - [`5` 多模型服务商支持](#5-多模型服务商支持)
60
+ - [`6` 支持本地大语言模型 (LLM)](#6-支持本地大语言模型-llm)
61
+ - [`7` 模型视觉识别 (Model Visual)](#7-模型视觉识别-model-visual)
62
+ - [`8` TTS & STT 语音会话](#8-tts--stt-语音会话)
63
+ - [`9` Text to Image 文生图](#9-text-to-image-文生图)
64
+ - [`10` 插件系统 (Tools Calling)](#10-插件系统-tools-calling)
65
+ - [`11` 助手市场 (GPTs)](#11-助手市场-gpts)
66
+ - [`12` 支持本地 / 远程数据库](#12-支持本地--远程数据库)
67
+ - [`13` 支持多用户管理](#13-支持多用户管理)
68
+ - [`14` 渐进式 Web 应用 (PWA)](#14-渐进式-web-应用-pwa)
69
+ - [`15` 移动设备适配](#15-移动设备适配)
70
+ - [`16` 自定义主题](#16-自定义主题)
71
+ - [`*` 更多特性](#-更多特性)
69
72
  - [⚡️ 性能测试](#️-性能测试)
70
73
  - [🛳 开箱即用](#-开箱即用)
71
74
  - [`A` 使用 Vercel、Zeabur 、Sealos 或 阿里云计算巢 部署](#a-使用-vercelzeabur-sealos-或-阿里云计算巢-部署)
@@ -111,9 +114,48 @@
111
114
 
112
115
  ## ✨ 特性一览
113
116
 
117
+ [![][image-feat-cot]][docs-feat-cot]
118
+
119
+ ### `1` [思维链 (CoT)][docs-feat-cot]
120
+
121
+ 体验前所未有的 AI 推理过程。通过创新的思维链(CoT)可视化功能,您可以实时观察复杂问题是如何一步步被解析的。这项突破性的功能为 AI 的决策过程提供了前所未有的透明度,让您能够清晰地了解结论是如何得出的。
122
+
123
+ 通过将复杂的推理过程分解为清晰的逻辑步骤,您可以更好地理解和验证 AI 的解题思路。无论您是在调试问题、学习知识,还是单纯对 AI 推理感兴趣,思维链可视化都能将抽象思维转化为一种引人入胜的互动体验。
124
+
125
+ [![][back-to-top]](#readme-top)
126
+
127
+ [![][image-feat-branch]][docs-feat-branch]
128
+
129
+ ### `2` [分支对话][docs-feat-branch]
130
+
131
+ 为您带来更自然、更灵活的 AI 对话方式。通过分支对话功能,您的讨论可以像人类对话一样自然延伸。在任意消息处创建新的对话分支,让您在保留原有上下文的同时,自由探索不同的对话方向。
132
+
133
+ 两种强大模式任您选择:
134
+
135
+ - **延续模式**:无缝延展当前讨论,保持宝贵的对话上下文
136
+ - **独立模式**:基于任意历史消息,开启全新话题探讨
137
+
138
+ 这项突破性功能将线性对话转变为动态的树状结构,让您能够更深入地探索想法,实现更高效的互动体验。
139
+
140
+ [![][back-to-top]](#readme-top)
141
+
142
+ [![][image-feat-artifacts]][docs-feat-artifacts]
143
+
144
+ ### `3` [支持白板 (Artifacts)][docs-feat-artifacts]
145
+
146
+ 体验集成于 LobeChat 的 Claude Artifacts 能力。这项革命性功能突破了 AI 人机交互的边界,让您能够实时创建和可视化各种格式的内容。
147
+
148
+ 以前所未有的灵活度进行创作与可视化:
149
+
150
+ - 生成并展示动态 SVG 图形
151
+ - 实时构建与渲染交互式 HTML 页面
152
+ - 输出多种格式的专业文档
153
+
154
+ [![][back-to-top]](#readme-top)
155
+
114
156
  [![][image-feat-knowledgebase]][docs-feat-knowledgebase]
115
157
 
116
- ### `1` [文件上传 / 知识库][docs-feat-knowledgebase]
158
+ ### `4` [文件上传 / 知识库][docs-feat-knowledgebase]
117
159
 
118
160
  LobeChat 支持文件上传与知识库功能,你可以上传文件、图片、音频、视频等多种类型的文件,以及创建知识库,方便用户管理和查找文件。同时在对话中使用文件和知识库功能,实现更加丰富的对话体验。
119
161
 
@@ -131,7 +173,7 @@ LobeChat 支持文件上传与知识库功能,你可以上传文件、图片
131
173
 
132
174
  [![][image-feat-privoder]][docs-feat-provider]
133
175
 
134
- ### `2` [多模型服务商支持][docs-feat-provider]
176
+ ### `5` [多模型服务商支持][docs-feat-provider]
135
177
 
136
178
  在 LobeChat 的不断发展过程中,我们深刻理解到在提供 AI 会话服务时模型服务商的多样性对于满足社区需求的重要性。因此,我们不再局限于单一的模型服务商,而是拓展了对多种模型服务商的支持,以便为用户提供更为丰富和多样化的会话选择。
137
179
 
@@ -199,7 +241,7 @@ LobeChat 支持文件上传与知识库功能,你可以上传文件、图片
199
241
 
200
242
  [![][image-feat-local]][docs-feat-local]
201
243
 
202
- ### `3` [支持本地大语言模型 (LLM)][docs-feat-local]
244
+ ### `6` [支持本地大语言模型 (LLM)][docs-feat-local]
203
245
 
204
246
  为了满足特定用户的需求,LobeChat 还基于 [Ollama](https://ollama.ai) 支持了本地模型的使用,让用户能够更灵活地使用自己的或第三方的模型。
205
247
 
@@ -215,7 +257,7 @@ LobeChat 支持文件上传与知识库功能,你可以上传文件、图片
215
257
 
216
258
  [![][image-feat-vision]][docs-feat-vision]
217
259
 
218
- ### `4` [模型视觉识别 (Model Visual)][docs-feat-vision]
260
+ ### `7` [模型视觉识别 (Model Visual)][docs-feat-vision]
219
261
 
220
262
  LobeChat 已经支持 OpenAI 最新的 [`gpt-4-vision`](https://platform.openai.com/docs/guides/vision) 支持视觉识别的模型,这是一个具备视觉识别能力的多模态应用。
221
263
  用户可以轻松上传图片或者拖拽图片到对话框中,助手将能够识别图片内容,并在此基础上进行智能对话,构建更智能、更多元化的聊天场景。
@@ -230,7 +272,7 @@ LobeChat 已经支持 OpenAI 最新的 [`gpt-4-vision`](https://platform.openai.
230
272
 
231
273
  [![][image-feat-tts]][docs-feat-tts]
232
274
 
233
- ### `5` [TTS & STT 语音会话][docs-feat-tts]
275
+ ### `8` [TTS & STT 语音会话][docs-feat-tts]
234
276
 
235
277
  LobeChat 支持文字转语音(Text-to-Speech,TTS)和语音转文字(Speech-to-Text,STT)技术,这使得我们的应用能够将文本信息转化为清晰的语音输出,用户可以像与真人交谈一样与我们的对话助手进行交流。
236
278
  用户可以从多种声音中选择,给助手搭配合适的音源。 同时,对于那些倾向于听觉学习或者想要在忙碌中获取信息的用户来说,TTS 提供了一个极佳的解决方案。
@@ -245,7 +287,7 @@ LobeChat 支持文字转语音(Text-to-Speech,TTS)和语音转文字(Spe
245
287
 
246
288
  [![][image-feat-t2i]][docs-feat-t2i]
247
289
 
248
- ### `6` [Text to Image 文生图][docs-feat-t2i]
290
+ ### `9` [Text to Image 文生图][docs-feat-t2i]
249
291
 
250
292
  支持最新的文本到图片生成技术,LobeChat 现在能够让用户在与助手对话中直接调用文生图工具进行创作。
251
293
  通过利用 [`DALL-E 3`](https://openai.com/dall-e-3)、[`MidJourney`](https://www.midjourney.com/) 和 [`Pollinations`](https://pollinations.ai/) 等 AI 工具的能力, 助手们现在可以将你的想法转化为图像。
@@ -259,7 +301,7 @@ LobeChat 支持文字转语音(Text-to-Speech,TTS)和语音转文字(Spe
259
301
 
260
302
  [![][image-feat-plugin]][docs-feat-plugin]
261
303
 
262
- ### `7` [插件系统 (Tools Calling)][docs-feat-plugin]
304
+ ### `10` [插件系统 (Tools Calling)][docs-feat-plugin]
263
305
 
264
306
  LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地增强了 ChatGPT 的实用性和灵活性。
265
307
 
@@ -292,7 +334,7 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
292
334
 
293
335
  [![][image-feat-agent]][docs-feat-agent]
294
336
 
295
- ### `8` [助手市场 (GPTs)][docs-feat-agent]
337
+ ### `11` [助手市场 (GPTs)][docs-feat-agent]
296
338
 
297
339
  在 LobeChat 的助手市场中,创作者们可以发现一个充满活力和创新的社区,它汇聚了众多精心设计的助手,这些助手不仅在工作场景中发挥着重要作用,也在学习过程中提供了极大的便利。
298
340
  我们的市场不仅是一个展示平台,更是一个协作的空间。在这里,每个人都可以贡献自己的智慧,分享个人开发的助手。
@@ -327,7 +369,7 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
327
369
 
328
370
  [![][image-feat-database]][docs-feat-database]
329
371
 
330
- ### `9` [支持本地 / 远程数据库][docs-feat-database]
372
+ ### `12` [支持本地 / 远程数据库][docs-feat-database]
331
373
 
332
374
  LobeChat 支持同时使用服务端数据库和本地数据库。根据您的需求,您可以选择合适的部署方案:
333
375
 
@@ -344,7 +386,7 @@ LobeChat 支持同时使用服务端数据库和本地数据库。根据您的
344
386
 
345
387
  [![][image-feat-auth]][docs-feat-auth]
346
388
 
347
- ### `10` [支持多用户管理][docs-feat-auth]
389
+ ### `13` [支持多用户管理][docs-feat-auth]
348
390
 
349
391
  LobeChat 支持多用户管理,提供了两种主要的用户认证和管理方案,以满足不同需求:
350
392
 
@@ -362,7 +404,7 @@ LobeChat 支持多用户管理,提供了两种主要的用户认证和管理
362
404
 
363
405
  [![][image-feat-pwa]][docs-feat-pwa]
364
406
 
365
- ### `11` [渐进式 Web 应用 (PWA)][docs-feat-pwa]
407
+ ### `14` [渐进式 Web 应用 (PWA)][docs-feat-pwa]
366
408
 
367
409
  我们深知在当今多设备环境下为用户提供无缝体验的重要性。为此,我们采用了渐进式 Web 应用 [PWA](https://support.google.com/chrome/answer/9658361) 技术,
368
410
  这是一种能够将网页应用提升至接近原生应用体验的现代 Web 技术。通过 PWA,LobeChat 能够在桌面和移动设备上提供高度优化的用户体验,同时保持轻量级和高性能的特点。
@@ -385,7 +427,7 @@ LobeChat 支持多用户管理,提供了两种主要的用户认证和管理
385
427
 
386
428
  [![][image-feat-mobile]][docs-feat-mobile]
387
429
 
388
- ### `12` [移动设备适配][docs-feat-mobile]
430
+ ### `15` [移动设备适配][docs-feat-mobile]
389
431
 
390
432
  针对移动设备进行了一系列的优化设计,以提升用户的移动体验。目前,我们正在对移动端的用户体验进行版本迭代,以实现更加流畅和直观的交互。如果您有任何建议或想法,我们非常欢迎您通过 GitHub Issues 或者 Pull Requests 提供反馈。
391
433
 
@@ -397,7 +439,7 @@ LobeChat 支持多用户管理,提供了两种主要的用户认证和管理
397
439
 
398
440
  [![][image-feat-theme]][docs-feat-theme]
399
441
 
400
- ### `13` [自定义主题][docs-feat-theme]
442
+ ### `16` [自定义主题][docs-feat-theme]
401
443
 
402
444
  作为设计工程师出身,LobeChat 在界面设计上充分考虑用户的个性化体验,因此引入了灵活多变的主题模式,其中包括日间的亮色模式和夜间的深色模式。
403
445
  除了主题模式的切换,还提供了一系列的颜色定制选项,允许用户根据自己的喜好来调整应用的主题色彩。无论是想要沉稳的深蓝,还是希望活泼的桃粉,或者是专业的灰白,用户都能够在 LobeChat 中找到匹配自己风格的颜色选择。
@@ -412,7 +454,7 @@ LobeChat 支持多用户管理,提供了两种主要的用户认证和管理
412
454
 
413
455
  </div>
414
456
 
415
- ### 更多特性
457
+ ### `*` 更多特性
416
458
 
417
459
  除了上述功能特性以外,LobeChat 所具有的设计和技术能力将为你带来更多使用保障:
418
460
 
@@ -782,7 +824,10 @@ This project is [Apache 2.0](./LICENSE) licensed.
782
824
  [docs-docker]: https://lobehub.com/docs/self-hosting/platform/docker
783
825
  [docs-env-var]: https://lobehub.com/docs/self-hosting/environment-variables
784
826
  [docs-feat-agent]: https://lobehub.com/docs/usage/features/agent-market
827
+ [docs-feat-artifacts]: https://lobehub.com/docs/usage/features/artifacts
785
828
  [docs-feat-auth]: https://lobehub.com/docs/usage/features/auth
829
+ [docs-feat-branch]: https://lobehub.com/docs/usage/features/branching-conversations
830
+ [docs-feat-cot]: https://lobehub.com/docs/usage/features/cot
786
831
  [docs-feat-database]: https://lobehub.com/docs/usage/features/database
787
832
  [docs-feat-knowledgebase]: https://lobehub.com/blog/knowledge-base
788
833
  [docs-feat-local]: https://lobehub.com/docs/usage/features/local-llm
@@ -826,22 +871,25 @@ This project is [Apache 2.0](./LICENSE) licensed.
826
871
  [github-stars-shield]: https://img.shields.io/github/stars/lobehub/lobe-chat?color=ffcb47&labelColor=black&style=flat-square
827
872
  [github-trending-shield]: https://trendshift.io/api/badge/repositories/2256
828
873
  [github-trending-url]: https://trendshift.io/repositories/2256
829
- [image-banner]: https://github.com/lobehub/lobe-chat/assets/28616219/9f155dff-4737-429f-9cad-a70a1a860c5f
830
- [image-feat-agent]: https://github-production-user-asset-6210df.s3.amazonaws.com/17870709/268670869-f1ffbf66-42b6-42cf-a937-9ce1f8328514.png
831
- [image-feat-auth]: https://github.com/lobehub/lobe-chat/assets/17870709/8ce70e15-40df-451e-b700-66090fe5b8c2
832
- [image-feat-database]: https://github.com/lobehub/lobe-chat/assets/17870709/c27a0234-a4e9-40e5-8bcb-42d5ce7e40f9
833
- [image-feat-knowledgebase]: https://github.com/user-attachments/assets/77e58e1c-c82f-4341-b159-f4eeede9967f
834
- [image-feat-local]: https://github.com/lobehub/lobe-chat/assets/28616219/ca9a21bc-ea6c-4c90-bf4a-fa53b4fb2b5c
835
- [image-feat-mobile]: https://gw.alipayobjects.com/zos/kitchen/R441AuFS4W/mobile.webp
836
- [image-feat-plugin]: https://github-production-user-asset-6210df.s3.amazonaws.com/17870709/268670883-33c43a5c-a512-467e-855c-fa299548cce5.png
837
- [image-feat-privoder]: https://github.com/lobehub/lobe-chat/assets/28616219/b164bc54-8ba2-4c1e-b2f2-f4d7f7e7a551
838
- [image-feat-pwa]: https://gw.alipayobjects.com/zos/kitchen/69x6bllkX3/pwa.webp
839
- [image-feat-t2i]: https://github-production-user-asset-6210df.s3.amazonaws.com/17870709/297746445-0ff762b9-aa08-4337-afb7-12f932b6efbb.png
840
- [image-feat-theme]: https://gw.alipayobjects.com/zos/kitchen/pvus1lo%26Z7/darkmode.webp
841
- [image-feat-tts]: https://github-production-user-asset-6210df.s3.amazonaws.com/17870709/284072124-c9853d8d-f1b5-44a8-a305-45ebc0f6d19a.png
842
- [image-feat-vision]: https://github-production-user-asset-6210df.s3.amazonaws.com/17870709/284072129-382bdf30-e3d6-4411-b5a0-249710b8ba08.png
874
+ [image-banner]: https://github.com/user-attachments/assets/6f293c7f-47b4-47eb-9202-fe68a942d35b
875
+ [image-feat-agent]: https://github.com/user-attachments/assets/b3ab6e35-4fbc-468d-af10-e3e0c687350f
876
+ [image-feat-artifacts]: https://github.com/user-attachments/assets/7f95fad6-b210-4e6e-84a0-7f39e96f3a00
877
+ [image-feat-auth]: https://github.com/user-attachments/assets/80bb232e-19d1-4f97-98d6-e291f3585e6d
878
+ [image-feat-branch]: https://github.com/user-attachments/assets/92f72082-02bd-4835-9c54-b089aad7fd41
879
+ [image-feat-cot]: https://github.com/user-attachments/assets/f74f1139-d115-4e9c-8c43-040a53797a5e
880
+ [image-feat-database]: https://github.com/user-attachments/assets/f1697c8b-d1fb-4dac-ba05-153c6295d91d
881
+ [image-feat-knowledgebase]: https://github.com/user-attachments/assets/7da7a3b2-92fd-4630-9f4e-8560c74955ae
882
+ [image-feat-local]: https://github.com/user-attachments/assets/1239da50-d832-4632-a7ef-bd754c0f3850
883
+ [image-feat-mobile]: https://github.com/user-attachments/assets/32cf43c4-96bd-4a4c-bfb6-59acde6fe380
884
+ [image-feat-plugin]: https://github.com/user-attachments/assets/66a891ac-01b6-4e3f-b978-2eb07b489b1b
885
+ [image-feat-privoder]: https://github.com/user-attachments/assets/e553e407-42de-4919-977d-7dbfcf44a821
886
+ [image-feat-pwa]: https://github.com/user-attachments/assets/9647f70f-b71b-43b6-9564-7cdd12d1c24d
887
+ [image-feat-t2i]: https://github.com/user-attachments/assets/708274a7-2458-494b-a6ec-b73dfa1fa7c2
888
+ [image-feat-theme]: https://github.com/user-attachments/assets/b47c39f1-806f-492b-8fcb-b0fa973937c1
889
+ [image-feat-tts]: https://github.com/user-attachments/assets/50189597-2cc3-4002-b4c8-756a52ad5c0a
890
+ [image-feat-vision]: https://github.com/user-attachments/assets/18574a1f-46c2-4cbc-af2c-35a86e128a07
843
891
  [image-overview]: https://github.com/lobehub/lobe-chat/assets/17870709/56b95d48-f573-41cd-8b38-387bf88bc4bf
844
- [image-star]: https://github.com/lobehub/lobe-chat/assets/17870709/cb06b748-513f-47c2-8740-d876858d7855
892
+ [image-star]: https://github.com/user-attachments/assets/c3b482e7-cef5-4e94-bef9-226900ecfaab
845
893
  [issues-link]: https://img.shields.io/github/issues/lobehub/lobe-chat.svg?style=flat
846
894
  [lobe-chat-plugins]: https://github.com/lobehub/lobe-chat-plugins
847
895
  [lobe-commit]: https://github.com/lobehub/lobe-commit/tree/master/packages/lobe-commit
package/changelog/v1.json CHANGED
@@ -1,4 +1,22 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "fixes": [
5
+ "Fix inbox agent edit way in the new mode."
6
+ ]
7
+ },
8
+ "date": "2025-02-16",
9
+ "version": "1.56.1"
10
+ },
11
+ {
12
+ "children": {
13
+ "features": [
14
+ "Add configurable PDF processing method with Unstructured."
15
+ ]
16
+ },
17
+ "date": "2025-02-15",
18
+ "version": "1.56.0"
19
+ },
2
20
  {
3
21
  "children": {
4
22
  "improvements": [