@lobehub/lobehub 2.0.0-next.156 → 2.0.0-next.158

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.
Files changed (41) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/changelog/v1.json +18 -0
  3. package/docs/development/database-schema.dbml +1 -0
  4. package/package.json +1 -1
  5. package/packages/database/migrations/0058_add_source_into_user_plugins.sql +1 -0
  6. package/packages/database/migrations/meta/0058_snapshot.json +8432 -0
  7. package/packages/database/migrations/meta/_journal.json +7 -0
  8. package/packages/database/src/core/migrations.json +19 -32
  9. package/packages/database/src/schemas/user.ts +2 -2
  10. package/packages/model-bank/src/aiModels/cerebras.ts +22 -48
  11. package/packages/model-bank/src/aiModels/infiniai.ts +62 -0
  12. package/packages/model-bank/src/aiModels/minimax.ts +23 -11
  13. package/packages/model-bank/src/aiModels/moonshot.ts +3 -24
  14. package/packages/model-bank/src/aiModels/openai.ts +0 -23
  15. package/packages/model-bank/src/aiModels/qwen.ts +26 -27
  16. package/packages/model-bank/src/aiModels/siliconcloud.ts +46 -0
  17. package/packages/model-bank/src/aiModels/spark.ts +17 -16
  18. package/packages/model-bank/src/aiModels/volcengine.ts +53 -0
  19. package/packages/model-bank/src/aiModels/wenxin.ts +49 -1
  20. package/packages/model-runtime/src/core/RouterRuntime/createRuntime.ts +2 -2
  21. package/packages/model-runtime/src/core/openaiCompatibleFactory/index.ts +44 -2
  22. package/packages/model-runtime/src/providers/minimax/index.ts +1 -11
  23. package/packages/model-runtime/src/providers/spark/index.test.ts +12 -11
  24. package/packages/model-runtime/src/providers/spark/index.ts +19 -4
  25. package/packages/model-runtime/src/providers/volcengine/index.test.ts +0 -14
  26. package/packages/model-runtime/src/providers/volcengine/index.ts +1 -24
  27. package/packages/types/src/tool/builtin.ts +6 -6
  28. package/src/app/(backend)/api/auth/check-user/route.ts +0 -6
  29. package/src/config/modelProviders/spark.ts +0 -3
  30. package/src/config/modelProviders/volcengine.ts +2 -1
  31. package/src/store/aiInfra/store.ts +2 -2
  32. package/src/store/chat/store.ts +2 -2
  33. package/src/store/discover/store.ts +2 -2
  34. package/src/store/electron/store.ts +2 -2
  35. package/src/store/file/store.ts +2 -2
  36. package/src/store/global/store.ts +2 -2
  37. package/src/store/knowledgeBase/store.ts +2 -2
  38. package/src/store/serverConfig/store.ts +2 -2
  39. package/src/store/session/store.ts +2 -2
  40. package/src/store/tool/store.ts +2 -2
  41. package/src/store/user/store.ts +2 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,56 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ## [Version 2.0.0-next.158](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.157...v2.0.0-next.158)
6
+
7
+ <sup>Released on **2025-12-04**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **misc**: Limit check-user response surface.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **misc**: Limit check-user response surface, closes [#10609](https://github.com/lobehub/lobe-chat/issues/10609) ([2f6d3f0](https://github.com/lobehub/lobe-chat/commit/2f6d3f0))
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 2.0.0-next.157](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.156...v2.0.0-next.157)
31
+
32
+ <sup>Released on **2025-12-04**</sup>
33
+
34
+ #### 💄 Styles
35
+
36
+ - **misc**: Update Spark X1.5 model.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### Styles
44
+
45
+ - **misc**: Update Spark X1.5 model, closes [#10103](https://github.com/lobehub/lobe-chat/issues/10103) ([d1aca26](https://github.com/lobehub/lobe-chat/commit/d1aca26))
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 2.0.0-next.156](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.155...v2.0.0-next.156)
6
56
 
7
57
  <sup>Released on **2025-12-04**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,22 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "fixes": [
5
+ "Limit check-user response surface."
6
+ ]
7
+ },
8
+ "date": "2025-12-04",
9
+ "version": "2.0.0-next.158"
10
+ },
11
+ {
12
+ "children": {
13
+ "improvements": [
14
+ "Update Spark X1.5 model."
15
+ ]
16
+ },
17
+ "date": "2025-12-04",
18
+ "version": "2.0.0-next.157"
19
+ },
2
20
  {
3
21
  "children": {
4
22
  "fixes": [
@@ -1018,6 +1018,7 @@ table user_installed_plugins {
1018
1018
  manifest jsonb
1019
1019
  settings jsonb
1020
1020
  custom_params jsonb
1021
+ source varchar(255)
1021
1022
  accessed_at "timestamp with time zone" [not null, default: `now()`]
1022
1023
  created_at "timestamp with time zone" [not null, default: `now()`]
1023
1024
  updated_at "timestamp with time zone" [not null, default: `now()`]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/lobehub",
3
- "version": "2.0.0-next.156",
3
+ "version": "2.0.0-next.158",
4
4
  "description": "LobeHub - an open-source,comprehensive AI Agent 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",
@@ -0,0 +1 @@
1
+ ALTER TABLE "user_installed_plugins" ADD COLUMN IF NOT EXISTS "source" varchar(255);