@lobehub/chat 1.9.4 → 1.9.5
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/config/modelProviders/bedrock.ts +24 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 1.9.5](https://github.com/lobehub/lobe-chat/compare/v1.9.4...v1.9.5)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-08-08**</sup>
|
|
8
|
+
|
|
9
|
+
#### 💄 Styles
|
|
10
|
+
|
|
11
|
+
- **misc**: Updated AWS bedrock model list.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### Styles
|
|
19
|
+
|
|
20
|
+
- **misc**: Updated AWS bedrock model list, closes [#3315](https://github.com/lobehub/lobe-chat/issues/3315) ([042f2d3](https://github.com/lobehub/lobe-chat/commit/042f2d3))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
5
30
|
### [Version 1.9.4](https://github.com/lobehub/lobe-chat/compare/v1.9.3...v1.9.4)
|
|
6
31
|
|
|
7
32
|
<sup>Released on **2024-08-06**</sup>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/chat",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.5",
|
|
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",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ModelProviderCard } from '@/types/llm';
|
|
2
2
|
|
|
3
3
|
// ref https://docs.aws.amazon.com/bedrock/latest/userguide/model-ids.html
|
|
4
|
+
// ref https://docs.aws.amazon.com/bedrock/latest/userguide/conversation-inference.html
|
|
4
5
|
const Bedrock: ModelProviderCard = {
|
|
5
6
|
chatModels: [
|
|
6
7
|
{
|
|
@@ -87,18 +88,33 @@ const Bedrock: ModelProviderCard = {
|
|
|
87
88
|
tokens: 100_000,
|
|
88
89
|
},
|
|
89
90
|
{
|
|
90
|
-
description: '
|
|
91
|
-
displayName: '
|
|
91
|
+
description: 'Mistral Large 2 128k',
|
|
92
|
+
displayName: 'Mistral Large 2',
|
|
92
93
|
enabled: true,
|
|
93
|
-
|
|
94
|
-
|
|
94
|
+
functionCall: true,
|
|
95
|
+
id: 'mistral.mistral-large-2407-v1:0',
|
|
96
|
+
tokens: 128_000,
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
description: 'Llama 3.1 405B Instruct (preview)',
|
|
100
|
+
displayName: 'Llama 3.1 405B Instruct (preview)',
|
|
101
|
+
enabled: true,
|
|
102
|
+
id: 'meta.llama3-405b-instruct-v1:0',
|
|
103
|
+
tokens: 128_000,
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
description: 'Llama 3.1 70B Instruct',
|
|
107
|
+
displayName: 'Llama 3.1 70B Instruct',
|
|
108
|
+
enabled: true,
|
|
109
|
+
id: 'meta.llama3-70b-instruct-v1:0',
|
|
110
|
+
tokens: 128_000,
|
|
95
111
|
},
|
|
96
112
|
{
|
|
97
|
-
description: 'Llama
|
|
98
|
-
displayName: 'Llama
|
|
113
|
+
description: 'Llama 3.1 8B Instruct',
|
|
114
|
+
displayName: 'Llama 3.1 8B Instruct',
|
|
99
115
|
enabled: true,
|
|
100
|
-
id: 'meta.
|
|
101
|
-
tokens:
|
|
116
|
+
id: 'meta.llama3-8b-instruct-v1:0',
|
|
117
|
+
tokens: 128_000,
|
|
102
118
|
},
|
|
103
119
|
],
|
|
104
120
|
checkModel: 'anthropic.claude-instant-v1',
|