@lobehub/chat 1.136.7 → 1.136.8

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.
@@ -19,7 +19,7 @@ jobs:
19
19
  uses: actions/checkout@v5
20
20
 
21
21
  - name: Lock closed issues after 7 days of inactivity
22
- uses: actions/github-script@v7
22
+ uses: actions/github-script@v8
23
23
  with:
24
24
  script: |
25
25
  const lockScript = require('./.github/scripts/lock-closed-issues.js');
package/CHANGELOG.md CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.136.8](https://github.com/lobehub/lobe-chat/compare/v1.136.7...v1.136.8)
6
+
7
+ <sup>Released on **2025-10-11**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **provider**: Add deepseek-v3.1-terminus to THINKING_MODELS.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **provider**: Add deepseek-v3.1-terminus to THINKING_MODELS, closes [#9653](https://github.com/lobehub/lobe-chat/issues/9653) [#9648](https://github.com/lobehub/lobe-chat/issues/9648) ([e9b5c69](https://github.com/lobehub/lobe-chat/commit/e9b5c69))
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.136.7](https://github.com/lobehub/lobe-chat/compare/v1.136.6...v1.136.7)
6
31
 
7
32
  <sup>Released on **2025-10-11**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,9 @@
1
1
  [
2
+ {
3
+ "children": {},
4
+ "date": "2025-10-11",
5
+ "version": "1.136.8"
6
+ },
2
7
  {
3
8
  "children": {
4
9
  "fixes": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.136.7",
3
+ "version": "1.136.8",
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,7 +3,7 @@ import { ModelProvider } from 'model-bank';
3
3
  import { createOpenAICompatibleRuntime } from '../../core/openaiCompatibleFactory';
4
4
  import { processMultiProviderModelList } from '../../utils/modelParse';
5
5
 
6
- const THINKING_MODELS = ['deepseek-ai/deepseek-v3.1'];
6
+ const THINKING_MODELS = ['deepseek-ai/deepseek-v3.1', 'deepseek-ai/deepseek-v3.1-terminus'];
7
7
 
8
8
  export interface NvidiaModelCard {
9
9
  id: string;