@lobehub/chat 1.65.1 → 1.66.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/CHANGELOG.md +51 -0
- package/changelog/v1.json +18 -0
- package/docker-compose/local/docker-compose.yml +14 -0
- package/docker-compose/local/searxng-settings.yml +2582 -0
- package/docker-compose/setup.sh +3 -1
- package/docs/self-hosting/advanced/model-list.mdx +4 -2
- package/docs/self-hosting/advanced/model-list.zh-CN.mdx +4 -2
- package/package.json +7 -7
- package/src/config/aiModels/ai360.ts +4 -0
- package/src/config/aiModels/baichuan.ts +16 -0
- package/src/config/aiModels/google.ts +3 -3
- package/src/config/aiModels/groq.ts +10 -0
- package/src/config/aiModels/hunyuan.ts +40 -0
- package/src/config/aiModels/moonshot.ts +32 -0
- package/src/config/aiModels/qwen.ts +43 -26
- package/src/config/aiModels/spark.ts +30 -0
- package/src/config/aiModels/stepfun.ts +44 -0
- package/src/config/aiModels/zhipu.ts +36 -0
- package/src/features/Conversation/Messages/Assistant/Tool/Render/CustomRender.tsx +7 -7
- package/src/features/MobileSwitchLoading/index.tsx +0 -1
- package/src/libs/agent-runtime/ai360/index.ts +15 -2
- package/src/libs/agent-runtime/baichuan/index.ts +14 -4
- package/src/libs/agent-runtime/hunyuan/index.ts +18 -0
- package/src/libs/agent-runtime/minimax/index.ts +2 -11
- package/src/libs/agent-runtime/moonshot/index.ts +13 -4
- package/src/libs/agent-runtime/qwen/index.ts +4 -0
- package/src/libs/agent-runtime/stepfun/index.ts +15 -2
- package/src/libs/agent-runtime/zhipu/index.ts +19 -7
- package/src/utils/parseModels.test.ts +14 -0
- package/src/utils/parseModels.ts +4 -0
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,57 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
## [Version 1.66.0](https://github.com/lobehub/lobe-chat/compare/v1.65.2...v1.66.0)
|
6
|
+
|
7
|
+
<sup>Released on **2025-02-27**</sup>
|
8
|
+
|
9
|
+
#### ✨ Features
|
10
|
+
|
11
|
+
- **misc**: Add online search support for available providers.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### What's improved
|
19
|
+
|
20
|
+
- **misc**: Add online search support for available providers, closes [#6475](https://github.com/lobehub/lobe-chat/issues/6475) ([cb0a3bc](https://github.com/lobehub/lobe-chat/commit/cb0a3bc))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
30
|
+
### [Version 1.65.2](https://github.com/lobehub/lobe-chat/compare/v1.65.1...v1.65.2)
|
31
|
+
|
32
|
+
<sup>Released on **2025-02-27**</sup>
|
33
|
+
|
34
|
+
#### 💄 Styles
|
35
|
+
|
36
|
+
- **misc**: Support parsing the search flag when parsing the model list, Update Gemini & Qwen models.
|
37
|
+
|
38
|
+
<br/>
|
39
|
+
|
40
|
+
<details>
|
41
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
42
|
+
|
43
|
+
#### Styles
|
44
|
+
|
45
|
+
- **misc**: Support parsing the search flag when parsing the model list, closes [#6546](https://github.com/lobehub/lobe-chat/issues/6546) ([8c768ed](https://github.com/lobehub/lobe-chat/commit/8c768ed))
|
46
|
+
- **misc**: Update Gemini & Qwen models, closes [#6531](https://github.com/lobehub/lobe-chat/issues/6531) ([efde928](https://github.com/lobehub/lobe-chat/commit/efde928))
|
47
|
+
|
48
|
+
</details>
|
49
|
+
|
50
|
+
<div align="right">
|
51
|
+
|
52
|
+
[](#readme-top)
|
53
|
+
|
54
|
+
</div>
|
55
|
+
|
5
56
|
### [Version 1.65.1](https://github.com/lobehub/lobe-chat/compare/v1.65.0...v1.65.1)
|
6
57
|
|
7
58
|
<sup>Released on **2025-02-26**</sup>
|
package/changelog/v1.json
CHANGED
@@ -1,4 +1,22 @@
|
|
1
1
|
[
|
2
|
+
{
|
3
|
+
"children": {
|
4
|
+
"features": [
|
5
|
+
"Add online search support for available providers."
|
6
|
+
]
|
7
|
+
},
|
8
|
+
"date": "2025-02-27",
|
9
|
+
"version": "1.66.0"
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"children": {
|
13
|
+
"improvements": [
|
14
|
+
"Support parsing the search flag when parsing the model list, Update Gemini & Qwen models."
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"date": "2025-02-27",
|
18
|
+
"version": "1.65.2"
|
19
|
+
},
|
2
20
|
{
|
3
21
|
"children": {
|
4
22
|
"fixes": [
|
@@ -76,6 +76,19 @@ services:
|
|
76
76
|
env_file:
|
77
77
|
- .env
|
78
78
|
|
79
|
+
searxng:
|
80
|
+
image: searxng/searxng
|
81
|
+
container_name: lobe-searxng
|
82
|
+
volumes:
|
83
|
+
- './searxng-settings.yml:/etc/searxng/settings.yml'
|
84
|
+
environment:
|
85
|
+
- 'SEARXNG_SETTINGS_FILE=/etc/searxng/settings.yml'
|
86
|
+
restart: always
|
87
|
+
networks:
|
88
|
+
- lobe-network
|
89
|
+
env_file:
|
90
|
+
- .env
|
91
|
+
|
79
92
|
lobe:
|
80
93
|
image: lobehub/lobe-chat-database
|
81
94
|
container_name: lobe-chat
|
@@ -102,6 +115,7 @@ services:
|
|
102
115
|
- 'S3_SECRET_ACCESS_KEY=${MINIO_ROOT_PASSWORD}'
|
103
116
|
- 'LLM_VISION_IMAGE_USE_BASE64=1'
|
104
117
|
- 'S3_SET_ACL=0'
|
118
|
+
- 'SEARXNG_URL=http://searxng:8080'
|
105
119
|
env_file:
|
106
120
|
- .env
|
107
121
|
restart: always
|