@lobehub/chat 1.65.1 → 1.65.2

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,32 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.65.2](https://github.com/lobehub/lobe-chat/compare/v1.65.1...v1.65.2)
6
+
7
+ <sup>Released on **2025-02-27**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Support parsing the search flag when parsing the model list, Update Gemini & Qwen models.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **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))
21
+ - **misc**: Update Gemini & Qwen models, closes [#6531](https://github.com/lobehub/lobe-chat/issues/6531) ([efde928](https://github.com/lobehub/lobe-chat/commit/efde928))
22
+
23
+ </details>
24
+
25
+ <div align="right">
26
+
27
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
28
+
29
+ </div>
30
+
5
31
  ### [Version 1.65.1](https://github.com/lobehub/lobe-chat/compare/v1.65.0...v1.65.1)
6
32
 
7
33
  <sup>Released on **2025-02-26**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,13 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "improvements": [
5
+ "Support parsing the search flag when parsing the model list, Update Gemini & Qwen models."
6
+ ]
7
+ },
8
+ "date": "2025-02-27",
9
+ "version": "1.65.2"
10
+ },
2
11
  {
3
12
  "children": {
4
13
  "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