@lobehub/chat 1.17.3 → 1.17.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.

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.5](https://github.com/lobehub/lobe-chat/compare/v1.17.4...v1.17.5)
6
+
7
+ <sup>Released on **2024-09-15**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Add MiniCPM-V 8B model entries to Ollama model providers.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Add MiniCPM-V 8B model entries to Ollama model providers, closes [#3984](https://github.com/lobehub/lobe-chat/issues/3984) ([f9c26de](https://github.com/lobehub/lobe-chat/commit/f9c26de))
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.4](https://github.com/lobehub/lobe-chat/compare/v1.17.3...v1.17.4)
31
+
32
+ <sup>Released on **2024-09-15**</sup>
33
+
34
+ #### 💄 Styles
35
+
36
+ - **misc**: Update fullscreen loading style.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### Styles
44
+
45
+ - **misc**: Update fullscreen loading style, closes [#3948](https://github.com/lobehub/lobe-chat/issues/3948) ([aec21d2](https://github.com/lobehub/lobe-chat/commit/aec21d2))
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.3](https://github.com/lobehub/lobe-chat/compare/v1.17.2...v1.17.3)
6
56
 
7
57
  <sup>Released on **2024-09-14**</sup>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.17.3",
3
+ "version": "1.17.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",
@@ -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>
@@ -274,6 +274,22 @@ const Ollama: ModelProviderCard = {
274
274
  tokens: 4096,
275
275
  vision: true,
276
276
  },
277
+ {
278
+ description: 'MiniCPM-V 是 OpenBMB 推出的新一代多模态大模型,具备卓越的 OCR 识别和多模态理解能力,支持广泛的应用场景。',
279
+ displayName: 'MiniCPM-V 8B',
280
+ enabled: true,
281
+ id: 'minicpm-v:8b',
282
+ tokens: 128_000,
283
+ vision:true,
284
+ },
285
+ {
286
+ description: 'MiniCPM-V 是 OpenBMB 推出的新一代多模态大模型,具备卓越的 OCR 识别和多模态理解能力,支持广泛的应用场景。',
287
+ displayName: 'MiniCPM-V 8B',
288
+ enabled: true,
289
+ id: 'minicpm-v',
290
+ tokens: 128_000,
291
+ vision:true,
292
+ },
277
293
  ],
278
294
  defaultShowBrowserRequest: true,
279
295
  description: