@lobehub/chat 1.15.14 → 1.15.15

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 1.15.15](https://github.com/lobehub/lobe-chat/compare/v1.15.14...v1.15.15)
6
+
7
+ <sup>Released on **2024-09-06**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Add `LLaVA 1.5 7B` model in Groq.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Add `LLaVA 1.5 7B` model in Groq, closes [#3769](https://github.com/lobehub/lobe-chat/issues/3769) ([f78a0b1](https://github.com/lobehub/lobe-chat/commit/f78a0b1))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
5
30
  ### [Version 1.15.14](https://github.com/lobehub/lobe-chat/compare/v1.15.13...v1.15.14)
6
31
 
7
32
  <sup>Released on **2024-09-06**</sup>
package/README.md CHANGED
@@ -462,9 +462,9 @@ If you want to deploy this service yourself on either Vercel or Zeabur, you can
462
462
 
463
463
  <div align="center">
464
464
 
465
- | Deploy with Vercel | Deploy with Zeabur | Deploy with Sealos |
466
- | :-------------------------------------: | :---------------------------------------------------------: | :---------------------------------------------------------: |
467
- | [![][deploy-button-image]][deploy-link] | [![][deploy-on-zeabur-button-image]][deploy-on-zeabur-link] | [![][deploy-on-sealos-button-image]][deploy-on-sealos-link] |
465
+ | Deploy with Vercel | Deploy with Zeabur | Deploy with Sealos | Deploy with RepoCloud |
466
+ | :-------------------------------------: | :---------------------------------------------------------: | :---------------------------------------------------------: | :------------------------------------------------------------: |
467
+ | [![][deploy-button-image]][deploy-link] | [![][deploy-on-zeabur-button-image]][deploy-on-zeabur-link] | [![][deploy-on-sealos-button-image]][deploy-on-sealos-link] | [![][deploy-on-repocloud-button-image]][deploy-on-repocloud-link] |
468
468
 
469
469
  </div>
470
470
 
@@ -715,6 +715,8 @@ This project is [Apache 2.0](./LICENSE) licensed.
715
715
  [deploy-on-sealos-link]: https://cloud.sealos.io/?openapp=system-template%3FtemplateName%3Dlobe-chat
716
716
  [deploy-on-zeabur-button-image]: https://zeabur.com/button.svg
717
717
  [deploy-on-zeabur-link]: https://zeabur.com/templates/VZGGTI
718
+ [deploy-on-repocloud-button-image]: https://d16t0pc4846x52.cloudfront.net/deploylobe.svg
719
+ [deploy-on-repocloud-link]: https://repocloud.io/details/?app_id=248
718
720
  [discord-link]: https://discord.gg/AYFPHvv2jT
719
721
  [discord-shield]: https://img.shields.io/discord/1127171173982154893?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=flat-square
720
722
  [discord-shield-badge]: https://img.shields.io/discord/1127171173982154893?color=5865F2&label=discord&labelColor=black&logo=discord&logoColor=white&style=for-the-badge
@@ -1,8 +1,6 @@
1
1
  ---
2
2
  title: Deploy LobeChat with Database on RepoCloud
3
- description: >-
4
- Learn how to deploy LobeChat on RepoCloud with ease, including: database,
5
- authentication and S3 storage service.
3
+ description: Learn how to deploy LobeChat on RepoCloud with ease, including: database, authentication and S3 storage service.
6
4
  tags:
7
5
  - Deploy LobeChat
8
6
  - RepoCloud Deployment
@@ -12,5 +10,23 @@ tags:
12
10
 
13
11
  # Deploying LobeChat Database Edition with RepoCloud
14
12
 
15
- TODO
13
+ If you want to deploy LobeChat Database Edition on RepoCloud, you can follow the steps below:
16
14
 
15
+ ## RepoCloud Deployment Process
16
+
17
+ <Steps>
18
+ ### Prepare your OpenAI API Key
19
+
20
+ Go to [OpenAI API Key](https://platform.openai.com/account/api-keys) to get your OpenAI API Key.
21
+
22
+ ### One-click to deploy
23
+
24
+ [![Deploy to RepoCloud](https://d16t0pc4846x52.cloudfront.net/deploy.svg)](https://repocloud.io/details/?app_id=248)
25
+
26
+ ### Once deployed, you can start using it
27
+
28
+ ### Bind a custom domain (optional)
29
+
30
+ You can use the subdomain provided by RepoCloud, or choose to bind a custom domain. Currently, the domains provided by RepoCloud have not been contaminated, and most regions can connect directly.
31
+
32
+ </Steps>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.15.14",
3
+ "version": "1.15.15",
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",
@@ -57,7 +57,7 @@ const Groq: ModelProviderCard = {
57
57
  tokens: 8192,
58
58
  },
59
59
  {
60
- displayName: 'Gemma2 9B',
60
+ displayName: 'Gemma 2 9B',
61
61
  enabled: true,
62
62
  functionCall: true,
63
63
  id: 'gemma2-9b-it',
@@ -76,6 +76,13 @@ const Groq: ModelProviderCard = {
76
76
  id: 'mixtral-8x7b-32768',
77
77
  tokens: 32_768,
78
78
  },
79
+ {
80
+ displayName: 'LLaVA 1.5 7B',
81
+ enabled: true,
82
+ id: 'llava-v1.5-7b-4096-preview',
83
+ tokens: 4096,
84
+ vision: true,
85
+ },
79
86
  ],
80
87
  checkModel: 'gemma2-9b-it',
81
88
  id: 'groq',