@lobehub/chat 0.133.3 → 0.133.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 0.133.4](https://github.com/lobehub/lobe-chat/compare/v0.133.3...v0.133.4)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-03-11**</sup>
|
|
8
|
+
|
|
9
|
+
#### 🐛 Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **misc**: Fix sitemap missing in docker building.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### What's fixed
|
|
19
|
+
|
|
20
|
+
- **misc**: Fix sitemap missing in docker building, closes [#1533](https://github.com/lobehub/lobe-chat/issues/1533) ([49752da](https://github.com/lobehub/lobe-chat/commit/49752da))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
5
30
|
### [Version 0.133.3](https://github.com/lobehub/lobe-chat/compare/v0.133.2...v0.133.3)
|
|
6
31
|
|
|
7
32
|
<sup>Released on **2024-03-10**</sup>
|
|
@@ -8,6 +8,7 @@ import { Callout } from 'nextra/components';
|
|
|
8
8
|
|
|
9
9
|
<Image
|
|
10
10
|
alt={'Assistant Market'}
|
|
11
|
+
cover
|
|
11
12
|
src={
|
|
12
13
|
'https://github-production-user-asset-6210df.s3.amazonaws.com/17870709/268670869-f1ffbf66-42b6-42cf-a937-9ce1f8328514.png'
|
|
13
14
|
}
|
|
@@ -38,6 +39,4 @@ In LobeChat's Assistant Market, creators can discover a vibrant and innovative c
|
|
|
38
39
|
| [Self-media Operation Expert](https://chat-preview.lobehub.com/market?agent=gl-zmtyy)<br /><sup>By **[guling-io](https://github.com/guling-io)** on **2024-02-14**</sup> | Proficient in self-media operation and content creation<br />`Self-media operation` `Social media` `Content creation` `Fan growth` `Brand promotion` |
|
|
39
40
|
| [Product Description](https://chat-preview.lobehub.com/market?agent=product-description)<br /><sup>By **[pllz7](https://github.com/pllz7)** on **2024-02-14**</sup> | Create captivating product descriptions to improve e-commerce sales performance<br />`E-commerce` |
|
|
40
41
|
|
|
41
|
-
> 📊 Total agents: [<kbd>**177**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
|
|
42
|
-
|
|
43
|
-
[submit-agents-link]: https://github.com/lobehub/lobe-chat-agents
|
|
42
|
+
> 📊 Total agents: [<kbd>**177**</kbd> ](https://github.com/lobehub/lobe-chat-agents)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/chat",
|
|
3
|
-
"version": "0.133.
|
|
3
|
+
"version": "0.133.4",
|
|
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",
|
|
@@ -27,9 +27,10 @@
|
|
|
27
27
|
"sideEffects": false,
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "next build",
|
|
30
|
-
"postbuild": "
|
|
30
|
+
"postbuild": "npm run build-sitemap",
|
|
31
|
+
"build-sitemap": "next-sitemap --config next-sitemap.config.mjs",
|
|
31
32
|
"build:analyze": "ANALYZE=true next build",
|
|
32
|
-
"build:docker": "DOCKER=true next build",
|
|
33
|
+
"build:docker": "DOCKER=true next build && npm run build-sitemap",
|
|
33
34
|
"dev": "next dev -p 3010",
|
|
34
35
|
"docs": "lobe-i18n md && npm run workflow:docs",
|
|
35
36
|
"i18n": "npm run workflow:i18n && lobe-i18n",
|