@lobehub/lobehub 2.0.0-next.83 → 2.0.0-next.85

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,56 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ## [Version 2.0.0-next.85](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.84...v2.0.0-next.85)
6
+
7
+ <sup>Released on **2025-11-19**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **misc**: Slove discover pagination router.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **misc**: Slove discover pagination router, closes [#10294](https://github.com/lobehub/lobe-chat/issues/10294) ([fcda0b5](https://github.com/lobehub/lobe-chat/commit/fcda0b5))
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.84](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.83...v2.0.0-next.84)
31
+
32
+ <sup>Released on **2025-11-19**</sup>
33
+
34
+ #### 💄 Styles
35
+
36
+ - **misc**: Add Gemini 3.0 Pro Preview to Google Provider.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### Styles
44
+
45
+ - **misc**: Add Gemini 3.0 Pro Preview to Google Provider, closes [#10290](https://github.com/lobehub/lobe-chat/issues/10290) ([25c4358](https://github.com/lobehub/lobe-chat/commit/25c4358))
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.83](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.82...v2.0.0-next.83)
6
56
 
7
57
  <sup>Released on **2025-11-19**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,22 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "fixes": [
5
+ "Slove discover pagination router."
6
+ ]
7
+ },
8
+ "date": "2025-11-19",
9
+ "version": "2.0.0-next.85"
10
+ },
11
+ {
12
+ "children": {
13
+ "improvements": [
14
+ "Add Gemini 3.0 Pro Preview to Google Provider."
15
+ ]
16
+ },
17
+ "date": "2025-11-19",
18
+ "version": "2.0.0-next.84"
19
+ },
2
20
  {
3
21
  "children": {
4
22
  "features": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/lobehub",
3
- "version": "2.0.0-next.83",
3
+ "version": "2.0.0-next.85",
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",
@@ -113,6 +113,60 @@ const googleChatModels: AIChatModelCard[] = [
113
113
  },
114
114
  type: 'chat',
115
115
  },
116
+ {
117
+ abilities: {
118
+ functionCall: true,
119
+ reasoning: true,
120
+ search: true,
121
+ video: true,
122
+ vision: true,
123
+ },
124
+ contextWindowTokens: 1_048_576 + 65_536,
125
+ description:
126
+ 'Gemini 3.0 Pro Preview 是 Google 最先进的思维模型,能够对代码、数学和STEM领域的复杂问题进行推理,以及使用长上下文分析大型数据集、代码库和文档。',
127
+ displayName: 'Gemini 3.0 Pro Preview',
128
+ enabled: true,
129
+ id: 'gemini-3-pro-preview',
130
+ maxOutput: 65_536,
131
+ pricing: {
132
+ units: [
133
+ {
134
+ name: 'textInput_cacheRead',
135
+ strategy: 'tiered',
136
+ tiers: [
137
+ { rate: 0.20, upTo: 200_000 },
138
+ { rate: 0.40, upTo: 'infinity' },
139
+ ],
140
+ unit: 'millionTokens',
141
+ },
142
+ {
143
+ name: 'textInput',
144
+ strategy: 'tiered',
145
+ tiers: [
146
+ { rate: 2.0, upTo: 200_000 },
147
+ { rate: 4.0, upTo: 'infinity' },
148
+ ],
149
+ unit: 'millionTokens',
150
+ },
151
+ {
152
+ name: 'textOutput',
153
+ strategy: 'tiered',
154
+ tiers: [
155
+ { rate: 12.0, upTo: 200_000 },
156
+ { rate: 18.0, upTo: 'infinity' },
157
+ ],
158
+ unit: 'millionTokens',
159
+ },
160
+ ],
161
+ },
162
+ releasedAt: '2025-11-18',
163
+ settings: {
164
+ extendParams: ['thinkingBudget', 'urlContext'],
165
+ searchImpl: 'params',
166
+ searchProvider: 'google',
167
+ },
168
+ type: 'chat',
169
+ },
116
170
  {
117
171
  abilities: {
118
172
  functionCall: true,
@@ -41,7 +41,7 @@ const Pagination = memo<PaginationProps>(({ tab, currentPage, total, pageSize })
41
41
  const handlePageChange = (newPage: number) => {
42
42
  const searchParams = new URLSearchParams(location.search);
43
43
  searchParams.set('page', String(newPage));
44
- navigate(`/${tab}?${searchParams.toString()}`);
44
+ navigate(`/discover/${tab}?${searchParams.toString()}`);
45
45
 
46
46
  const scrollableElement = document?.querySelector(`#${SCROLL_PARENT_ID}`);
47
47
  if (!scrollableElement) return;