@lobehub/chat 1.16.1 → 1.16.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.

Potentially problematic release.


This version of @lobehub/chat might be problematic. Click here for more details.

package/CHANGELOG.md CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.16.2](https://github.com/lobehub/lobe-chat/compare/v1.16.1...v1.16.2)
6
+
7
+ <sup>Released on **2024-09-11**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Update Upstage model list.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Update Upstage model list, closes [#3890](https://github.com/lobehub/lobe-chat/issues/3890) ([82e2570](https://github.com/lobehub/lobe-chat/commit/82e2570))
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.16.1](https://github.com/lobehub/lobe-chat/compare/v1.16.0...v1.16.1)
6
31
 
7
32
  <sup>Released on **2024-09-10**</sup>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.16.1",
3
+ "version": "1.16.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",
@@ -3,9 +3,17 @@ import { ModelProviderCard } from '@/types/llm';
3
3
  // ref https://developers.upstage.ai/docs/getting-started/models
4
4
  const Upstage: ModelProviderCard = {
5
5
  chatModels: [
6
+ {
7
+ description: 'A more intelligent, instruction-following Solar LLM with IFEval 80+. The official version with expanded language support and longer context length will be released in November 2024. solar-pro supports English only at this time. solar-pro is an alias for our latest Solar Pro model. (Currently solar-pro-preview-240910)',
8
+ displayName: 'Solar Pro',
9
+ enabled: true,
10
+ functionCall: false,
11
+ id: 'solar-pro',
12
+ tokens: 4096,
13
+ },
6
14
  {
7
15
  description: 'A compact LLM offering superior performance to GPT-3.5, with robust multilingual capabilities for both English and Korean, delivering high efficiency in a smaller package. solar-1-mini-chat is alias for our latest solar-1-mini-chat model. (Currently solar-1-mini-chat-240612)',
8
- displayName: 'Solar 1 Mini Chat',
16
+ displayName: 'Solar Mini',
9
17
  enabled: true,
10
18
  functionCall: true,
11
19
  id: 'solar-1-mini-chat',
@@ -13,28 +21,11 @@ const Upstage: ModelProviderCard = {
13
21
  },
14
22
  {
15
23
  description: 'A compact LLM that extends the capabilities of solar-mini-chat with specialization in Japanese, while maintaining high efficiency and performance in English and Korean. solar-1-mini-chat-ja is alias for our latest solar-1-mini-chat-ja model.(Currently solar-1-mini-chat-ja-240612)',
16
- displayName: 'Solar 1 Mini Chat Ja',
17
- enabled: true,
24
+ displayName: 'Solar Mini (Ja)',
18
25
  functionCall: false,
19
26
  id: 'solar-1-mini-chat-ja',
20
27
  tokens: 32_768,
21
28
  },
22
- {
23
- description: 'English-to-Korean translation specialized model based on the solar-mini. Maximum context length is 32k tokens. solar-1-mini-translate-enko is alias for our latest solar-1-mini-translate-enko model. (Currently solar-1-mini-translate-enko-240507)',
24
- displayName: 'Solar 1 Mini Translate EnKo',
25
- enabled: false,
26
- functionCall: false,
27
- id: 'solar-1-mini-translate-enko',
28
- tokens: 32_768,
29
- },
30
- {
31
- description: 'Korean-to-English translation specialized model based on the solar-mini. Maximum context length is 32k tokens. solar-1-mini-translate-koen is alias for our latest solar-1-mini-translate-koen model. (Currently solar-1-mini-translate-koen-240507)',
32
- displayName: 'Solar 1 Mini Translate KoEn',
33
- enabled: false,
34
- functionCall: false,
35
- id: 'solar-1-mini-translate-koen',
36
- tokens: 32_768,
37
- },
38
29
  ],
39
30
  checkModel: 'solar-1-mini-chat',
40
31
  id: 'upstage',