@lobehub/chat 1.5.4 → 1.5.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 CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.5.5](https://github.com/lobehub/lobe-chat/compare/v1.5.4...v1.5.5)
6
+
7
+ <sup>Released on **2024-07-19**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Added Gemma2 instead of outdated Gemma.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Added Gemma2 instead of outdated Gemma, closes [#3231](https://github.com/lobehub/lobe-chat/issues/3231) ([03173b7](https://github.com/lobehub/lobe-chat/commit/03173b7))
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.5.4](https://github.com/lobehub/lobe-chat/compare/v1.5.3...v1.5.4)
6
31
 
7
32
  <sup>Released on **2024-07-17**</sup>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.5.4",
3
+ "version": "1.5.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",
@@ -58,8 +58,18 @@ const Ollama: ModelProviderCard = {
58
58
  tokens: 131_072, // https://huggingface.co/CohereForAI/c4ai-command-r-plus/blob/main/config.json
59
59
  },
60
60
  {
61
- displayName: 'Gemma 7B',
61
+ displayName: 'Gemma2 9B',
62
62
  enabled: true,
63
+ id: 'gemma2',
64
+ tokens: 8192, // https://huggingface.co/blog/zh/gemma2
65
+ },
66
+ {
67
+ displayName: 'Gemma2 27B',
68
+ id: 'gemma2:27b',
69
+ tokens: 8192,
70
+ },
71
+ {
72
+ displayName: 'Gemma 7B',
63
73
  id: 'gemma',
64
74
  tokens: 8192, // https://huggingface.co/google/gemma-7b-it/discussions/73#65e9678c0cda621164a95bad
65
75
  },