@lobehub/chat 1.39.2 → 1.40.0
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/.env.example +19 -8
- package/.eslintignore +1 -1
- package/CHANGELOG.md +58 -0
- package/changelog/v1.json +21 -0
- package/docs/.cdn.cache.json +25 -0
- package/docs/changelog/2023-09-09-plugin-system.mdx +1 -1
- package/docs/changelog/2023-09-09-plugin-system.zh-CN.mdx +1 -1
- package/docs/changelog/2024-09-20-artifacts.mdx +1 -1
- package/docs/changelog/2024-09-20-artifacts.zh-CN.mdx +1 -1
- package/docs/changelog/2024-10-27-pin-assistant.mdx +2 -2
- package/docs/changelog/2024-10-27-pin-assistant.zh-CN.mdx +2 -2
- package/docs/changelog/2024-11-06-share-text-json.mdx +2 -2
- package/docs/changelog/2024-11-06-share-text-json.zh-CN.mdx +2 -2
- package/docs/changelog/index.json +16 -16
- package/locales/ar/changelog.json +18 -0
- package/locales/ar/common.json +1 -0
- package/locales/ar/metadata.json +4 -0
- package/locales/bg-BG/changelog.json +18 -0
- package/locales/bg-BG/common.json +1 -0
- package/locales/bg-BG/metadata.json +4 -0
- package/locales/de-DE/changelog.json +18 -0
- package/locales/de-DE/common.json +1 -0
- package/locales/de-DE/metadata.json +4 -0
- package/locales/en-US/changelog.json +18 -0
- package/locales/en-US/common.json +1 -0
- package/locales/en-US/metadata.json +4 -0
- package/locales/es-ES/changelog.json +18 -0
- package/locales/es-ES/common.json +1 -0
- package/locales/es-ES/metadata.json +4 -0
- package/locales/fa-IR/changelog.json +18 -0
- package/locales/fa-IR/common.json +1 -0
- package/locales/fa-IR/metadata.json +4 -0
- package/locales/fr-FR/changelog.json +18 -0
- package/locales/fr-FR/common.json +1 -0
- package/locales/fr-FR/metadata.json +4 -0
- package/locales/it-IT/changelog.json +18 -0
- package/locales/it-IT/common.json +1 -0
- package/locales/it-IT/metadata.json +4 -0
- package/locales/ja-JP/changelog.json +18 -0
- package/locales/ja-JP/common.json +1 -0
- package/locales/ja-JP/metadata.json +4 -0
- package/locales/ko-KR/changelog.json +18 -0
- package/locales/ko-KR/common.json +1 -0
- package/locales/ko-KR/metadata.json +4 -0
- package/locales/nl-NL/changelog.json +18 -0
- package/locales/nl-NL/common.json +1 -0
- package/locales/nl-NL/metadata.json +4 -0
- package/locales/pl-PL/changelog.json +18 -0
- package/locales/pl-PL/common.json +1 -0
- package/locales/pl-PL/metadata.json +4 -0
- package/locales/pt-BR/changelog.json +18 -0
- package/locales/pt-BR/common.json +1 -0
- package/locales/pt-BR/metadata.json +4 -0
- package/locales/ru-RU/changelog.json +18 -0
- package/locales/ru-RU/common.json +1 -0
- package/locales/ru-RU/metadata.json +4 -0
- package/locales/tr-TR/changelog.json +18 -0
- package/locales/tr-TR/common.json +1 -0
- package/locales/tr-TR/metadata.json +4 -0
- package/locales/vi-VN/changelog.json +18 -0
- package/locales/vi-VN/common.json +1 -0
- package/locales/vi-VN/metadata.json +4 -0
- package/locales/zh-CN/changelog.json +18 -0
- package/locales/zh-CN/common.json +1 -0
- package/locales/zh-CN/metadata.json +4 -0
- package/locales/zh-TW/changelog.json +18 -0
- package/locales/zh-TW/common.json +1 -0
- package/locales/zh-TW/metadata.json +4 -0
- package/package.json +6 -1
- package/scripts/cdnWorkflow/index.ts +217 -0
- package/scripts/cdnWorkflow/optimized.ts +21 -0
- package/scripts/cdnWorkflow/s3/index.ts +120 -0
- package/scripts/cdnWorkflow/s3/types.ts +25 -0
- package/scripts/cdnWorkflow/s3/utils.ts +106 -0
- package/scripts/cdnWorkflow/uploader.ts +73 -0
- package/scripts/cdnWorkflow/utils.ts +93 -0
- package/src/app/(main)/(mobile)/me/(home)/__tests__/useCategory.test.tsx +25 -12
- package/src/app/(main)/(mobile)/me/(home)/features/useCategory.tsx +19 -9
- package/src/app/(main)/(mobile)/me/(home)/loading.tsx +1 -1
- package/src/app/(main)/(mobile)/me/data/loading.tsx +1 -1
- package/src/app/(main)/(mobile)/me/profile/loading.tsx +1 -1
- package/src/app/(main)/(mobile)/me/settings/loading.tsx +1 -1
- package/src/app/(main)/_layout/Desktop.tsx +4 -1
- package/src/app/(main)/_layout/Mobile.tsx +2 -1
- package/src/app/(main)/changelog/_layout/Desktop.tsx +25 -0
- package/src/app/(main)/changelog/_layout/Mobile/Header.tsx +33 -0
- package/src/app/(main)/changelog/_layout/Mobile/index.tsx +21 -0
- package/src/app/(main)/changelog/error.tsx +5 -0
- package/src/app/(main)/changelog/features/GridLayout.tsx +22 -0
- package/src/app/(main)/changelog/features/Hero.tsx +40 -0
- package/src/app/(main)/changelog/features/Post.tsx +56 -0
- package/src/app/(main)/changelog/features/PublishedTime.tsx +50 -0
- package/src/app/(main)/changelog/features/VersionTag.tsx +27 -0
- package/src/app/(main)/changelog/layout.tsx +10 -0
- package/src/app/(main)/changelog/loading.tsx +3 -0
- package/src/app/(main)/changelog/modal/page.tsx +23 -0
- package/src/app/(main)/changelog/not-found.tsx +3 -0
- package/src/app/(main)/changelog/page.tsx +73 -0
- package/src/app/(main)/chat/(workspace)/@portal/default.tsx +1 -1
- package/src/app/(main)/chat/(workspace)/@portal/loading.tsx +1 -1
- package/src/app/(main)/chat/(workspace)/page.tsx +9 -2
- package/src/app/(main)/chat/@session/default.tsx +3 -2
- package/src/app/(main)/chat/loading.tsx +1 -1
- package/src/app/(main)/chat/settings/loading.tsx +1 -1
- package/src/app/(main)/discover/loading.tsx +1 -1
- package/src/app/(main)/files/loading.tsx +2 -22
- package/src/app/(main)/profile/loading.tsx +1 -1
- package/src/app/(main)/repos/[id]/evals/dataset/page.tsx +1 -1
- package/src/app/(main)/repos/[id]/evals/evaluation/page.tsx +1 -1
- package/src/app/(main)/settings/@category/default.tsx +6 -2
- package/src/app/(main)/settings/_layout/Desktop/SideBar.tsx +1 -1
- package/src/app/(main)/settings/about/features/Version.tsx +2 -2
- package/src/app/(main)/settings/loading.tsx +2 -8
- package/src/app/@modal/(.)changelog/modal/features/Cover.tsx +48 -0
- package/src/app/@modal/(.)changelog/modal/features/Hero.tsx +29 -0
- package/src/app/@modal/(.)changelog/modal/features/Pagination.tsx +54 -0
- package/src/app/@modal/(.)changelog/modal/features/Post.tsx +57 -0
- package/src/app/@modal/(.)changelog/modal/features/PublishedTime.tsx +50 -0
- package/src/app/@modal/(.)changelog/modal/features/ReadDetail.tsx +94 -0
- package/src/app/@modal/(.)changelog/modal/features/UpdateChangelogStatus.tsx +21 -0
- package/src/app/@modal/(.)changelog/modal/features/VersionTag.tsx +27 -0
- package/src/app/@modal/(.)changelog/modal/layout.tsx +39 -0
- package/src/app/@modal/(.)changelog/modal/loading.tsx +10 -0
- package/src/app/@modal/(.)changelog/modal/page.tsx +37 -0
- package/src/app/@modal/(.)settings/modal/layout.tsx +19 -16
- package/src/app/@modal/_layout/ModalLayout.tsx +63 -0
- package/src/app/@modal/chat/(.)settings/modal/layout.tsx +20 -17
- package/src/app/@modal/layout.tsx +5 -69
- package/src/app/loading/Client/Content.tsx +1 -1
- package/src/app/loading/Server/Content.tsx +1 -1
- package/src/components/Loading/BrandTextLoading/LobeChatText/SVG.tsx +44 -0
- package/src/components/Loading/BrandTextLoading/LobeChatText/index.tsx +6 -0
- package/src/components/Loading/BrandTextLoading/LobeChatText/style.css +32 -0
- package/src/components/Loading/BrandTextLoading/index.tsx +11 -0
- package/src/components/{SkeletonLoading → Loading/SkeletonLoading}/index.tsx +1 -1
- package/src/components/mdx/Image.tsx +50 -0
- package/src/components/mdx/index.tsx +2 -0
- package/src/const/url.ts +1 -0
- package/src/features/ChangelogModal/index.tsx +22 -0
- package/src/features/FileViewer/Renderer/TXT/index.tsx +1 -1
- package/src/features/Portal/FilePreview/Body/index.tsx +1 -1
- package/src/features/Portal/Home/Body/Files/FileList/index.tsx +1 -1
- package/src/features/Setting/Footer.tsx +3 -1
- package/src/features/Setting/SettingContainer.tsx +1 -0
- package/src/features/User/UserPanel/useMenu.tsx +50 -46
- package/src/features/User/__tests__/useMenu.test.tsx +7 -6
- package/src/hooks/useInterceptingRoutes.ts +1 -6
- package/src/hooks/useShare.tsx +1 -0
- package/src/locales/default/changelog.ts +18 -0
- package/src/locales/default/common.ts +1 -0
- package/src/locales/default/index.ts +2 -0
- package/src/locales/default/metadata.ts +4 -0
- package/src/server/metadata.ts +5 -3
- package/src/server/routers/edge/appStatus.ts +3 -0
- package/src/server/routers/edge/index.ts +2 -0
- package/src/server/routers/lambda/agent.ts +1 -1
- package/src/server/services/changelog/index.test.ts +310 -0
- package/src/server/services/changelog/index.ts +196 -0
- package/src/server/services/discover/index.test.ts +0 -1
- package/src/server/sitemap.ts +4 -1
- package/src/services/__tests__/chat.test.ts +1 -1
- package/src/services/__tests__/global.test.ts +5 -2
- package/src/services/_auth.ts +1 -1
- package/src/services/agent.ts +25 -21
- package/src/services/chat.ts +2 -2
- package/src/services/file/ClientS3/index.ts +6 -6
- package/src/services/file/client.ts +14 -15
- package/src/services/file/server.ts +20 -25
- package/src/services/global.ts +2 -2
- package/src/services/import/client.ts +6 -5
- package/src/services/import/server.ts +6 -5
- package/src/services/import/type.ts +7 -0
- package/src/services/knowledgeBase.ts +19 -19
- package/src/services/message/_deprecated.ts +5 -0
- package/src/services/message/client.ts +52 -48
- package/src/services/message/server.ts +50 -53
- package/src/services/message/type.ts +2 -2
- package/src/services/plugin/client.ts +16 -22
- package/src/services/plugin/server.ts +15 -19
- package/src/services/rag.ts +18 -18
- package/src/services/ragEval.ts +29 -26
- package/src/services/session/_deprecated.ts +2 -2
- package/src/services/session/client.ts +55 -81
- package/src/services/session/server.ts +50 -74
- package/src/services/session/type.ts +4 -6
- package/src/services/share.ts +4 -4
- package/src/services/textToImage.ts +5 -2
- package/src/services/thread/client.ts +9 -15
- package/src/services/thread/server.ts +10 -15
- package/src/services/topic/client.ts +25 -25
- package/src/services/topic/server.ts +25 -42
- package/src/services/trace.ts +4 -4
- package/src/services/user/client.ts +13 -17
- package/src/services/user/server.ts +9 -13
- package/src/services/user/type.ts +1 -1
- package/src/store/chat/slices/message/reducer.ts +3 -2
- package/src/store/global/action.ts +27 -22
- package/src/store/global/initialState.ts +1 -0
- package/src/types/changelog.ts +6 -0
- package/src/types/message/index.ts +10 -8
- package/src/app/@modal/features/InterceptingContext.tsx +0 -9
- /package/src/components/{CircleLoading → Loading/CircleLoading}/index.tsx +0 -0
- /package/src/components/{FullscreenLoading → Loading/FullscreenLoading}/index.tsx +0 -0
package/.env.example
CHANGED
|
@@ -139,23 +139,34 @@ OPENAI_API_KEY=sk-xxxxxxxxx
|
|
|
139
139
|
# the format is `plugin-identifier:key1=value1;key2=value2`, multiple settings fields are separated by semicolons `;`, multiple plugin settings are separated by commas `,`.
|
|
140
140
|
# PLUGIN_SETTINGS=search-engine:SERPAPI_API_KEY=xxxxx
|
|
141
141
|
|
|
142
|
+
########################################
|
|
143
|
+
####### Doc / Changelog Service ########
|
|
144
|
+
########################################
|
|
145
|
+
|
|
146
|
+
# Use in Changelog / Document service cdn url prefix
|
|
147
|
+
# DOC_S3_PUBLIC_DOMAIN=https://xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
148
|
+
|
|
149
|
+
# Use in dev cdn workflow
|
|
150
|
+
# DOC_S3_ACCESS_KEY_ID=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
151
|
+
# DOC_S3_SECRET_ACCESS_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
152
|
+
|
|
142
153
|
|
|
143
154
|
########################################
|
|
144
155
|
##### S3 Object Storage Service ########
|
|
145
156
|
########################################
|
|
146
157
|
|
|
147
158
|
# S3 keys
|
|
148
|
-
#S3_ACCESS_KEY_ID=
|
|
149
|
-
#S3_SECRET_ACCESS_KEY=
|
|
159
|
+
# S3_ACCESS_KEY_ID=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
160
|
+
# S3_SECRET_ACCESS_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
150
161
|
|
|
151
162
|
# Bucket name
|
|
152
|
-
#S3_BUCKET=lobechat
|
|
163
|
+
# S3_BUCKET=lobechat
|
|
153
164
|
|
|
154
165
|
# Bucket request endpoint
|
|
155
|
-
#S3_ENDPOINT=https://
|
|
166
|
+
# S3_ENDPOINT=https://xxxxxxxxxxxxxxxxxxxxxxxxxxxxx.r2.cloudflarestorage.com
|
|
156
167
|
|
|
157
168
|
# Public access domain for the bucket
|
|
158
|
-
#S3_PUBLIC_DOMAIN=https://s3-for-lobechat.your-domain.com
|
|
169
|
+
# S3_PUBLIC_DOMAIN=https://s3-for-lobechat.your-domain.com
|
|
159
170
|
|
|
160
171
|
# Bucket region, such as us-west-1, generally not needed to add
|
|
161
172
|
# but some service providers may require configuration
|
|
@@ -190,11 +201,11 @@ OPENAI_API_KEY=sk-xxxxxxxxx
|
|
|
190
201
|
########################################
|
|
191
202
|
|
|
192
203
|
# Specify the service mode as server if you want to use the server database
|
|
193
|
-
#NEXT_PUBLIC_SERVICE_MODE=server
|
|
204
|
+
# NEXT_PUBLIC_SERVICE_MODE=server
|
|
194
205
|
|
|
195
206
|
# Postgres database URL
|
|
196
|
-
#DATABASE_URL=postgres://username:password@host:port/database
|
|
207
|
+
# DATABASE_URL=postgres://username:password@host:port/database
|
|
197
208
|
|
|
198
209
|
# use `openssl rand -base64 32` to generate a key for the encryption of the database
|
|
199
210
|
# we use this key to encrypt the user api key
|
|
200
|
-
#KEY_VAULTS_SECRET=xxxxx/xxxxxxxxxxxxxx=
|
|
211
|
+
# KEY_VAULTS_SECRET=xxxxx/xxxxxxxxxxxxxx=
|
package/.eslintignore
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,64 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
## [Version 1.40.0](https://github.com/lobehub/lobe-chat/compare/v1.39.3...v1.40.0)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-12-26**</sup>
|
|
8
|
+
|
|
9
|
+
#### ♻ Code Refactoring
|
|
10
|
+
|
|
11
|
+
- **misc**: Refactor services code style.
|
|
12
|
+
|
|
13
|
+
#### ✨ Features
|
|
14
|
+
|
|
15
|
+
- **misc**: Add changelog modal.
|
|
16
|
+
|
|
17
|
+
<br/>
|
|
18
|
+
|
|
19
|
+
<details>
|
|
20
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
21
|
+
|
|
22
|
+
#### Code refactoring
|
|
23
|
+
|
|
24
|
+
- **misc**: Refactor services code style, closes [#5180](https://github.com/lobehub/lobe-chat/issues/5180) ([e98ece8](https://github.com/lobehub/lobe-chat/commit/e98ece8))
|
|
25
|
+
|
|
26
|
+
#### What's improved
|
|
27
|
+
|
|
28
|
+
- **misc**: Add changelog modal, closes [#4800](https://github.com/lobehub/lobe-chat/issues/4800) ([df3ac87](https://github.com/lobehub/lobe-chat/commit/df3ac87))
|
|
29
|
+
|
|
30
|
+
</details>
|
|
31
|
+
|
|
32
|
+
<div align="right">
|
|
33
|
+
|
|
34
|
+
[](#readme-top)
|
|
35
|
+
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
### [Version 1.39.3](https://github.com/lobehub/lobe-chat/compare/v1.39.2...v1.39.3)
|
|
39
|
+
|
|
40
|
+
<sup>Released on **2024-12-25**</sup>
|
|
41
|
+
|
|
42
|
+
#### 💄 Styles
|
|
43
|
+
|
|
44
|
+
- **misc**: Improve loading brand.
|
|
45
|
+
|
|
46
|
+
<br/>
|
|
47
|
+
|
|
48
|
+
<details>
|
|
49
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
50
|
+
|
|
51
|
+
#### Styles
|
|
52
|
+
|
|
53
|
+
- **misc**: Improve loading brand, closes [#5165](https://github.com/lobehub/lobe-chat/issues/5165) ([9684c98](https://github.com/lobehub/lobe-chat/commit/9684c98))
|
|
54
|
+
|
|
55
|
+
</details>
|
|
56
|
+
|
|
57
|
+
<div align="right">
|
|
58
|
+
|
|
59
|
+
[](#readme-top)
|
|
60
|
+
|
|
61
|
+
</div>
|
|
62
|
+
|
|
5
63
|
### [Version 1.39.2](https://github.com/lobehub/lobe-chat/compare/v1.39.1...v1.39.2)
|
|
6
64
|
|
|
7
65
|
<sup>Released on **2024-12-25**</sup>
|
package/changelog/v1.json
CHANGED
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"children": {
|
|
4
|
+
"improvements": [
|
|
5
|
+
"Refactor services code style."
|
|
6
|
+
],
|
|
7
|
+
"features": [
|
|
8
|
+
"Add changelog modal."
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
"date": "2024-12-26",
|
|
12
|
+
"version": "1.40.0"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"children": {
|
|
16
|
+
"improvements": [
|
|
17
|
+
"Improve loading brand."
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
"date": "2024-12-25",
|
|
21
|
+
"version": "1.39.3"
|
|
22
|
+
},
|
|
2
23
|
{
|
|
3
24
|
"children": {
|
|
4
25
|
"improvements": [
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"https://github.com/lobehub/lobe-chat/assets/28616219/f29475a3-f346-4196-a435-41a6373ab9e2": "/blog/assets/28616219/f29475a3-f346-4196-a435-41a6373ab9e2.mp4",
|
|
3
|
+
"https://github.com/user-attachments/assets/03433283-08a5-481a-8f6c-069b2fc6bace": "/blog/assets/8d4c2cc0ce8654fa8ac06cc036a7f941.webp",
|
|
4
|
+
"https://github.com/user-attachments/assets/0e3a7174-6b66-4432-a319-dff60b033c24": "/blog/assets/39d7890f8cbe21e77db8d3c94f7f22e4.webp",
|
|
5
|
+
"https://github.com/user-attachments/assets/2048b4c2-4a56-4029-acf9-71e35ff08652": "/blog/assets/d9cbfcbef130183bc490d515d8a38aa4.webp",
|
|
6
|
+
"https://github.com/user-attachments/assets/2787824c-a13c-466c-ba6f-820bddfe099f": "/blog/assets/8d6c17a6ea5e784edf4449fb18ca3f76.webp",
|
|
7
|
+
"https://github.com/user-attachments/assets/29508dda-2382-430f-bc81-fb23f02149f8": "/blog/assets/29b13dc042e3b839ad8865354afe2fac.webp",
|
|
8
|
+
"https://github.com/user-attachments/assets/2a4116a7-15ad-43e5-b801-cc62d8da2012": "/blog/assets/37d85fdfccff9ed56e9c6827faee01c7.webp",
|
|
9
|
+
"https://github.com/user-attachments/assets/385eaca6-daea-484a-9bea-ba7270b4753d": "/blog/assets/d6129350de510a62fe87b2d2f0fb9477.webp",
|
|
10
|
+
"https://github.com/user-attachments/assets/484f28f4-017c-4ed7-948b-4a8d51f0b63a": "/blog/assets/5bbb4b421d6df63780b3c7a05f5a102d.webp",
|
|
11
|
+
"https://github.com/user-attachments/assets/533f7a5e-8a93-4a57-a62f-8233897d72b5": "/blog/assets/9498087e85f27e692716a63cb3b58d79.webp",
|
|
12
|
+
"https://github.com/user-attachments/assets/6069332b-8e15-4d3c-8a77-479e8bc09c23": "/blog/assets/603fefbb944bc6761ebdab5956fc0084.webp",
|
|
13
|
+
"https://github.com/user-attachments/assets/635f1c74-6327-48a8-a8d9-68d7376c7749": "/blog/assets/f6d047a345e47a52592cff916c9a64ce.webp",
|
|
14
|
+
"https://github.com/user-attachments/assets/639ed70b-abc5-476f-9eb0-10c739e5a115": "/blog/assets/b2845057b23bccfec3bfea90e43ac381.webp",
|
|
15
|
+
"https://github.com/user-attachments/assets/6935e155-4a1d-4ab7-a61a-2b813d65bb7b": "/blog/assets/6ee2609d79281b6b915e317461013f31.webp",
|
|
16
|
+
"https://github.com/user-attachments/assets/82bfc467-e0c6-4d99-9b1f-18e4aea24285": "/blog/assets/eb477e62217f4d1b644eff975c7ac168.webp",
|
|
17
|
+
"https://github.com/user-attachments/assets/aee846d5-b5ee-46cb-9dd0-d952ea708b67": "/blog/assets/8a8d361b4c0cce6da350cc0de65c0ad6.webp",
|
|
18
|
+
"https://github.com/user-attachments/assets/bd6d0c82-8f14-4167-ad09-2a841f1e34e4": "/blog/assets/d7e57f8e69f97b76b3c2414f3441b6e4.webp",
|
|
19
|
+
"https://github.com/user-attachments/assets/c68e88e4-cf2e-4122-82bc-89ba193b1eb4": "/blog/assets/1f6c4f1c5e6211735ca4924c7807aca1.webp",
|
|
20
|
+
"https://github.com/user-attachments/assets/dde2c9c5-cdda-4a65-8f32-b6f4da907df2": "/blog/assets/d47654360d626f80144cdedb979a3526.webp",
|
|
21
|
+
"https://github.com/user-attachments/assets/e70c2db6-05c9-43ea-b111-6f6f99e0ae88": "/blog/assets/944c671604833cd2457445b211ebba33.webp",
|
|
22
|
+
"https://github.com/user-attachments/assets/eaed3762-136f-4297-b161-ca92a27c4982": "/blog/assets/50b38eac1769ae6f13aef72f3d725eec.webp",
|
|
23
|
+
"https://github.com/user-attachments/assets/eb3f3d8a-79ce-40aa-a206-2c846206c0c0": "/blog/assets/f10a4b98782e36797c38071eed785c6f.webp",
|
|
24
|
+
"https://github.com/user-attachments/assets/fa8fab19-ace2-4f85-8428-a3a0e28845bb": "/blog/assets/2d678631c55369ba7d753c3ffcb73782.webp"
|
|
25
|
+
}
|
|
@@ -10,7 +10,7 @@ description: >-
|
|
|
10
10
|
|
|
11
11
|
The LobeChat plugin ecosystem is a significant extension of its core functionalities, greatly enhancing the utility and flexibility of the LobeChat assistant.
|
|
12
12
|
|
|
13
|
-
<Video src="https://
|
|
13
|
+
<Video src="https://github.com/lobehub/lobe-chat/assets/28616219/f29475a3-f346-4196-a435-41a6373ab9e2" />
|
|
14
14
|
|
|
15
15
|
By leveraging plugins, the LobeChat assistants are capable of accessing and processing real-time information, such as searching online for data and providing users with timely and relevant insights.
|
|
16
16
|
|
|
@@ -7,7 +7,7 @@ description: 了解 LobeChat 插件生态系统如何增强 LobeChat 助手的
|
|
|
7
7
|
|
|
8
8
|
LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地增强了 LobeChat 助手的实用性和灵活性。
|
|
9
9
|
|
|
10
|
-
<Video src="https://
|
|
10
|
+
<Video src="https://github.com/lobehub/lobe-chat/assets/28616219/f29475a3-f346-4196-a435-41a6373ab9e2" />
|
|
11
11
|
|
|
12
12
|
通过利用插件,LobeChat 的助手们能够实现实时信息的获取和处理,例如搜索网络信息,为用户提供即时且相关的资讯。
|
|
13
13
|
|
|
@@ -20,7 +20,7 @@ In this version, we have nearly fully replicated the core features of Claude Art
|
|
|
20
20
|
|
|
21
21
|
It is worth mentioning that the Python code execution feature has also been developed and will be available in future versions. At that time, users will be able to utilize both Claude Artifacts and OpenAI Code Interpreter, significantly enhancing the practicality of the AI assistant.
|
|
22
22
|
|
|
23
|
-

|
|
24
24
|
|
|
25
25
|
## 🔍 New Discovery Page: Explore More Possibilities
|
|
26
26
|
|
|
@@ -19,7 +19,7 @@ description: >-
|
|
|
19
19
|
|
|
20
20
|
值得一提的是,Python 代码执行功能也已完成开发,将在后续版本中与大家见面。届时,用户将能够同时运用 Claude Artifacts 和 OpenAI Code Interpreter 这两大强大工具,极大提升 AI 助手的实用性。
|
|
21
21
|
|
|
22
|
-

|
|
23
23
|
|
|
24
24
|
## 🔍 全新发现页面:探索更多可能
|
|
25
25
|
|
|
@@ -16,9 +16,9 @@ In version v1.26.0, we are excited to introduce a long-awaited new feature — t
|
|
|
16
16
|
- **Space Optimization**: Activating the sidebar automatically hides the conversation list, providing you with a larger conversation area.
|
|
17
17
|
- **Intelligent Display**: Automatically syncs pinned assistants to the sidebar, ensuring that important assistants are always within view.
|
|
18
18
|
|
|
19
|
-

|
|
20
20
|
|
|
21
|
-

|
|
22
22
|
|
|
23
23
|
## How to Use
|
|
24
24
|
|
|
@@ -13,9 +13,9 @@ description: LobeChat v1.26.0 推出助手常驻侧边栏功能,支持快捷
|
|
|
13
13
|
- **空间优化**:激活侧边栏时会自动隐藏会话列表,为您腾出更大的对话空间
|
|
14
14
|
- **智能显示**:将置顶助手自动同步到侧边栏,让重要助手始终在视线范围内
|
|
15
15
|
|
|
16
|
-

|
|
17
17
|
|
|
18
|
-

|
|
19
19
|
|
|
20
20
|
## 如何使用
|
|
21
21
|
|
|
@@ -13,11 +13,11 @@ In the latest version v1.28.0, we have launched the text format export feature f
|
|
|
13
13
|
|
|
14
14
|
The Markdown export feature meets users' needs for directly using conversation content in note-taking and document writing. You can easily save valuable conversation content and manage it across various note-taking applications for reuse.
|
|
15
15
|
|
|
16
|
-

|
|
17
17
|
|
|
18
18
|
Additionally, we support exporting conversations in JSON format that complies with OpenAI messages specifications. This format can be used directly for API debugging and serves as high-quality training data for models.
|
|
19
19
|
|
|
20
|
-

|
|
21
21
|
|
|
22
22
|
It is particularly noteworthy that we retain the original data of Tools Calling within the conversation, which is crucial for enhancing the model's tool invocation capabilities.
|
|
23
23
|
|
|
@@ -11,11 +11,11 @@ description: >-
|
|
|
11
11
|
|
|
12
12
|
Markdown 格式导出功能满足了用户将对话内容直接用于笔记和文档撰写的需求。您可以轻松地将有价值的对话内容保存下来,并在各类笔记软件中进行管理和复用。
|
|
13
13
|
|
|
14
|
-

|
|
15
15
|
|
|
16
16
|
同时,我们还支持将对话导出为符合 OpenAI messages 规范的 JSON 格式。这种格式不仅可以直接用于 API 调试,还能作为高质量的模型训练语料。
|
|
17
17
|
|
|
18
|
-

|
|
19
19
|
|
|
20
20
|
特别值得一提的是,我们会完整保留对话中的 Tools Calling 原始数据,这对提升模型的工具调用能力具有重要价值。
|
|
21
21
|
|
|
@@ -3,97 +3,97 @@
|
|
|
3
3
|
"cloud": [],
|
|
4
4
|
"community": [
|
|
5
5
|
{
|
|
6
|
-
"image": "https://
|
|
6
|
+
"image": "https://github.com/user-attachments/assets/2048b4c2-4a56-4029-acf9-71e35ff08652",
|
|
7
7
|
"id": "2024-11-27-forkable-chat",
|
|
8
8
|
"date": "2024-11-27",
|
|
9
9
|
"versionRange": ["1.34.0", "1.33.1"]
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
|
-
"image": "https://
|
|
12
|
+
"image": "https://github.com/user-attachments/assets/fa8fab19-ace2-4f85-8428-a3a0e28845bb",
|
|
13
13
|
"id": "2024-11-25-november-providers",
|
|
14
14
|
"date": "2024-11-25",
|
|
15
15
|
"versionRange": ["1.33.0", "1.30.1"]
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
|
-
"image": "https://
|
|
18
|
+
"image": "https://github.com/user-attachments/assets/eb3f3d8a-79ce-40aa-a206-2c846206c0c0",
|
|
19
19
|
"id": "2024-11-06-share-text-json",
|
|
20
20
|
"date": "2024-11-06",
|
|
21
21
|
"versionRange": ["1.28.0", "1.26.1"]
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
|
-
"image": "https://
|
|
24
|
+
"image": "https://github.com/user-attachments/assets/e70c2db6-05c9-43ea-b111-6f6f99e0ae88",
|
|
25
25
|
"id": "2024-10-27-pin-assistant",
|
|
26
26
|
"date": "2024-10-27",
|
|
27
27
|
"versionRange": ["1.26.0", "1.19.1"]
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
|
-
"image": "https://
|
|
30
|
+
"image": "https://github.com/user-attachments/assets/635f1c74-6327-48a8-a8d9-68d7376c7749",
|
|
31
31
|
"id": "2024-09-20-artifacts",
|
|
32
32
|
"date": "2024-09-20",
|
|
33
33
|
"versionRange": ["1.19.0", "1.17.1"]
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
|
-
"image": "https://
|
|
36
|
+
"image": "https://github.com/user-attachments/assets/bd6d0c82-8f14-4167-ad09-2a841f1e34e4",
|
|
37
37
|
"id": "2024-09-13-openai-o1-models",
|
|
38
38
|
"date": "2024-09-13",
|
|
39
39
|
"versionRange": ["1.17.0", "1.12.1"]
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
|
-
"image": "https://
|
|
42
|
+
"image": "https://github.com/user-attachments/assets/385eaca6-daea-484a-9bea-ba7270b4753d",
|
|
43
43
|
"id": "2024-08-21-file-upload-and-knowledge-base",
|
|
44
44
|
"date": "2024-08-21",
|
|
45
45
|
"versionRange": ["1.12.0", "1.8.1"]
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
|
-
"image": "https://
|
|
48
|
+
"image": "https://github.com/user-attachments/assets/2a4116a7-15ad-43e5-b801-cc62d8da2012",
|
|
49
49
|
"id": "2024-08-02-lobe-chat-database-docker",
|
|
50
50
|
"date": "2024-08-02",
|
|
51
51
|
"versionRange": ["1.8.0", "1.6.1"]
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
|
-
"image": "https://
|
|
54
|
+
"image": "https://github.com/user-attachments/assets/0e3a7174-6b66-4432-a319-dff60b033c24",
|
|
55
55
|
"id": "2024-07-19-gpt-4o-mini",
|
|
56
56
|
"date": "2024-07-19",
|
|
57
57
|
"versionRange": ["1.6.0", "1.0.1"]
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
|
-
"image": "https://
|
|
60
|
+
"image": "https://github.com/user-attachments/assets/82bfc467-e0c6-4d99-9b1f-18e4aea24285",
|
|
61
61
|
"id": "2024-06-19-lobe-chat-v1",
|
|
62
62
|
"date": "2024-06-19",
|
|
63
63
|
"versionRange": ["1.0.0", "0.147.0"]
|
|
64
64
|
},
|
|
65
65
|
{
|
|
66
|
-
"image": "https://
|
|
66
|
+
"image": "https://github.com/user-attachments/assets/aee846d5-b5ee-46cb-9dd0-d952ea708b67",
|
|
67
67
|
"id": "2024-02-14-ollama",
|
|
68
68
|
"date": "2024-02-14",
|
|
69
69
|
"versionRange": ["0.127.0", "0.125.1"]
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
|
-
"image": "https://
|
|
72
|
+
"image": "https://github.com/user-attachments/assets/533f7a5e-8a93-4a57-a62f-8233897d72b5",
|
|
73
73
|
"id": "2024-02-08-sso-oauth",
|
|
74
74
|
"date": "2024-02-08",
|
|
75
75
|
"versionRange": ["0.125.0", "0.118.1"]
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
|
-
"image": "https://
|
|
78
|
+
"image": "https://github.com/user-attachments/assets/6069332b-8e15-4d3c-8a77-479e8bc09c23",
|
|
79
79
|
"id": "2023-12-22-dalle-3",
|
|
80
80
|
"date": "2023-12-22",
|
|
81
81
|
"versionRange": ["0.118.0", "0.102.1"]
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
|
-
"image": "https://
|
|
84
|
+
"image": "https://github.com/user-attachments/assets/03433283-08a5-481a-8f6c-069b2fc6bace",
|
|
85
85
|
"id": "2023-11-19-tts-stt",
|
|
86
86
|
"date": "2023-11-19",
|
|
87
87
|
"versionRange": ["0.102.0", "0.101.1"]
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
|
-
"image": "https://
|
|
90
|
+
"image": "https://github.com/user-attachments/assets/dde2c9c5-cdda-4a65-8f32-b6f4da907df2",
|
|
91
91
|
"id": "2023-11-14-gpt4-vision",
|
|
92
92
|
"date": "2023-11-14",
|
|
93
93
|
"versionRange": ["0.101.0", "0.90.0"]
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
|
-
"image": "https://
|
|
96
|
+
"image": "https://github.com/user-attachments/assets/eaed3762-136f-4297-b161-ca92a27c4982",
|
|
97
97
|
"id": "2023-09-09-plugin-system",
|
|
98
98
|
"date": "2023-09-09",
|
|
99
99
|
"versionRange": ["0.72.0", "0.67.0"]
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": {
|
|
3
|
+
"followOnX": "تابعنا على X",
|
|
4
|
+
"subscribeToUpdates": "اشترك في التحديثات",
|
|
5
|
+
"versions": "تفاصيل الإصدار"
|
|
6
|
+
},
|
|
7
|
+
"addedWhileAway": "لقد أضفنا ميزات جديدة أثناء غيابك.",
|
|
8
|
+
"allChangelog": "عرض جميع سجلات التحديثات",
|
|
9
|
+
"description": "تابع الميزات الجديدة والتحسينات في {{appName}}",
|
|
10
|
+
"pagination": {
|
|
11
|
+
"older": "عرض التغييرات السابقة",
|
|
12
|
+
"prev": "الصفحة السابقة"
|
|
13
|
+
},
|
|
14
|
+
"readDetails": "اقرأ التفاصيل",
|
|
15
|
+
"title": "سجل التحديثات",
|
|
16
|
+
"versionDetails": "تفاصيل الإصدار",
|
|
17
|
+
"welcomeBack": "مرحبًا بعودتك!"
|
|
18
|
+
}
|
package/locales/ar/common.json
CHANGED
package/locales/ar/metadata.json
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
+
"changelog": {
|
|
3
|
+
"description": "تابع الميزات الجديدة والتحسينات في {{appName}} باستمرار",
|
|
4
|
+
"title": "سجل التحديثات"
|
|
5
|
+
},
|
|
2
6
|
"chat": {
|
|
3
7
|
"description": "{{appName}} يقدم لك أفضل تجربة لاستخدام ChatGPT وClaude وGemini وOLLaMA WebUI",
|
|
4
8
|
"title": "{{appName}}: أداة الذكاء الاصطناعي الشخصية، امنح نفسك دماغًا أكثر ذكاءً"
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": {
|
|
3
|
+
"followOnX": "Последвайте ни в X",
|
|
4
|
+
"subscribeToUpdates": "Абонирайте се за актуализации",
|
|
5
|
+
"versions": "Детайли за версиите"
|
|
6
|
+
},
|
|
7
|
+
"addedWhileAway": "Докато ви нямаше, добавихме нови функции.",
|
|
8
|
+
"allChangelog": "Вижте всички актуализации",
|
|
9
|
+
"description": "Следете новите функции и подобрения на {{appName}}",
|
|
10
|
+
"pagination": {
|
|
11
|
+
"older": "Преглед на историческите промени",
|
|
12
|
+
"prev": "Предишна страница"
|
|
13
|
+
},
|
|
14
|
+
"readDetails": "Прочетете подробности",
|
|
15
|
+
"title": "Актуализации",
|
|
16
|
+
"versionDetails": "Детайли за версиите",
|
|
17
|
+
"welcomeBack": "Добре дошли обратно!"
|
|
18
|
+
}
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
+
"changelog": {
|
|
3
|
+
"description": "Непрекъснато следене на новите функции и подобрения в {{appName}}",
|
|
4
|
+
"title": "Журнал на промените"
|
|
5
|
+
},
|
|
2
6
|
"chat": {
|
|
3
7
|
"description": "{{appName}} ви предлага най-доброто изживяване с ChatGPT, Claude, Gemini и OLLaMA WebUI",
|
|
4
8
|
"title": "{{appName}}: Личен AI инструмент за ефективност, дайте си по-умен мозък"
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": {
|
|
3
|
+
"followOnX": "Folgen Sie uns auf X",
|
|
4
|
+
"subscribeToUpdates": "Abonnieren Sie Updates",
|
|
5
|
+
"versions": "Versionsdetails"
|
|
6
|
+
},
|
|
7
|
+
"addedWhileAway": "Wir haben neue Funktionen hinzugefügt, während Sie weg waren.",
|
|
8
|
+
"allChangelog": "Alle Änderungsprotokolle anzeigen",
|
|
9
|
+
"description": "Verfolgen Sie die neuen Funktionen und Verbesserungen von {{appName}} kontinuierlich",
|
|
10
|
+
"pagination": {
|
|
11
|
+
"older": "Ältere Änderungen anzeigen",
|
|
12
|
+
"prev": "Vorherige Seite"
|
|
13
|
+
},
|
|
14
|
+
"readDetails": "Details lesen",
|
|
15
|
+
"title": "Änderungsprotokoll",
|
|
16
|
+
"versionDetails": "Versionsdetails",
|
|
17
|
+
"welcomeBack": "Willkommen zurück!"
|
|
18
|
+
}
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
+
"changelog": {
|
|
3
|
+
"description": "Verfolgen Sie kontinuierlich die neuen Funktionen und Verbesserungen von {{appName}}",
|
|
4
|
+
"title": "Änderungsprotokoll"
|
|
5
|
+
},
|
|
2
6
|
"chat": {
|
|
3
7
|
"description": "{{appName}} bietet dir das beste Erlebnis mit ChatGPT, Claude, Gemini und OLLaMA WebUI",
|
|
4
8
|
"title": "{{appName}}: Persönliches KI-Effizienzwerkzeug, gib dir selbst ein schlaueres Gehirn"
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": {
|
|
3
|
+
"followOnX": "Follow us on X",
|
|
4
|
+
"subscribeToUpdates": "Subscribe for updates",
|
|
5
|
+
"versions": "Version details"
|
|
6
|
+
},
|
|
7
|
+
"addedWhileAway": "We've introduced new features while you were away.",
|
|
8
|
+
"allChangelog": "View all changelogs",
|
|
9
|
+
"description": "Stay updated on the new features and improvements of {{appName}}",
|
|
10
|
+
"pagination": {
|
|
11
|
+
"older": "View Historical Changes",
|
|
12
|
+
"prev": "Previous Page"
|
|
13
|
+
},
|
|
14
|
+
"readDetails": "Read details",
|
|
15
|
+
"title": "Changelog",
|
|
16
|
+
"versionDetails": "Version details",
|
|
17
|
+
"welcomeBack": "Welcome back!"
|
|
18
|
+
}
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
+
"changelog": {
|
|
3
|
+
"description": "Stay updated on the new features and improvements of {{appName}}",
|
|
4
|
+
"title": "Changelog"
|
|
5
|
+
},
|
|
2
6
|
"chat": {
|
|
3
7
|
"description": "{{appName}} brings you the best UI experience for ChatGPT, Claude, Gemini, and OLLaMA.",
|
|
4
8
|
"title": "{{appName}}: Your personal AI productivity tool for a smarter brain."
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": {
|
|
3
|
+
"followOnX": "Síguenos en X",
|
|
4
|
+
"subscribeToUpdates": "Suscríbete a las actualizaciones",
|
|
5
|
+
"versions": "Detalles de la versión"
|
|
6
|
+
},
|
|
7
|
+
"addedWhileAway": "Hemos traído nuevas características mientras estabas ausente.",
|
|
8
|
+
"allChangelog": "Ver todos los registros de cambios",
|
|
9
|
+
"description": "Sigue las nuevas funciones y mejoras de {{appName}}",
|
|
10
|
+
"pagination": {
|
|
11
|
+
"older": "Ver cambios anteriores",
|
|
12
|
+
"prev": "Página anterior"
|
|
13
|
+
},
|
|
14
|
+
"readDetails": "Leer detalles",
|
|
15
|
+
"title": "Registro de cambios",
|
|
16
|
+
"versionDetails": "Detalles de la versión",
|
|
17
|
+
"welcomeBack": "¡Bienvenido de nuevo!"
|
|
18
|
+
}
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
+
"changelog": {
|
|
3
|
+
"description": "Sigue las nuevas funciones y mejoras de {{appName}}",
|
|
4
|
+
"title": "Registro de cambios"
|
|
5
|
+
},
|
|
2
6
|
"chat": {
|
|
3
7
|
"description": "{{appName}} te ofrece la mejor experiencia de uso de ChatGPT, Claude, Gemini y OLLaMA WebUI",
|
|
4
8
|
"title": "{{appName}}: Herramienta de productividad personal de IA, dale a tu cerebro un impulso más inteligente"
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": {
|
|
3
|
+
"followOnX": "ما را در X دنبال کنید",
|
|
4
|
+
"subscribeToUpdates": "برای دریافت بهروزرسانیها مشترک شوید",
|
|
5
|
+
"versions": "جزئیات نسخه"
|
|
6
|
+
},
|
|
7
|
+
"addedWhileAway": "در زمان غیبت شما، ویژگیهای جدیدی اضافه کردیم.",
|
|
8
|
+
"allChangelog": "تمام تغییرات را مشاهده کنید",
|
|
9
|
+
"description": "بهروزرسانیهای جدید و بهبودهای {{appName}} را دنبال کنید",
|
|
10
|
+
"pagination": {
|
|
11
|
+
"older": "مشاهده تغییرات قبلی",
|
|
12
|
+
"prev": "صفحه قبلی"
|
|
13
|
+
},
|
|
14
|
+
"readDetails": "جزئیات را بخوانید",
|
|
15
|
+
"title": "تغییرات",
|
|
16
|
+
"versionDetails": "جزئیات نسخه",
|
|
17
|
+
"welcomeBack": "خوش آمدید!"
|
|
18
|
+
}
|