@lobehub/chat 1.21.9 → 1.21.10

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.21.10](https://github.com/lobehub/lobe-chat/compare/v1.21.9...v1.21.10)
6
+
7
+ <sup>Released on **2024-10-11**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Updata gpt-4o model info.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Updata gpt-4o model info, closes [#4318](https://github.com/lobehub/lobe-chat/issues/4318) ([fa27ddf](https://github.com/lobehub/lobe-chat/commit/fa27ddf))
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.21.9](https://github.com/lobehub/lobe-chat/compare/v1.21.8...v1.21.9)
6
31
 
7
32
  <sup>Released on **2024-10-10**</sup>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.21.9",
3
+ "version": "1.21.10",
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",
@@ -54,8 +54,8 @@ const OpenAI: ModelProviderCard = {
54
54
  functionCall: true,
55
55
  id: 'gpt-4o',
56
56
  pricing: {
57
- input: 5,
58
- output: 15,
57
+ input: 2.5,
58
+ output: 10,
59
59
  },
60
60
  tokens: 128_000,
61
61
  vision: true,
@@ -64,7 +64,6 @@ const OpenAI: ModelProviderCard = {
64
64
  description:
65
65
  'ChatGPT-4o 是一款动态模型,实时更新以保持当前最新版本。它结合了强大的语言理解与生成能力,适合于大规模应用场景,包括客户服务、教育和技术支持。',
66
66
  displayName: 'GPT-4o 0806',
67
- enabled: true,
68
67
  functionCall: true,
69
68
  id: 'gpt-4o-2024-08-06',
70
69
  pricing: {
@@ -59,10 +59,10 @@ const OpenRouter: ModelProviderCard = {
59
59
  {
60
60
  description:
61
61
  'ChatGPT-4o 是一款动态模型,实时更新以保持当前最新版本。它结合了强大的语言理解与生成能力,适合于大规模应用场景,包括客户服务、教育和技术支持。',
62
- displayName: 'GPT-4o 0806',
62
+ displayName: 'GPT-4o',
63
63
  enabled: true,
64
64
  functionCall: true,
65
- id: 'openai/gpt-4o-2024-08-06',
65
+ id: 'openai/gpt-4o',
66
66
  pricing: {
67
67
  input: 2.5,
68
68
  output: 10,
@@ -247,7 +247,7 @@ GPT-4o ("o" for "omni") is OpenAI's latest AI model, supporting both text and im
247
247
 
248
248
  For benchmarking against other models, it was briefly called ["im-also-a-good-gpt2-chatbot"](https://twitter.com/LiamFedus/status/1790064963966370209)",
249
249
  "displayName": "OpenAI: GPT-4o (2024-08-06)",
250
- "enabled": true,
250
+ "enabled": false,
251
251
  "functionCall": false,
252
252
  "id": "openai/gpt-4o-2024-08-06",
253
253
  "maxTokens": 16384,
@@ -54,7 +54,6 @@ describe('modelProviderSelectors', () => {
54
54
  'o1-preview',
55
55
  'gpt-4o-mini',
56
56
  'gpt-4o',
57
- 'gpt-4o-2024-08-06',
58
57
  'chatgpt-4o-latest',
59
58
  ]);
60
59
  });