@lobehub/chat 1.33.2 → 1.33.3
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 +25 -0
- package/package.json +1 -1
- package/src/services/chat.ts +0 -26
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.33.3](https://github.com/lobehub/lobe-chat/compare/v1.33.2...v1.33.3)
|
6
|
+
|
7
|
+
<sup>Released on **2024-11-25**</sup>
|
8
|
+
|
9
|
+
#### 🐛 Bug Fixes
|
10
|
+
|
11
|
+
- **misc**: Fix `fetchOnClient` functional for Moonshot.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### What's fixed
|
19
|
+
|
20
|
+
- **misc**: Fix `fetchOnClient` functional for Moonshot, closes [#4787](https://github.com/lobehub/lobe-chat/issues/4787) ([bef89a7](https://github.com/lobehub/lobe-chat/commit/bef89a7))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.33.2](https://github.com/lobehub/lobe-chat/compare/v1.33.1...v1.33.2)
|
6
31
|
|
7
32
|
<sup>Released on **2024-11-25**</sup>
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.33.
|
3
|
+
"version": "1.33.3",
|
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",
|
package/src/services/chat.ts
CHANGED
@@ -106,18 +106,12 @@ export function initializeWithClientStore(provider: string, payload: any) {
|
|
106
106
|
};
|
107
107
|
break;
|
108
108
|
}
|
109
|
-
case ModelProvider.ZhiPu: {
|
110
|
-
break;
|
111
|
-
}
|
112
109
|
case ModelProvider.Google: {
|
113
110
|
providerOptions = {
|
114
111
|
baseURL: providerAuthPayload?.endpoint,
|
115
112
|
};
|
116
113
|
break;
|
117
114
|
}
|
118
|
-
case ModelProvider.Moonshot: {
|
119
|
-
break;
|
120
|
-
}
|
121
115
|
case ModelProvider.Bedrock: {
|
122
116
|
if (providerAuthPayload?.apiKey) {
|
123
117
|
providerOptions = {
|
@@ -142,20 +136,12 @@ export function initializeWithClientStore(provider: string, payload: any) {
|
|
142
136
|
};
|
143
137
|
break;
|
144
138
|
}
|
145
|
-
case ModelProvider.Qwen: {
|
146
|
-
break;
|
147
|
-
}
|
148
|
-
|
149
139
|
case ModelProvider.Anthropic: {
|
150
140
|
providerOptions = {
|
151
141
|
baseURL: providerAuthPayload?.endpoint,
|
152
142
|
};
|
153
143
|
break;
|
154
144
|
}
|
155
|
-
|
156
|
-
case ModelProvider.Mistral: {
|
157
|
-
break;
|
158
|
-
}
|
159
145
|
case ModelProvider.Groq: {
|
160
146
|
providerOptions = {
|
161
147
|
apikey: providerAuthPayload?.apiKey,
|
@@ -163,18 +149,6 @@ export function initializeWithClientStore(provider: string, payload: any) {
|
|
163
149
|
};
|
164
150
|
break;
|
165
151
|
}
|
166
|
-
case ModelProvider.DeepSeek: {
|
167
|
-
break;
|
168
|
-
}
|
169
|
-
case ModelProvider.OpenRouter: {
|
170
|
-
break;
|
171
|
-
}
|
172
|
-
case ModelProvider.TogetherAI: {
|
173
|
-
break;
|
174
|
-
}
|
175
|
-
case ModelProvider.ZeroOne: {
|
176
|
-
break;
|
177
|
-
}
|
178
152
|
case ModelProvider.Cloudflare: {
|
179
153
|
providerOptions = {
|
180
154
|
apikey: providerAuthPayload?.apiKey,
|