@lobehub/chat 1.15.24 → 1.15.25
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.
Potentially problematic release.
This version of @lobehub/chat might be problematic. Click here for more details.
- package/CHANGELOG.md +17 -0
- package/Dockerfile +10 -3
- package/Dockerfile.database +7 -0
- package/README.md +2 -2
- package/README.zh-CN.md +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,23 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.15.25](https://github.com/lobehub/lobe-chat/compare/v1.15.24...v1.15.25)
|
6
|
+
|
7
|
+
<sup>Released on **2024-09-09**</sup>
|
8
|
+
|
9
|
+
<br/>
|
10
|
+
|
11
|
+
<details>
|
12
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
13
|
+
|
14
|
+
</details>
|
15
|
+
|
16
|
+
<div align="right">
|
17
|
+
|
18
|
+
[](#readme-top)
|
19
|
+
|
20
|
+
</div>
|
21
|
+
|
5
22
|
### [Version 1.15.24](https://github.com/lobehub/lobe-chat/compare/v1.15.23...v1.15.24)
|
6
23
|
|
7
24
|
<sup>Released on **2024-09-09**</sup>
|
package/Dockerfile
CHANGED
@@ -63,8 +63,8 @@ RUN \
|
|
63
63
|
# Install the dependencies
|
64
64
|
&& pnpm i \
|
65
65
|
# Add sharp dependencies
|
66
|
-
&& mkdir -p /
|
67
|
-
&& pnpm add sharp --prefix /
|
66
|
+
&& mkdir -p /deps \
|
67
|
+
&& pnpm add sharp --prefix /deps
|
68
68
|
|
69
69
|
COPY . .
|
70
70
|
|
@@ -80,7 +80,7 @@ COPY --from=builder /app/public /app/public
|
|
80
80
|
# https://nextjs.org/docs/advanced-features/output-file-tracing
|
81
81
|
COPY --from=builder /app/.next/standalone /app/
|
82
82
|
COPY --from=builder /app/.next/static /app/.next/static
|
83
|
-
COPY --from=builder /
|
83
|
+
COPY --from=builder /deps/node_modules/.pnpm /app/node_modules/.pnpm
|
84
84
|
|
85
85
|
## Production image, copy all the files and run next
|
86
86
|
FROM base
|
@@ -188,5 +188,12 @@ CMD \
|
|
188
188
|
"$protocol $host $port" \
|
189
189
|
> "/etc/proxychains/proxychains.conf"; \
|
190
190
|
fi; \
|
191
|
+
# Fix DNS resolving issue in Docker Compose, ref https://github.com/lobehub/lobe-chat/pull/3837
|
192
|
+
if [ -f "/etc/resolv.conf" ]; then \
|
193
|
+
resolv_conf=$(grep '^nameserver' "/etc/resolv.conf" | awk '{print "nameserver " $2}'); \
|
194
|
+
printf "%s\n" \
|
195
|
+
"$resolv_conf" \
|
196
|
+
> "/etc/resolv.conf"; \
|
197
|
+
fi; \
|
191
198
|
# Run the server
|
192
199
|
${PROXYCHAINS} node "/app/server.js";
|
package/Dockerfile.database
CHANGED
@@ -220,6 +220,13 @@ CMD \
|
|
220
220
|
"$protocol $host $port" \
|
221
221
|
> "/etc/proxychains/proxychains.conf"; \
|
222
222
|
fi; \
|
223
|
+
# Fix DNS resolving issue in Docker Compose, ref https://github.com/lobehub/lobe-chat/pull/3837
|
224
|
+
if [ -f "/etc/resolv.conf" ]; then \
|
225
|
+
resolv_conf=$(grep '^nameserver' "/etc/resolv.conf" | awk '{print "nameserver " $2}'); \
|
226
|
+
printf "%s\n" \
|
227
|
+
"$resolv_conf" \
|
228
|
+
> "/etc/resolv.conf"; \
|
229
|
+
fi; \
|
223
230
|
# Run migration
|
224
231
|
node "/app/docker.cjs"; \
|
225
232
|
if [ "$?" -eq "0" ]; then \
|
package/README.md
CHANGED
@@ -251,9 +251,9 @@ In addition, these plugins are not limited to news aggregation, but can also ext
|
|
251
251
|
| [Tongyi wanxiang Image Generator](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **YoungTx** on **2024-08-09**</sup> | This plugin uses Alibaba's Tongyi Wanxiang model to generate images based on text prompts.<br/>`image` `tongyi` `wanxiang` |
|
252
252
|
| [Shopping tools](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **shoppingtools** on **2024-07-19**</sup> | Search for products on eBay & AliExpress, find eBay events & coupons. Get prompt examples.<br/>`shopping` `e-bay` `ali-express` `coupons` |
|
253
253
|
| [Savvy Trader AI](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **savvytrader** on **2024-06-27**</sup> | Realtime stock, crypto and other investment data.<br/>`stock` `analyze` |
|
254
|
-
| [
|
254
|
+
| [Search1API](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **fatwang2** on **2024-05-06**</sup> | Search aggregation service, specifically designed for LLMs<br/>`web` `search` |
|
255
255
|
|
256
|
-
> 📊 Total plugins: [<kbd>**
|
256
|
+
> 📊 Total plugins: [<kbd>**50**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
|
257
257
|
|
258
258
|
<!-- PLUGIN LIST -->
|
259
259
|
|
package/README.zh-CN.md
CHANGED
@@ -243,9 +243,9 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
|
|
243
243
|
| [通义万象图像生成器](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **YoungTx** on **2024-08-09**</sup> | 此插件使用阿里巴巴的通义万象模型根据文本提示生成图像。<br/>`图像` `通义` `万象` |
|
244
244
|
| [购物工具](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **shoppingtools** on **2024-07-19**</sup> | 在 eBay 和 AliExpress 上搜索产品,查找 eBay 活动和优惠券。获取快速示例。<br/>`购物` `e-bay` `ali-express` `优惠券` |
|
245
245
|
| [Savvy Trader AI](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **savvytrader** on **2024-06-27**</sup> | 实时股票、加密货币和其他投资数据。<br/>`股票` `分析` |
|
246
|
-
| [
|
246
|
+
| [Search1API](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **fatwang2** on **2024-05-06**</sup> | 搜索聚合服务,专为 LLMs 设计<br/>`web` `search` |
|
247
247
|
|
248
|
-
> 📊 Total plugins: [<kbd>**
|
248
|
+
> 📊 Total plugins: [<kbd>**50**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
|
249
249
|
|
250
250
|
<!-- PLUGIN LIST -->
|
251
251
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.15.
|
3
|
+
"version": "1.15.25",
|
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",
|