@lobehub/chat 1.36.21 → 1.36.22
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 +17 -0
- package/Dockerfile +7 -4
- package/Dockerfile.database +6 -1
- package/changelog/v1.json +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,23 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.36.22](https://github.com/lobehub/lobe-chat/compare/v1.36.21...v1.36.22)
|
6
|
+
|
7
|
+
<sup>Released on **2024-12-13**</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.36.21](https://github.com/lobehub/lobe-chat/compare/v1.36.20...v1.36.21)
|
6
23
|
|
7
24
|
<sup>Released on **2024-12-13**</sup>
|
package/Dockerfile
CHANGED
@@ -1,5 +1,8 @@
|
|
1
|
+
## Set global build ENV
|
2
|
+
ARG NODEJS_VERSION="22"
|
3
|
+
|
1
4
|
## Base image for all building stages
|
2
|
-
FROM node
|
5
|
+
FROM node:${NODEJS_VERSION}-slim AS base
|
3
6
|
|
4
7
|
ARG USE_CN_MIRROR
|
5
8
|
|
@@ -166,6 +169,8 @@ ENV \
|
|
166
169
|
GOOGLE_API_KEY="" GOOGLE_MODEL_LIST="" GOOGLE_PROXY_URL="" \
|
167
170
|
# Groq
|
168
171
|
GROQ_API_KEY="" GROQ_MODEL_LIST="" GROQ_PROXY_URL="" \
|
172
|
+
# Higress
|
173
|
+
HIGRESS_API_KEY="" HIGRESS_MODEL_LIST="" HIGRESS_PROXY_URL="" \
|
169
174
|
# HuggingFace
|
170
175
|
HUGGINGFACE_API_KEY="" HUGGINGFACE_MODEL_LIST="" HUGGINGFACE_PROXY_URL="" \
|
171
176
|
# Hunyuan
|
@@ -211,9 +216,7 @@ ENV \
|
|
211
216
|
# 01.AI
|
212
217
|
ZEROONE_API_KEY="" ZEROONE_MODEL_LIST="" \
|
213
218
|
# Zhipu
|
214
|
-
ZHIPU_API_KEY="" ZHIPU_MODEL_LIST=""
|
215
|
-
# Higress
|
216
|
-
HIGRESS_API_KEY="" HIGRESS_MODEL_LIST=""
|
219
|
+
ZHIPU_API_KEY="" ZHIPU_MODEL_LIST=""
|
217
220
|
|
218
221
|
USER nextjs
|
219
222
|
|
package/Dockerfile.database
CHANGED
@@ -1,5 +1,8 @@
|
|
1
|
+
## Set global build ENV
|
2
|
+
ARG NODEJS_VERSION="22"
|
3
|
+
|
1
4
|
## Base image for all building stages
|
2
|
-
FROM node
|
5
|
+
FROM node:${NODEJS_VERSION}-slim AS base
|
3
6
|
|
4
7
|
ARG USE_CN_MIRROR
|
5
8
|
|
@@ -201,6 +204,8 @@ ENV \
|
|
201
204
|
GOOGLE_API_KEY="" GOOGLE_MODEL_LIST="" GOOGLE_PROXY_URL="" \
|
202
205
|
# Groq
|
203
206
|
GROQ_API_KEY="" GROQ_MODEL_LIST="" GROQ_PROXY_URL="" \
|
207
|
+
# Higress
|
208
|
+
HIGRESS_API_KEY="" HIGRESS_MODEL_LIST="" HIGRESS_PROXY_URL="" \
|
204
209
|
# HuggingFace
|
205
210
|
HUGGINGFACE_API_KEY="" HUGGINGFACE_MODEL_LIST="" HUGGINGFACE_PROXY_URL="" \
|
206
211
|
# Hunyuan
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.36.
|
3
|
+
"version": "1.36.22",
|
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",
|