@lobehub/chat 1.108.2 → 1.109.0

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.109.0](https://github.com/lobehub/lobe-chat/compare/v1.108.2...v1.109.0)
6
+
7
+ <sup>Released on **2025-08-05**</sup>
8
+
9
+ #### ✨ Features
10
+
11
+ - **misc**: Support gpt-oss in ollama provider.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's improved
19
+
20
+ - **misc**: Support gpt-oss in ollama provider, closes [#8682](https://github.com/lobehub/lobe-chat/issues/8682) ([6e0c386](https://github.com/lobehub/lobe-chat/commit/6e0c386))
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.108.2](https://github.com/lobehub/lobe-chat/compare/v1.108.1...v1.108.2)
6
31
 
7
32
  <sup>Released on **2025-08-05**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,13 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "features": [
5
+ "Support gpt-oss in ollama provider."
6
+ ]
7
+ },
8
+ "date": "2025-08-05",
9
+ "version": "1.109.0"
10
+ },
2
11
  {
3
12
  "children": {
4
13
  "fixes": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.108.2",
3
+ "version": "1.109.0",
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",
@@ -1,6 +1,33 @@
1
1
  import { AIChatModelCard } from '@/types/aiModel';
2
2
 
3
3
  const ollamaChatModels: AIChatModelCard[] = [
4
+ {
5
+ abilities: {
6
+ functionCall: true,
7
+ reasoning: true,
8
+ },
9
+ contextWindowTokens: 32_768,
10
+ description:
11
+ 'GPT-OSS 20B 是 OpenAI 发布的开源大语言模型,采用 MXFP4 量化技术,适合在高端消费级GPU或Apple Silicon Mac上运行。该模型在对话生成、代码编写和推理任务方面表现出色,支持函数调用和工具使用。',
12
+ displayName: 'GPT-OSS 20B',
13
+ enabled: true,
14
+ id: 'gpt-oss',
15
+ releasedAt: '2025-08-05',
16
+ type: 'chat',
17
+ },
18
+ {
19
+ abilities: {
20
+ functionCall: true,
21
+ reasoning: true,
22
+ },
23
+ contextWindowTokens: 32_768,
24
+ description:
25
+ 'GPT-OSS 120B 是 OpenAI 发布的大型开源语言模型,采用 MXFP4 量化技术,为旗舰级模型。需要多GPU或高性能工作站环境运行,在复杂推理、代码生成和多语言处理方面具备卓越性能,支持高级函数调用和工具集成。',
26
+ displayName: 'GPT-OSS 120B',
27
+ id: 'gpt-oss:120b',
28
+ releasedAt: '2025-08-05',
29
+ type: 'chat',
30
+ },
4
31
  {
5
32
  abilities: {
6
33
  reasoning: true,