@lobehub/chat 0.148.1 → 0.148.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,31 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 0.148.2](https://github.com/lobehub/lobe-chat/compare/v0.148.1...v0.148.2)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-04-21**</sup>
|
|
8
|
+
|
|
9
|
+
#### 💄 Styles
|
|
10
|
+
|
|
11
|
+
- **misc**: Add LLaMA 3 in groq + Mixtral 8x22B model.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### Styles
|
|
19
|
+
|
|
20
|
+
- **misc**: Add LLaMA 3 in groq + Mixtral 8x22B model, closes [#2128](https://github.com/lobehub/lobe-chat/issues/2128) ([6144448](https://github.com/lobehub/lobe-chat/commit/6144448))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
5
30
|
### [Version 0.148.1](https://github.com/lobehub/lobe-chat/compare/v0.148.0...v0.148.1)
|
|
6
31
|
|
|
7
32
|
<sup>Released on **2024-04-20**</sup>
|
|
@@ -24,7 +24,7 @@ Go to [OpenAI API Key](https://platform.openai.com/account/api-keys) to get your
|
|
|
24
24
|
|
|
25
25
|
### Click the button below to deploy
|
|
26
26
|
|
|
27
|
-
[![]
|
|
27
|
+
[](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Flobehub%2Flobe-chat&env=OPENAI_API_KEY,ACCESS_CODE&envDescription=Find%20your%20OpenAI%20API%20Key%20by%20click%20the%20right%20Learn%20More%20button.%20%7C%20Access%20Code%20can%20protect%20your%20website&envLink=https%3A%2F%2Fplatform.openai.com%2Faccount%2Fapi-keys&project-name=lobe-chat&repository-name=lobe-chat)
|
|
28
28
|
|
|
29
29
|
Simply log in with your GitHub account, and remember to fill in `OPENAI_API_KEY` (required) and `ACCESS_CODE` (recommended) in the environment variables page.
|
|
30
30
|
|
|
@@ -41,9 +41,6 @@ Vercel's assigned domain DNS may be polluted in some regions, so binding a custo
|
|
|
41
41
|
If you have deployed your project using the one-click deployment steps mentioned above, you may find that you are always prompted with "updates available." This is because Vercel creates a new project for you by default instead of forking this project, which causes the inability to accurately detect updates.
|
|
42
42
|
|
|
43
43
|
<Callout>
|
|
44
|
-
We recommend following the [Self-Hosting Upstream Sync](/docs/self-hosting/upstream-sync) steps to
|
|
44
|
+
We recommend following the [Self-Hosting Upstream Sync](/docs/self-hosting/advanced/upstream-sync) steps to
|
|
45
45
|
Redeploy.
|
|
46
46
|
</Callout>
|
|
47
|
-
|
|
48
|
-
[deploy-button-image]: https://vercel.com/button
|
|
49
|
-
[deploy-link]: https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Flobehub%2Flobe-chat&env=OPENAI_API_KEY,ACCESS_CODE&envDescription=Find%20your%20OpenAI%20API%20Key%20by%20click%20the%20right%20Learn%20More%20button.%20%7C%20Access%20Code%20can%20protect%20your%20website&envLink=https%3A%2F%2Fplatform.openai.com%2Faccount%2Fapi-keys&project-name=lobe-chat&repository-name=lobe-chat
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/chat",
|
|
3
|
-
"version": "0.148.
|
|
3
|
+
"version": "0.148.2",
|
|
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",
|
|
@@ -15,6 +15,18 @@ const Groq: ModelProviderCard = {
|
|
|
15
15
|
id: 'gemma-7b-it',
|
|
16
16
|
tokens: 8192,
|
|
17
17
|
},
|
|
18
|
+
{
|
|
19
|
+
displayName: 'LLaMA3-3-8B',
|
|
20
|
+
enabled: true,
|
|
21
|
+
id: 'llama3-8b-8192',
|
|
22
|
+
tokens: 8192,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
displayName: 'LLaMA3-3-70B',
|
|
26
|
+
enabled: true,
|
|
27
|
+
id: 'llama3-70b-8192',
|
|
28
|
+
tokens: 8192,
|
|
29
|
+
},
|
|
18
30
|
{
|
|
19
31
|
displayName: 'LLaMA2-70b-chat',
|
|
20
32
|
enabled: true,
|
|
@@ -15,6 +15,12 @@ const Mistral: ModelProviderCard = {
|
|
|
15
15
|
id: 'open-mixtral-8x7b',
|
|
16
16
|
tokens: 32_768,
|
|
17
17
|
},
|
|
18
|
+
{
|
|
19
|
+
displayName: 'Mixtral 8x22B',
|
|
20
|
+
enabled: true,
|
|
21
|
+
id: 'open-mixtral-8x22b',
|
|
22
|
+
tokens: 65_536,
|
|
23
|
+
},
|
|
18
24
|
{
|
|
19
25
|
displayName: 'Mistral Small',
|
|
20
26
|
enabled: true,
|