@lobehub/chat 1.17.2 → 1.17.4

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,56 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.17.4](https://github.com/lobehub/lobe-chat/compare/v1.17.3...v1.17.4)
6
+
7
+ <sup>Released on **2024-09-15**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Update fullscreen loading style.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Update fullscreen loading style, closes [#3948](https://github.com/lobehub/lobe-chat/issues/3948) ([aec21d2](https://github.com/lobehub/lobe-chat/commit/aec21d2))
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
+
30
+ ### [Version 1.17.3](https://github.com/lobehub/lobe-chat/compare/v1.17.2...v1.17.3)
31
+
32
+ <sup>Released on **2024-09-14**</sup>
33
+
34
+ #### 💄 Styles
35
+
36
+ - **misc**: Delete "-" in deepseek displayname.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### Styles
44
+
45
+ - **misc**: Delete "-" in deepseek displayname, closes [#3958](https://github.com/lobehub/lobe-chat/issues/3958) ([c0e89f5](https://github.com/lobehub/lobe-chat/commit/c0e89f5))
46
+
47
+ </details>
48
+
49
+ <div align="right">
50
+
51
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
52
+
53
+ </div>
54
+
5
55
  ### [Version 1.17.2](https://github.com/lobehub/lobe-chat/compare/v1.17.1...v1.17.2)
6
56
 
7
57
  <sup>Released on **2024-09-13**</sup>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.17.2",
3
+ "version": "1.17.4",
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",
@@ -7,15 +7,11 @@ import { ProductLogo } from '@/components/Branding';
7
7
 
8
8
  const FullscreenLoading = memo<{ title?: string }>(({ title }) => {
9
9
  return (
10
- <Flexbox height={'100%'} style={{ userSelect: 'none' }} width={'100%'}>
11
- <Center flex={1} gap={12} width={'100%'}>
10
+ <Flexbox height={'100%'} style={{ position: 'relative', userSelect: 'none' }} width={'100%'}>
11
+ <Center flex={1} gap={16} width={'100%'}>
12
12
  <ProductLogo size={48} type={'combine'} />
13
- <Center
14
- gap={16}
15
- horizontal
16
- style={{ fontSize: '16px', lineHeight: '1.5', marginTop: '2%' }}
17
- >
18
- <Icon icon={Loader2} spin style={{ fontSize: '16px' }} />
13
+ <Center gap={12} horizontal style={{ fontSize: 15, lineHeight: 1.5, opacity: 0.66 }}>
14
+ <Icon icon={Loader2} size={{ fontSize: 16 }} spin />
19
15
  {title}
20
16
  </Center>
21
17
  </Center>
@@ -6,7 +6,7 @@ const DeepSeek: ModelProviderCard = {
6
6
  {
7
7
  description:
8
8
  '融合通用与代码能力的全新开源模型, 不仅保留了原有 Chat 模型的通用对话能力和 Coder 模型的强大代码处理能力,还更好地对齐了人类偏好。此外,DeepSeek-V2.5 在写作任务、指令跟随等多个方面也实现了大幅提升。',
9
- displayName: 'DeepSeek-V2.5',
9
+ displayName: 'DeepSeek V2.5',
10
10
  enabled: true,
11
11
  functionCall: true,
12
12
  id: 'deepseek-chat',
@@ -155,7 +155,7 @@ const OpenRouter: ModelProviderCard = {
155
155
  {
156
156
  description:
157
157
  '融合通用与代码能力的全新开源模型, 不仅保留了原有 Chat 模型的通用对话能力和 Coder 模型的强大代码处理能力,还更好地对齐了人类偏好。此外,DeepSeek-V2.5 在写作任务、指令跟随等多个方面也实现了大幅提升。',
158
- displayName: 'DeepSeek-V2.5',
158
+ displayName: 'DeepSeek V2.5',
159
159
  enabled: true,
160
160
  functionCall: true,
161
161
  id: 'deepseek/deepseek-chat',