@lobehub/lobehub 2.0.0-next.14 → 2.0.0-next.141

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 (2450) hide show
  1. package/.console-log-whitelist.json +14 -0
  2. package/.cursor/rules/db-migrations.mdc +16 -1
  3. package/.cursor/rules/project-introduce.mdc +1 -1
  4. package/.cursor/rules/project-structure.mdc +20 -2
  5. package/.env.desktop +1 -2
  6. package/.env.example +176 -65
  7. package/.env.example.development +11 -10
  8. package/.github/workflows/claude-auto-testing.yml +73 -0
  9. package/.github/workflows/claude-translate-comments.yml +67 -0
  10. package/.github/workflows/claude-translator.yml +1 -0
  11. package/.github/workflows/e2e.yml +14 -0
  12. package/.github/workflows/issue-auto-comments.yml +0 -19
  13. package/.github/workflows/pr-build-desktop.yml +362 -0
  14. package/.github/workflows/pr-build-docker.yml +173 -0
  15. package/.github/workflows/release-desktop-beta.yml +4 -4
  16. package/.github/workflows/release-docker.yml +133 -0
  17. package/.github/workflows/release.yml +2 -4
  18. package/.github/workflows/sync.yml +2 -2
  19. package/.github/workflows/test.yml +44 -8
  20. package/.nvmrc +1 -1
  21. package/AGENTS.md +2 -3
  22. package/CHANGELOG.md +3196 -0
  23. package/CLAUDE.md +39 -0
  24. package/Dockerfile +6 -6
  25. package/GEMINI.md +63 -0
  26. package/README.md +9 -52
  27. package/README.zh-CN.md +9 -52
  28. package/apps/desktop/package.json +20 -19
  29. package/apps/desktop/src/common/routes.ts +0 -6
  30. package/apps/desktop/src/main/appBrowsers.ts +0 -13
  31. package/apps/desktop/src/main/controllers/AuthCtr.ts +78 -39
  32. package/apps/desktop/src/main/controllers/BrowserWindowsCtr.ts +29 -48
  33. package/apps/desktop/src/main/controllers/LocalFileCtr.ts +80 -16
  34. package/apps/desktop/src/main/controllers/MenuCtr.ts +5 -5
  35. package/apps/desktop/src/main/controllers/NotificationCtr.ts +29 -29
  36. package/apps/desktop/src/main/controllers/RemoteServerConfigCtr.ts +16 -16
  37. package/apps/desktop/src/main/controllers/ShellCommandCtr.ts +242 -0
  38. package/apps/desktop/src/main/controllers/ShortcutCtr.ts +2 -2
  39. package/apps/desktop/src/main/controllers/TrayMenuCtr.ts +18 -18
  40. package/apps/desktop/src/main/controllers/UpdaterCtr.ts +4 -4
  41. package/apps/desktop/src/main/controllers/__tests__/AuthCtr.test.ts +706 -0
  42. package/apps/desktop/src/main/controllers/__tests__/BrowserWindowsCtr.test.ts +21 -72
  43. package/apps/desktop/src/main/controllers/__tests__/LocalFileCtr.test.ts +157 -1
  44. package/apps/desktop/src/main/controllers/__tests__/ShellCommandCtr.test.ts +499 -0
  45. package/apps/desktop/src/main/controllers/__tests__/TrayMenuCtr.test.ts +5 -5
  46. package/apps/desktop/src/main/controllers/index.ts +4 -4
  47. package/apps/desktop/src/main/core/browser/Browser.ts +1 -0
  48. package/apps/desktop/src/main/core/browser/BrowserManager.ts +1 -56
  49. package/apps/desktop/src/main/core/infrastructure/ProtocolManager.ts +9 -4
  50. package/apps/desktop/src/main/core/infrastructure/UpdaterManager.ts +23 -2
  51. package/apps/desktop/src/main/menus/impls/macOS.ts +9 -3
  52. package/apps/desktop/src/main/modules/fileSearch/__tests__/macOS.integration.test.ts +357 -0
  53. package/apps/desktop/src/main/modules/fileSearch/impl/macOS.ts +30 -22
  54. package/apps/desktop/src/main/modules/networkProxy/__tests__/dispatcher.test.ts +401 -0
  55. package/apps/desktop/src/main/modules/networkProxy/__tests__/tester.test.ts +531 -0
  56. package/apps/desktop/src/main/modules/networkProxy/__tests__/urlBuilder.test.ts +349 -0
  57. package/apps/desktop/src/main/modules/networkProxy/__tests__/validator.test.ts +492 -0
  58. package/apps/desktop/src/main/modules/networkProxy/dispatcher.ts +16 -16
  59. package/apps/desktop/src/main/modules/networkProxy/tester.ts +11 -11
  60. package/apps/desktop/src/main/modules/networkProxy/urlBuilder.ts +3 -3
  61. package/apps/desktop/src/main/modules/networkProxy/validator.ts +10 -10
  62. package/apps/desktop/src/main/services/__tests__/fileSrv.test.ts +603 -0
  63. package/apps/desktop/src/preload/index.ts +2 -2
  64. package/apps/desktop/src/preload/invoke.ts +1 -1
  65. package/apps/desktop/src/preload/routeInterceptor.ts +41 -41
  66. package/apps/desktop/tsconfig.json +0 -1
  67. package/changelog/v1.json +1113 -0
  68. package/codecov.yml +1 -0
  69. package/docker-compose/local/.env.example +3 -0
  70. package/docker-compose/local/docker-compose.yml +24 -1
  71. package/docker-compose/local/logto/docker-compose.yml +25 -2
  72. package/docker-compose.development.yml +6 -0
  73. package/docs/development/database-schema.dbml +115 -22
  74. package/docs/self-hosting/advanced/auth.mdx +88 -2
  75. package/docs/self-hosting/advanced/auth.zh-CN.mdx +88 -2
  76. package/docs/self-hosting/advanced/feature-flags.mdx +0 -1
  77. package/docs/self-hosting/advanced/feature-flags.zh-CN.mdx +0 -1
  78. package/docs/self-hosting/environment-variables/auth.mdx +187 -1
  79. package/docs/self-hosting/environment-variables/auth.zh-CN.mdx +187 -1
  80. package/docs/self-hosting/environment-variables/basic.mdx +49 -3
  81. package/docs/self-hosting/environment-variables/basic.zh-CN.mdx +49 -4
  82. package/docs/self-hosting/server-database/docker-compose.mdx +29 -0
  83. package/docs/self-hosting/server-database/docker-compose.zh-CN.mdx +29 -0
  84. package/docs/usage/providers/comfyui.mdx +1 -1
  85. package/docs/usage/providers/comfyui.zh-CN.mdx +1 -1
  86. package/e2e/package.json +4 -4
  87. package/e2e/src/features/discover/detail-pages.feature +95 -0
  88. package/e2e/src/features/discover/interactions.feature +113 -0
  89. package/e2e/src/features/discover/smoke.feature +34 -1
  90. package/e2e/src/steps/discover/detail-pages.steps.ts +295 -0
  91. package/e2e/src/steps/discover/interactions.steps.ts +451 -0
  92. package/e2e/src/steps/discover/smoke.steps.ts +116 -4
  93. package/e2e/tsconfig.json +0 -1
  94. package/locales/ar/auth.json +159 -2
  95. package/locales/ar/chat.json +42 -0
  96. package/locales/ar/common.json +24 -0
  97. package/locales/ar/components.json +6 -0
  98. package/locales/ar/discover.json +45 -0
  99. package/locales/ar/error.json +2 -2
  100. package/locales/ar/file.json +88 -5
  101. package/locales/ar/hotkey.json +4 -0
  102. package/locales/ar/image.json +8 -0
  103. package/locales/ar/labs.json +4 -0
  104. package/locales/ar/marketAuth.json +42 -0
  105. package/locales/ar/modelProvider.json +16 -2
  106. package/locales/ar/models.json +404 -122
  107. package/locales/ar/oauth.json +1 -0
  108. package/locales/ar/plugin.json +36 -16
  109. package/locales/ar/providers.json +3 -0
  110. package/locales/ar/setting.json +100 -1
  111. package/locales/ar/tool.json +28 -1
  112. package/locales/ar/topic.json +1 -0
  113. package/locales/bg-BG/auth.json +159 -2
  114. package/locales/bg-BG/chat.json +42 -0
  115. package/locales/bg-BG/common.json +24 -0
  116. package/locales/bg-BG/components.json +6 -0
  117. package/locales/bg-BG/discover.json +45 -0
  118. package/locales/bg-BG/error.json +2 -2
  119. package/locales/bg-BG/file.json +88 -5
  120. package/locales/bg-BG/hotkey.json +4 -0
  121. package/locales/bg-BG/image.json +8 -0
  122. package/locales/bg-BG/labs.json +4 -0
  123. package/locales/bg-BG/marketAuth.json +42 -0
  124. package/locales/bg-BG/modelProvider.json +16 -2
  125. package/locales/bg-BG/models.json +404 -122
  126. package/locales/bg-BG/oauth.json +1 -0
  127. package/locales/bg-BG/plugin.json +36 -16
  128. package/locales/bg-BG/providers.json +3 -0
  129. package/locales/bg-BG/setting.json +100 -1
  130. package/locales/bg-BG/tool.json +28 -1
  131. package/locales/bg-BG/topic.json +1 -0
  132. package/locales/de-DE/auth.json +159 -2
  133. package/locales/de-DE/chat.json +42 -0
  134. package/locales/de-DE/common.json +24 -0
  135. package/locales/de-DE/components.json +6 -0
  136. package/locales/de-DE/discover.json +45 -0
  137. package/locales/de-DE/error.json +2 -2
  138. package/locales/de-DE/file.json +88 -5
  139. package/locales/de-DE/hotkey.json +4 -0
  140. package/locales/de-DE/image.json +8 -0
  141. package/locales/de-DE/labs.json +4 -0
  142. package/locales/de-DE/marketAuth.json +42 -0
  143. package/locales/de-DE/modelProvider.json +16 -2
  144. package/locales/de-DE/models.json +404 -122
  145. package/locales/de-DE/oauth.json +1 -0
  146. package/locales/de-DE/plugin.json +36 -16
  147. package/locales/de-DE/providers.json +3 -0
  148. package/locales/de-DE/setting.json +100 -1
  149. package/locales/de-DE/tool.json +28 -1
  150. package/locales/de-DE/topic.json +1 -0
  151. package/locales/en-US/auth.json +159 -2
  152. package/locales/en-US/chat.json +42 -0
  153. package/locales/en-US/common.json +24 -0
  154. package/locales/en-US/components.json +6 -0
  155. package/locales/en-US/discover.json +45 -0
  156. package/locales/en-US/error.json +2 -2
  157. package/locales/en-US/file.json +88 -5
  158. package/locales/en-US/hotkey.json +4 -0
  159. package/locales/en-US/image.json +8 -0
  160. package/locales/en-US/labs.json +4 -0
  161. package/locales/en-US/marketAuth.json +42 -0
  162. package/locales/en-US/modelProvider.json +16 -2
  163. package/locales/en-US/models.json +404 -122
  164. package/locales/en-US/oauth.json +1 -0
  165. package/locales/en-US/plugin.json +36 -16
  166. package/locales/en-US/providers.json +3 -0
  167. package/locales/en-US/setting.json +100 -1
  168. package/locales/en-US/tool.json +28 -1
  169. package/locales/en-US/topic.json +1 -0
  170. package/locales/es-ES/auth.json +159 -2
  171. package/locales/es-ES/chat.json +42 -0
  172. package/locales/es-ES/common.json +24 -0
  173. package/locales/es-ES/components.json +6 -0
  174. package/locales/es-ES/discover.json +45 -0
  175. package/locales/es-ES/error.json +2 -2
  176. package/locales/es-ES/file.json +88 -5
  177. package/locales/es-ES/hotkey.json +4 -0
  178. package/locales/es-ES/image.json +8 -0
  179. package/locales/es-ES/labs.json +4 -0
  180. package/locales/es-ES/marketAuth.json +42 -0
  181. package/locales/es-ES/modelProvider.json +16 -2
  182. package/locales/es-ES/models.json +404 -122
  183. package/locales/es-ES/oauth.json +1 -0
  184. package/locales/es-ES/plugin.json +36 -16
  185. package/locales/es-ES/providers.json +3 -0
  186. package/locales/es-ES/setting.json +100 -1
  187. package/locales/es-ES/tool.json +28 -1
  188. package/locales/es-ES/topic.json +1 -0
  189. package/locales/fa-IR/auth.json +159 -2
  190. package/locales/fa-IR/chat.json +42 -0
  191. package/locales/fa-IR/common.json +24 -0
  192. package/locales/fa-IR/components.json +6 -0
  193. package/locales/fa-IR/discover.json +45 -0
  194. package/locales/fa-IR/error.json +2 -2
  195. package/locales/fa-IR/file.json +88 -5
  196. package/locales/fa-IR/hotkey.json +4 -0
  197. package/locales/fa-IR/image.json +8 -0
  198. package/locales/fa-IR/labs.json +4 -0
  199. package/locales/fa-IR/marketAuth.json +42 -0
  200. package/locales/fa-IR/modelProvider.json +16 -2
  201. package/locales/fa-IR/models.json +404 -122
  202. package/locales/fa-IR/oauth.json +1 -0
  203. package/locales/fa-IR/plugin.json +36 -16
  204. package/locales/fa-IR/providers.json +3 -0
  205. package/locales/fa-IR/setting.json +100 -1
  206. package/locales/fa-IR/tool.json +28 -1
  207. package/locales/fa-IR/topic.json +1 -0
  208. package/locales/fr-FR/auth.json +159 -2
  209. package/locales/fr-FR/chat.json +42 -0
  210. package/locales/fr-FR/common.json +24 -0
  211. package/locales/fr-FR/components.json +6 -0
  212. package/locales/fr-FR/discover.json +45 -0
  213. package/locales/fr-FR/error.json +2 -2
  214. package/locales/fr-FR/file.json +88 -5
  215. package/locales/fr-FR/hotkey.json +4 -0
  216. package/locales/fr-FR/image.json +8 -0
  217. package/locales/fr-FR/labs.json +4 -0
  218. package/locales/fr-FR/marketAuth.json +42 -0
  219. package/locales/fr-FR/modelProvider.json +16 -2
  220. package/locales/fr-FR/models.json +404 -122
  221. package/locales/fr-FR/oauth.json +1 -0
  222. package/locales/fr-FR/plugin.json +36 -16
  223. package/locales/fr-FR/providers.json +3 -0
  224. package/locales/fr-FR/setting.json +100 -1
  225. package/locales/fr-FR/tool.json +28 -1
  226. package/locales/fr-FR/topic.json +1 -0
  227. package/locales/it-IT/auth.json +159 -2
  228. package/locales/it-IT/chat.json +42 -0
  229. package/locales/it-IT/common.json +24 -0
  230. package/locales/it-IT/components.json +6 -0
  231. package/locales/it-IT/discover.json +45 -0
  232. package/locales/it-IT/error.json +2 -2
  233. package/locales/it-IT/file.json +88 -5
  234. package/locales/it-IT/hotkey.json +4 -0
  235. package/locales/it-IT/image.json +8 -0
  236. package/locales/it-IT/labs.json +4 -0
  237. package/locales/it-IT/marketAuth.json +42 -0
  238. package/locales/it-IT/modelProvider.json +16 -2
  239. package/locales/it-IT/models.json +404 -122
  240. package/locales/it-IT/oauth.json +1 -0
  241. package/locales/it-IT/plugin.json +36 -16
  242. package/locales/it-IT/providers.json +3 -0
  243. package/locales/it-IT/setting.json +100 -1
  244. package/locales/it-IT/tool.json +28 -1
  245. package/locales/it-IT/topic.json +1 -0
  246. package/locales/ja-JP/auth.json +159 -2
  247. package/locales/ja-JP/chat.json +42 -0
  248. package/locales/ja-JP/common.json +24 -0
  249. package/locales/ja-JP/components.json +6 -0
  250. package/locales/ja-JP/discover.json +45 -0
  251. package/locales/ja-JP/error.json +2 -2
  252. package/locales/ja-JP/file.json +88 -5
  253. package/locales/ja-JP/hotkey.json +4 -0
  254. package/locales/ja-JP/image.json +8 -0
  255. package/locales/ja-JP/labs.json +4 -0
  256. package/locales/ja-JP/marketAuth.json +42 -0
  257. package/locales/ja-JP/modelProvider.json +16 -2
  258. package/locales/ja-JP/models.json +404 -122
  259. package/locales/ja-JP/oauth.json +1 -0
  260. package/locales/ja-JP/plugin.json +36 -16
  261. package/locales/ja-JP/providers.json +3 -0
  262. package/locales/ja-JP/setting.json +100 -1
  263. package/locales/ja-JP/tool.json +28 -1
  264. package/locales/ja-JP/topic.json +1 -0
  265. package/locales/ko-KR/auth.json +159 -2
  266. package/locales/ko-KR/chat.json +42 -0
  267. package/locales/ko-KR/common.json +24 -0
  268. package/locales/ko-KR/components.json +6 -0
  269. package/locales/ko-KR/discover.json +45 -0
  270. package/locales/ko-KR/error.json +2 -2
  271. package/locales/ko-KR/file.json +88 -5
  272. package/locales/ko-KR/hotkey.json +4 -0
  273. package/locales/ko-KR/image.json +8 -0
  274. package/locales/ko-KR/labs.json +4 -0
  275. package/locales/ko-KR/marketAuth.json +42 -0
  276. package/locales/ko-KR/modelProvider.json +16 -2
  277. package/locales/ko-KR/models.json +404 -122
  278. package/locales/ko-KR/oauth.json +1 -0
  279. package/locales/ko-KR/plugin.json +36 -16
  280. package/locales/ko-KR/providers.json +3 -0
  281. package/locales/ko-KR/setting.json +100 -1
  282. package/locales/ko-KR/tool.json +28 -1
  283. package/locales/ko-KR/topic.json +1 -0
  284. package/locales/nl-NL/auth.json +159 -2
  285. package/locales/nl-NL/chat.json +42 -0
  286. package/locales/nl-NL/common.json +24 -0
  287. package/locales/nl-NL/components.json +6 -0
  288. package/locales/nl-NL/discover.json +45 -0
  289. package/locales/nl-NL/error.json +2 -2
  290. package/locales/nl-NL/file.json +88 -5
  291. package/locales/nl-NL/hotkey.json +4 -0
  292. package/locales/nl-NL/image.json +8 -0
  293. package/locales/nl-NL/labs.json +4 -0
  294. package/locales/nl-NL/marketAuth.json +42 -0
  295. package/locales/nl-NL/modelProvider.json +16 -2
  296. package/locales/nl-NL/models.json +404 -122
  297. package/locales/nl-NL/oauth.json +1 -0
  298. package/locales/nl-NL/plugin.json +36 -16
  299. package/locales/nl-NL/providers.json +3 -0
  300. package/locales/nl-NL/setting.json +100 -1
  301. package/locales/nl-NL/tool.json +28 -1
  302. package/locales/nl-NL/topic.json +1 -0
  303. package/locales/pl-PL/auth.json +159 -2
  304. package/locales/pl-PL/chat.json +42 -0
  305. package/locales/pl-PL/common.json +24 -0
  306. package/locales/pl-PL/components.json +6 -0
  307. package/locales/pl-PL/discover.json +45 -0
  308. package/locales/pl-PL/error.json +2 -2
  309. package/locales/pl-PL/file.json +88 -5
  310. package/locales/pl-PL/hotkey.json +4 -0
  311. package/locales/pl-PL/image.json +8 -0
  312. package/locales/pl-PL/labs.json +4 -0
  313. package/locales/pl-PL/marketAuth.json +42 -0
  314. package/locales/pl-PL/modelProvider.json +16 -2
  315. package/locales/pl-PL/models.json +404 -122
  316. package/locales/pl-PL/oauth.json +1 -0
  317. package/locales/pl-PL/plugin.json +36 -16
  318. package/locales/pl-PL/providers.json +3 -0
  319. package/locales/pl-PL/setting.json +100 -1
  320. package/locales/pl-PL/tool.json +28 -1
  321. package/locales/pl-PL/topic.json +1 -0
  322. package/locales/pt-BR/auth.json +159 -2
  323. package/locales/pt-BR/chat.json +42 -0
  324. package/locales/pt-BR/common.json +24 -0
  325. package/locales/pt-BR/components.json +6 -0
  326. package/locales/pt-BR/discover.json +45 -0
  327. package/locales/pt-BR/error.json +2 -2
  328. package/locales/pt-BR/file.json +88 -5
  329. package/locales/pt-BR/hotkey.json +4 -0
  330. package/locales/pt-BR/image.json +8 -0
  331. package/locales/pt-BR/labs.json +4 -0
  332. package/locales/pt-BR/marketAuth.json +42 -0
  333. package/locales/pt-BR/modelProvider.json +16 -2
  334. package/locales/pt-BR/models.json +404 -122
  335. package/locales/pt-BR/oauth.json +1 -0
  336. package/locales/pt-BR/plugin.json +36 -16
  337. package/locales/pt-BR/providers.json +3 -0
  338. package/locales/pt-BR/setting.json +100 -1
  339. package/locales/pt-BR/tool.json +28 -1
  340. package/locales/pt-BR/topic.json +1 -0
  341. package/locales/ru-RU/auth.json +159 -2
  342. package/locales/ru-RU/chat.json +42 -0
  343. package/locales/ru-RU/common.json +24 -0
  344. package/locales/ru-RU/components.json +6 -0
  345. package/locales/ru-RU/discover.json +45 -0
  346. package/locales/ru-RU/error.json +2 -2
  347. package/locales/ru-RU/file.json +88 -5
  348. package/locales/ru-RU/hotkey.json +4 -0
  349. package/locales/ru-RU/image.json +8 -0
  350. package/locales/ru-RU/labs.json +4 -0
  351. package/locales/ru-RU/marketAuth.json +42 -0
  352. package/locales/ru-RU/modelProvider.json +16 -2
  353. package/locales/ru-RU/models.json +404 -122
  354. package/locales/ru-RU/oauth.json +1 -0
  355. package/locales/ru-RU/plugin.json +36 -16
  356. package/locales/ru-RU/providers.json +3 -0
  357. package/locales/ru-RU/setting.json +100 -1
  358. package/locales/ru-RU/tool.json +28 -1
  359. package/locales/ru-RU/topic.json +1 -0
  360. package/locales/tr-TR/auth.json +159 -2
  361. package/locales/tr-TR/chat.json +42 -0
  362. package/locales/tr-TR/common.json +24 -0
  363. package/locales/tr-TR/components.json +6 -0
  364. package/locales/tr-TR/discover.json +45 -0
  365. package/locales/tr-TR/error.json +2 -2
  366. package/locales/tr-TR/file.json +88 -5
  367. package/locales/tr-TR/hotkey.json +4 -0
  368. package/locales/tr-TR/image.json +8 -0
  369. package/locales/tr-TR/labs.json +4 -0
  370. package/locales/tr-TR/marketAuth.json +42 -0
  371. package/locales/tr-TR/modelProvider.json +16 -2
  372. package/locales/tr-TR/models.json +404 -122
  373. package/locales/tr-TR/oauth.json +1 -0
  374. package/locales/tr-TR/plugin.json +36 -16
  375. package/locales/tr-TR/providers.json +3 -0
  376. package/locales/tr-TR/setting.json +100 -1
  377. package/locales/tr-TR/tool.json +28 -1
  378. package/locales/tr-TR/topic.json +1 -0
  379. package/locales/vi-VN/auth.json +159 -2
  380. package/locales/vi-VN/chat.json +42 -0
  381. package/locales/vi-VN/common.json +24 -0
  382. package/locales/vi-VN/components.json +6 -0
  383. package/locales/vi-VN/discover.json +45 -0
  384. package/locales/vi-VN/error.json +2 -2
  385. package/locales/vi-VN/file.json +88 -5
  386. package/locales/vi-VN/hotkey.json +4 -0
  387. package/locales/vi-VN/image.json +8 -0
  388. package/locales/vi-VN/labs.json +4 -0
  389. package/locales/vi-VN/marketAuth.json +42 -0
  390. package/locales/vi-VN/modelProvider.json +16 -2
  391. package/locales/vi-VN/models.json +404 -122
  392. package/locales/vi-VN/oauth.json +1 -0
  393. package/locales/vi-VN/plugin.json +36 -16
  394. package/locales/vi-VN/providers.json +3 -0
  395. package/locales/vi-VN/setting.json +100 -1
  396. package/locales/vi-VN/tool.json +28 -1
  397. package/locales/vi-VN/topic.json +1 -0
  398. package/locales/zh-CN/auth.json +159 -2
  399. package/locales/zh-CN/chat.json +42 -0
  400. package/locales/zh-CN/common.json +24 -0
  401. package/locales/zh-CN/components.json +6 -0
  402. package/locales/zh-CN/discover.json +45 -0
  403. package/locales/zh-CN/error.json +2 -2
  404. package/locales/zh-CN/file.json +88 -5
  405. package/locales/zh-CN/hotkey.json +4 -0
  406. package/locales/zh-CN/image.json +8 -0
  407. package/locales/zh-CN/labs.json +4 -0
  408. package/locales/zh-CN/marketAuth.json +42 -0
  409. package/locales/zh-CN/modelProvider.json +16 -2
  410. package/locales/zh-CN/models.json +404 -122
  411. package/locales/zh-CN/oauth.json +1 -0
  412. package/locales/zh-CN/plugin.json +36 -16
  413. package/locales/zh-CN/providers.json +3 -0
  414. package/locales/zh-CN/setting.json +100 -1
  415. package/locales/zh-CN/tool.json +28 -1
  416. package/locales/zh-CN/topic.json +1 -0
  417. package/locales/zh-TW/auth.json +159 -2
  418. package/locales/zh-TW/chat.json +42 -0
  419. package/locales/zh-TW/common.json +24 -0
  420. package/locales/zh-TW/components.json +6 -0
  421. package/locales/zh-TW/discover.json +45 -0
  422. package/locales/zh-TW/error.json +2 -2
  423. package/locales/zh-TW/file.json +88 -5
  424. package/locales/zh-TW/hotkey.json +4 -0
  425. package/locales/zh-TW/image.json +8 -0
  426. package/locales/zh-TW/labs.json +4 -0
  427. package/locales/zh-TW/marketAuth.json +42 -0
  428. package/locales/zh-TW/modelProvider.json +16 -2
  429. package/locales/zh-TW/models.json +404 -122
  430. package/locales/zh-TW/oauth.json +1 -0
  431. package/locales/zh-TW/plugin.json +36 -16
  432. package/locales/zh-TW/providers.json +3 -0
  433. package/locales/zh-TW/setting.json +100 -1
  434. package/locales/zh-TW/tool.json +28 -1
  435. package/locales/zh-TW/topic.json +1 -0
  436. package/next.config.ts +10 -12
  437. package/package.json +111 -96
  438. package/packages/agent-runtime/package.json +1 -1
  439. package/packages/agent-runtime/src/core/InterventionChecker.ts +88 -14
  440. package/packages/agent-runtime/src/core/__tests__/InterventionChecker.test.ts +504 -87
  441. package/packages/agent-runtime/src/core/__tests__/runtime.test.ts +141 -87
  442. package/packages/agent-runtime/src/core/defaultSecurityBlacklist.ts +335 -0
  443. package/packages/agent-runtime/src/core/index.ts +1 -0
  444. package/packages/agent-runtime/src/core/runtime.ts +104 -20
  445. package/packages/agent-runtime/src/types/event.ts +4 -1
  446. package/packages/agent-runtime/src/types/generalAgent.ts +72 -0
  447. package/packages/agent-runtime/src/types/index.ts +1 -0
  448. package/packages/agent-runtime/src/types/instruction.ts +50 -7
  449. package/packages/agent-runtime/src/types/runtime.ts +7 -0
  450. package/packages/agent-runtime/src/types/state.ts +18 -1
  451. package/packages/const/package.json +1 -1
  452. package/packages/const/src/auth.ts +6 -2
  453. package/packages/const/src/hotkeys.ts +9 -3
  454. package/packages/const/src/settings/common.ts +1 -0
  455. package/packages/const/src/settings/tool.ts +1 -5
  456. package/packages/const/src/url.ts +1 -0
  457. package/packages/const/src/user.ts +4 -2
  458. package/packages/const/src/utils/merge.ts +3 -3
  459. package/packages/const/src/version.ts +0 -5
  460. package/packages/context-engine/package.json +2 -2
  461. package/packages/context-engine/src/base/BaseProcessor.ts +13 -13
  462. package/packages/context-engine/src/base/BaseProvider.ts +2 -2
  463. package/packages/context-engine/src/base/__tests__/BaseProcessor.test.ts +5 -5
  464. package/packages/context-engine/src/index.ts +1 -1
  465. package/packages/context-engine/src/processors/GroupMessageFlatten.ts +8 -6
  466. package/packages/context-engine/src/processors/MessageCleanup.ts +7 -6
  467. package/packages/context-engine/src/processors/MessageContent.ts +115 -21
  468. package/packages/context-engine/src/processors/PlaceholderVariables.ts +4 -4
  469. package/packages/context-engine/src/processors/ToolCall.ts +19 -18
  470. package/packages/context-engine/src/processors/ToolMessageReorder.ts +10 -10
  471. package/packages/context-engine/src/processors/__tests__/GroupMessageFlatten.test.ts +12 -12
  472. package/packages/context-engine/src/processors/__tests__/MessageCleanup.test.ts +28 -0
  473. package/packages/context-engine/src/processors/__tests__/MessageContent.test.ts +239 -0
  474. package/packages/context-engine/src/processors/__tests__/ToolCall.test.ts +59 -0
  475. package/packages/context-engine/src/providers/HistorySummary.ts +6 -6
  476. package/packages/context-engine/src/providers/KnowledgeInjector.ts +78 -0
  477. package/packages/context-engine/src/providers/ToolSystemRole.ts +7 -7
  478. package/packages/context-engine/src/providers/index.ts +2 -0
  479. package/packages/context-engine/src/tools/ToolNameResolver.ts +1 -0
  480. package/packages/context-engine/src/tools/ToolsEngine.ts +8 -8
  481. package/packages/context-engine/src/tools/__tests__/ToolNameResolver.test.ts +57 -0
  482. package/packages/context-engine/src/types.ts +36 -35
  483. package/packages/conversation-flow/package.json +13 -0
  484. package/packages/conversation-flow/src/__tests__/fixtures/index.ts +44 -0
  485. package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistant-chain-with-followup.json +56 -0
  486. package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistantGroup/assistant-with-tools.json +145 -0
  487. package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistantGroup/index.ts +8 -0
  488. package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistantGroup/tools-with-branches.json +107 -0
  489. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/active-index-1.json +131 -0
  490. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/assistant-branch.json +96 -0
  491. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/assistant-group-branches.json +249 -0
  492. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/assistant-user-branch.json +123 -0
  493. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/conversation.json +128 -0
  494. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/index.ts +18 -0
  495. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/multi-assistant-group.json +260 -0
  496. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/nested.json +179 -0
  497. package/packages/conversation-flow/src/__tests__/fixtures/inputs/compare/index.ts +8 -0
  498. package/packages/conversation-flow/src/__tests__/fixtures/inputs/compare/simple.json +85 -0
  499. package/packages/conversation-flow/src/__tests__/fixtures/inputs/compare/with-tools.json +169 -0
  500. package/packages/conversation-flow/src/__tests__/fixtures/inputs/index.ts +12 -0
  501. package/packages/conversation-flow/src/__tests__/fixtures/inputs/linear-conversation.json +59 -0
  502. package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistant-chain-with-followup.json +135 -0
  503. package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistantGroup/assistant-with-tools.json +340 -0
  504. package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistantGroup/index.ts +8 -0
  505. package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistantGroup/tools-with-branches.json +261 -0
  506. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/active-index-1.json +246 -0
  507. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/assistant-branch.json +208 -0
  508. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/assistant-group-branches.json +481 -0
  509. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/assistant-user-branch.json +254 -0
  510. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/conversation.json +264 -0
  511. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/index.ts +18 -0
  512. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/multi-assistant-group.json +407 -0
  513. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/nested.json +405 -0
  514. package/packages/conversation-flow/src/__tests__/fixtures/outputs/compare/index.ts +8 -0
  515. package/packages/conversation-flow/src/__tests__/fixtures/outputs/compare/simple.json +224 -0
  516. package/packages/conversation-flow/src/__tests__/fixtures/outputs/compare/with-tools.json +418 -0
  517. package/packages/conversation-flow/src/__tests__/fixtures/outputs/linear-conversation.json +138 -0
  518. package/packages/conversation-flow/src/__tests__/indexing.test.ts +513 -0
  519. package/packages/conversation-flow/src/__tests__/parse.test.ts +132 -0
  520. package/packages/conversation-flow/src/__tests__/structuring.test.ts +600 -0
  521. package/packages/conversation-flow/src/index.ts +17 -0
  522. package/packages/conversation-flow/src/indexing.ts +58 -0
  523. package/packages/conversation-flow/src/parse.ts +97 -0
  524. package/packages/conversation-flow/src/structuring.ts +38 -0
  525. package/packages/conversation-flow/src/transformation/BranchResolver.ts +76 -0
  526. package/packages/conversation-flow/src/transformation/ContextTreeBuilder.ts +297 -0
  527. package/packages/conversation-flow/src/transformation/FlatListBuilder.ts +581 -0
  528. package/packages/conversation-flow/src/transformation/MessageCollector.ts +166 -0
  529. package/packages/conversation-flow/src/transformation/MessageTransformer.ts +177 -0
  530. package/packages/conversation-flow/src/transformation/__tests__/BranchResolver.test.ts +214 -0
  531. package/packages/conversation-flow/src/transformation/__tests__/ContextTreeBuilder.test.ts +449 -0
  532. package/packages/conversation-flow/src/transformation/__tests__/FlatListBuilder.test.ts +558 -0
  533. package/packages/conversation-flow/src/transformation/__tests__/MessageCollector.test.ts +220 -0
  534. package/packages/conversation-flow/src/transformation/__tests__/MessageTransformer.test.ts +286 -0
  535. package/packages/conversation-flow/src/transformation/index.ts +78 -0
  536. package/packages/conversation-flow/src/types/contextTree.ts +65 -0
  537. package/packages/conversation-flow/src/types/flatMessageList.ts +54 -0
  538. package/packages/conversation-flow/src/types/index.ts +25 -0
  539. package/packages/conversation-flow/src/types/shared.ts +63 -0
  540. package/packages/conversation-flow/vitest.config.mts +10 -0
  541. package/packages/database/migrations/0042_improve_agent_index.sql +1 -0
  542. package/packages/database/migrations/0043_add_ai_model_settings.sql +1 -0
  543. package/packages/database/migrations/0044_high_toxin.sql +1 -0
  544. package/packages/database/migrations/0045_add_tool_intervention.sql +1 -0
  545. package/packages/database/migrations/0046_add_parent_id.sql +15 -0
  546. package/packages/database/migrations/0047_add_slug_document.sql +2 -0
  547. package/packages/database/migrations/0048_add_editor_data.sql +1 -0
  548. package/packages/database/migrations/0049_better_auth.sql +49 -0
  549. package/packages/database/migrations/0050_thread_and_user_id.sql +18 -0
  550. package/packages/database/migrations/0051_add_market_into_user_settings.sql +1 -0
  551. package/packages/database/migrations/0052_topic_and_messages.sql +9 -0
  552. package/packages/database/migrations/0053_better_auth_admin.sql +5 -0
  553. package/packages/database/migrations/0054_better_auth_two_factor.sql +47 -0
  554. package/packages/database/migrations/0055_rename_phone_number_to_phone.sql +4 -0
  555. package/packages/database/migrations/meta/0039_snapshot.json +1 -1
  556. package/packages/database/migrations/meta/0042_snapshot.json +7800 -0
  557. package/packages/database/migrations/meta/0043_snapshot.json +8419 -0
  558. package/packages/database/migrations/meta/0044_snapshot.json +7813 -0
  559. package/packages/database/migrations/meta/0045_snapshot.json +8431 -0
  560. package/packages/database/migrations/meta/0046_snapshot.json +7879 -0
  561. package/packages/database/migrations/meta/0047_snapshot.json +7907 -0
  562. package/packages/database/migrations/meta/0048_snapshot.json +7913 -0
  563. package/packages/database/migrations/meta/0049_snapshot.json +8151 -0
  564. package/packages/database/migrations/meta/0050_snapshot.json +8792 -0
  565. package/packages/database/migrations/meta/0051_snapshot.json +8168 -0
  566. package/packages/database/migrations/meta/0052_snapshot.json +8850 -0
  567. package/packages/database/migrations/meta/0053_snapshot.json +8247 -0
  568. package/packages/database/migrations/meta/0054_snapshot.json +8402 -0
  569. package/packages/database/migrations/meta/0055_snapshot.json +8396 -0
  570. package/packages/database/migrations/meta/_journal.json +98 -0
  571. package/packages/database/package.json +3 -3
  572. package/packages/database/src/client/db.test.ts +1 -2
  573. package/packages/database/src/client/db.ts +39 -39
  574. package/packages/database/src/client/pglite.ts +1 -1
  575. package/packages/database/src/core/db-adaptor.ts +4 -4
  576. package/packages/database/src/core/electron.ts +1 -1
  577. package/packages/database/src/core/migrations.json +155 -0
  578. package/packages/database/src/core/web-server.ts +2 -1
  579. package/packages/database/src/index.ts +2 -0
  580. package/packages/database/src/models/__tests__/agent.test.ts +274 -6
  581. package/packages/database/src/models/__tests__/apiKey.test.ts +444 -0
  582. package/packages/database/src/models/__tests__/asyncTask.test.ts +1 -2
  583. package/packages/database/src/models/__tests__/chunk.test.ts +38 -0
  584. package/packages/database/src/models/__tests__/document.test.ts +312 -0
  585. package/packages/database/src/models/__tests__/embedding.test.ts +294 -0
  586. package/packages/database/src/models/__tests__/file.test.ts +95 -31
  587. package/packages/database/src/models/__tests__/generation.test.ts +1 -2
  588. package/packages/database/src/models/__tests__/generationBatch.test.ts +1 -2
  589. package/packages/database/src/models/__tests__/messages/message.create.test.ts +549 -0
  590. package/packages/database/src/models/__tests__/messages/message.delete.test.ts +481 -0
  591. package/packages/database/src/models/__tests__/messages/message.query.test.ts +1187 -0
  592. package/packages/database/src/models/__tests__/messages/message.stats.test.ts +633 -0
  593. package/packages/database/src/models/__tests__/messages/message.update.test.ts +757 -0
  594. package/packages/database/src/models/__tests__/oauthHandoff.test.ts +261 -0
  595. package/packages/database/src/models/__tests__/session.test.ts +1 -2
  596. package/packages/database/src/models/__tests__/thread.test.ts +327 -0
  597. package/packages/database/src/models/__tests__/topic.test.ts +12 -6
  598. package/packages/database/src/models/__tests__/user.test.ts +372 -0
  599. package/packages/database/src/models/__tests__/userMemories.test.ts +1382 -0
  600. package/packages/database/src/models/agent.ts +38 -14
  601. package/packages/database/src/models/aiModel.ts +1 -0
  602. package/packages/database/src/models/aiProvider.ts +7 -7
  603. package/packages/database/src/models/apiKey.ts +2 -2
  604. package/packages/database/src/models/chunk.ts +4 -2
  605. package/packages/database/src/models/document.ts +15 -10
  606. package/packages/database/src/models/drizzleMigration.ts +1 -1
  607. package/packages/database/src/models/file.ts +67 -42
  608. package/packages/database/src/models/message.ts +21 -93
  609. package/packages/database/src/models/oauthHandoff.ts +19 -19
  610. package/packages/database/src/models/session.ts +72 -20
  611. package/packages/database/src/models/topic.ts +10 -10
  612. package/packages/database/src/models/user.ts +11 -9
  613. package/packages/database/src/models/userMemory.ts +993 -0
  614. package/packages/database/src/repositories/aiInfra/index.test.ts +205 -7
  615. package/packages/database/src/repositories/aiInfra/index.ts +9 -8
  616. package/packages/database/src/repositories/dataExporter/index.test.ts +1 -1
  617. package/packages/database/src/repositories/dataImporter/__tests__/index.test.ts +1 -2
  618. package/packages/database/src/repositories/dataImporter/deprecated/__tests__/index.test.ts +1 -1
  619. package/packages/database/src/repositories/dataImporter/deprecated/index.ts +6 -6
  620. package/packages/database/src/repositories/dataImporter/index.ts +70 -71
  621. package/packages/database/src/repositories/knowledge/index.test.ts +312 -0
  622. package/packages/database/src/repositories/knowledge/index.ts +417 -0
  623. package/packages/database/src/repositories/tableViewer/index.test.ts +3 -3
  624. package/packages/database/src/repositories/tableViewer/index.ts +4 -5
  625. package/packages/database/src/schemas/agent.ts +7 -3
  626. package/packages/database/src/schemas/aiInfra.ts +3 -2
  627. package/packages/database/src/schemas/betterAuth.ts +120 -0
  628. package/packages/database/src/schemas/file.ts +80 -0
  629. package/packages/database/src/schemas/generation.ts +16 -16
  630. package/packages/database/src/schemas/index.ts +1 -1
  631. package/packages/database/src/schemas/message.ts +14 -14
  632. package/packages/database/src/schemas/nextauth.ts +3 -3
  633. package/packages/database/src/schemas/oidc.ts +36 -36
  634. package/packages/database/src/schemas/rag.ts +32 -2
  635. package/packages/database/src/schemas/ragEvals.ts +1 -2
  636. package/packages/database/src/schemas/relations.ts +2 -3
  637. package/packages/database/src/schemas/topic.ts +16 -7
  638. package/packages/database/src/schemas/user.ts +19 -5
  639. package/packages/database/src/schemas/userMemories.ts +22 -5
  640. package/packages/database/src/server/models/__tests__/user.test.ts +2 -5
  641. package/packages/database/src/server/models/ragEval/evaluation.ts +1 -1
  642. package/packages/database/src/utils/genWhere.test.ts +243 -0
  643. package/packages/electron-client-ipc/package.json +1 -1
  644. package/packages/electron-client-ipc/src/events/index.ts +6 -1
  645. package/packages/electron-client-ipc/src/events/remoteServer.ts +8 -0
  646. package/packages/electron-client-ipc/src/types/localSystem.ts +30 -2
  647. package/packages/electron-server-ipc/package.json +2 -2
  648. package/packages/electron-server-ipc/src/ipcClient.ts +31 -31
  649. package/packages/electron-server-ipc/src/ipcServer.ts +15 -15
  650. package/packages/fetch-sse/package.json +29 -0
  651. package/packages/fetch-sse/src/__tests__/fetchSSE.test.ts +708 -0
  652. package/packages/fetch-sse/src/__tests__/headers.test.ts +367 -0
  653. package/packages/fetch-sse/src/__tests__/parseError.test.ts +91 -0
  654. package/packages/fetch-sse/src/fetchSSE.ts +536 -0
  655. package/packages/fetch-sse/src/headers.ts +27 -0
  656. package/packages/fetch-sse/src/parseError.ts +24 -0
  657. package/packages/fetch-sse/src/request.ts +28 -0
  658. package/packages/file-loaders/package.json +3 -3
  659. package/packages/file-loaders/src/loaders/docx/index.ts +1 -1
  660. package/packages/memory-extract/package.json +4 -4
  661. package/packages/model-bank/package.json +1 -0
  662. package/packages/model-bank/src/aiModels/aihubmix.ts +231 -4
  663. package/packages/model-bank/src/aiModels/anthropic.ts +37 -2
  664. package/packages/model-bank/src/aiModels/bedrock.ts +55 -12
  665. package/packages/model-bank/src/aiModels/cometapi.ts +8 -8
  666. package/packages/model-bank/src/aiModels/fal.ts +2 -2
  667. package/packages/model-bank/src/aiModels/google.ts +155 -93
  668. package/packages/model-bank/src/aiModels/index.ts +3 -0
  669. package/packages/model-bank/src/aiModels/infiniai.ts +5 -22
  670. package/packages/model-bank/src/aiModels/mistral.ts +2 -1
  671. package/packages/model-bank/src/aiModels/moonshot.ts +46 -0
  672. package/packages/model-bank/src/aiModels/nebius.ts +1 -1
  673. package/packages/model-bank/src/aiModels/newapi.ts +3 -3
  674. package/packages/model-bank/src/aiModels/novita.ts +3 -2
  675. package/packages/model-bank/src/aiModels/nvidia.ts +14 -0
  676. package/packages/model-bank/src/aiModels/ollamacloud.ts +38 -4
  677. package/packages/model-bank/src/aiModels/openai.ts +113 -42
  678. package/packages/model-bank/src/aiModels/openrouter.ts +29 -1
  679. package/packages/model-bank/src/aiModels/qiniu.ts +126 -0
  680. package/packages/model-bank/src/aiModels/qwen.ts +209 -12
  681. package/packages/model-bank/src/aiModels/siliconcloud.ts +20 -61
  682. package/packages/model-bank/src/aiModels/stepfun.ts +1 -1
  683. package/packages/model-bank/src/aiModels/vercelaigateway.ts +1 -18
  684. package/packages/model-bank/src/aiModels/vertexai.ts +92 -1
  685. package/packages/model-bank/src/aiModels/volcengine.ts +4 -4
  686. package/packages/model-bank/src/aiModels/wenxin.ts +1348 -291
  687. package/packages/model-bank/src/aiModels/xai.ts +85 -6
  688. package/packages/model-bank/src/aiModels/zenmux.ts +1455 -0
  689. package/packages/model-bank/src/aiModels/zhipu.ts +1 -1
  690. package/packages/model-bank/src/const/modelProvider.ts +1 -0
  691. package/packages/model-bank/src/standard-parameters/index.ts +23 -14
  692. package/packages/model-bank/src/types/aiModel.ts +29 -10
  693. package/packages/model-runtime/package.json +3 -3
  694. package/packages/model-runtime/src/const/models.ts +62 -24
  695. package/packages/model-runtime/src/core/RouterRuntime/createRuntime.ts +42 -18
  696. package/packages/model-runtime/src/core/contextBuilders/anthropic.test.ts +17 -11
  697. package/packages/model-runtime/src/core/contextBuilders/anthropic.ts +15 -1
  698. package/packages/model-runtime/src/core/contextBuilders/google.test.ts +548 -15
  699. package/packages/model-runtime/src/core/contextBuilders/google.ts +57 -9
  700. package/packages/model-runtime/src/core/contextBuilders/openai.test.ts +93 -7
  701. package/packages/model-runtime/src/core/contextBuilders/openai.ts +47 -14
  702. package/packages/model-runtime/src/core/openaiCompatibleFactory/createImage.test.ts +1 -1
  703. package/packages/model-runtime/src/core/openaiCompatibleFactory/createImage.ts +1 -1
  704. package/packages/model-runtime/src/core/openaiCompatibleFactory/index.test.ts +113 -72
  705. package/packages/model-runtime/src/core/openaiCompatibleFactory/index.ts +153 -106
  706. package/packages/model-runtime/src/core/parameterResolver.test.ts +34 -50
  707. package/packages/model-runtime/src/core/parameterResolver.ts +0 -38
  708. package/packages/model-runtime/src/core/streams/bedrock/claude.ts +17 -3
  709. package/packages/model-runtime/src/core/streams/google/google-ai.test.ts +1600 -807
  710. package/packages/model-runtime/src/core/streams/google/index.ts +139 -10
  711. package/packages/model-runtime/src/core/streams/ollama.test.ts +67 -0
  712. package/packages/model-runtime/src/core/streams/ollama.ts +5 -5
  713. package/packages/model-runtime/src/core/streams/openai/__snapshots__/responsesStream.test.ts.snap +1007 -0
  714. package/packages/model-runtime/src/core/streams/openai/openai.test.ts +310 -0
  715. package/packages/model-runtime/src/core/streams/openai/openai.ts +67 -0
  716. package/packages/model-runtime/src/core/streams/openai/responsesStream.test.ts +1 -1
  717. package/packages/model-runtime/src/core/streams/protocol.ts +20 -0
  718. package/packages/model-runtime/src/core/streams/vertex-ai.ts +1 -2
  719. package/packages/model-runtime/src/core/usageConverters/index.ts +1 -0
  720. package/packages/model-runtime/src/core/usageConverters/utils/resolveImageSinglePrice.ts +34 -0
  721. package/packages/model-runtime/src/helpers/mergeChatMethodOptions.ts +2 -1
  722. package/packages/model-runtime/src/index.ts +2 -1
  723. package/packages/model-runtime/src/providers/aihubmix/index.test.ts +1 -1
  724. package/packages/model-runtime/src/providers/anthropic/generateObject.test.ts +1 -1
  725. package/packages/model-runtime/src/providers/anthropic/index.test.ts +1 -1
  726. package/packages/model-runtime/src/providers/anthropic/index.ts +21 -70
  727. package/packages/model-runtime/src/providers/anthropic/resolveCacheTTL.ts +44 -0
  728. package/packages/model-runtime/src/providers/anthropic/resolveMaxTokens.ts +35 -0
  729. package/packages/model-runtime/src/providers/azureai/index.ts +34 -2
  730. package/packages/model-runtime/src/providers/baichuan/index.test.ts +1 -1
  731. package/packages/model-runtime/src/providers/bedrock/index.test.ts +133 -19
  732. package/packages/model-runtime/src/providers/bedrock/index.ts +89 -16
  733. package/packages/model-runtime/src/providers/bfl/createImage.test.ts +4 -4
  734. package/packages/model-runtime/src/providers/bfl/createImage.ts +1 -1
  735. package/packages/model-runtime/src/providers/cloudflare/index.test.ts +1 -1
  736. package/packages/model-runtime/src/providers/cohere/index.test.ts +1 -1
  737. package/packages/model-runtime/src/providers/comfyui/__tests__/index.test.ts +1 -2
  738. package/packages/model-runtime/src/providers/comfyui/auth/AuthManager.ts +1 -2
  739. package/packages/model-runtime/src/providers/comfyui/index.ts +2 -7
  740. package/packages/model-runtime/src/providers/deepseek/index.test.ts +86 -0
  741. package/packages/model-runtime/src/providers/deepseek/index.ts +24 -0
  742. package/packages/model-runtime/src/providers/google/createImage.test.ts +8 -7
  743. package/packages/model-runtime/src/providers/google/createImage.ts +14 -9
  744. package/packages/model-runtime/src/providers/google/generateObject.test.ts +1 -1
  745. package/packages/model-runtime/src/providers/google/index.test.ts +98 -5
  746. package/packages/model-runtime/src/providers/google/index.ts +36 -11
  747. package/packages/model-runtime/src/providers/groq/index.test.ts +1 -1
  748. package/packages/model-runtime/src/providers/hunyuan/index.test.ts +1 -1
  749. package/packages/model-runtime/src/providers/minimax/createImage.test.ts +1 -1
  750. package/packages/model-runtime/src/providers/minimax/index.ts +36 -6
  751. package/packages/model-runtime/src/providers/mistral/index.test.ts +1 -1
  752. package/packages/model-runtime/src/providers/moonshot/index.test.ts +1 -1
  753. package/packages/model-runtime/src/providers/moonshot/index.ts +17 -4
  754. package/packages/model-runtime/src/providers/newapi/index.test.ts +3 -75
  755. package/packages/model-runtime/src/providers/newapi/index.ts +59 -29
  756. package/packages/model-runtime/src/providers/novita/__snapshots__/index.test.ts.snap +584 -0
  757. package/packages/model-runtime/src/providers/novita/index.test.ts +1 -1
  758. package/packages/model-runtime/src/providers/ollama/index.test.ts +43 -32
  759. package/packages/model-runtime/src/providers/ollama/index.ts +31 -7
  760. package/packages/model-runtime/src/providers/openai/__snapshots__/index.test.ts.snap +517 -0
  761. package/packages/model-runtime/src/providers/openai/index.test.ts +44 -0
  762. package/packages/model-runtime/src/providers/openrouter/index.test.ts +4 -3
  763. package/packages/model-runtime/src/providers/openrouter/index.ts +1 -1
  764. package/packages/model-runtime/src/providers/perplexity/index.test.ts +1 -1
  765. package/packages/model-runtime/src/providers/ppio/__snapshots__/index.test.ts.snap +27 -0
  766. package/packages/model-runtime/src/providers/ppio/index.test.ts +1 -1
  767. package/packages/model-runtime/src/providers/qwen/createImage.test.ts +1 -1
  768. package/packages/model-runtime/src/providers/qwen/index.ts +9 -3
  769. package/packages/model-runtime/src/providers/search1api/index.test.ts +1 -1
  770. package/packages/model-runtime/src/providers/siliconcloud/createImage.ts +1 -1
  771. package/packages/model-runtime/src/providers/taichu/index.test.ts +1 -1
  772. package/packages/model-runtime/src/providers/wenxin/index.test.ts +1 -1
  773. package/packages/model-runtime/src/providers/wenxin/index.ts +22 -1
  774. package/packages/model-runtime/src/providers/zenmux/index.test.ts +320 -0
  775. package/packages/model-runtime/src/providers/zenmux/index.ts +84 -0
  776. package/packages/model-runtime/src/providers/zhipu/index.test.ts +1 -1
  777. package/packages/model-runtime/src/runtimeMap.ts +3 -0
  778. package/packages/model-runtime/src/types/chat.ts +16 -0
  779. package/packages/model-runtime/src/types/error.ts +11 -8
  780. package/packages/model-runtime/src/types/toolsCalling.ts +3 -1
  781. package/packages/model-runtime/src/utils/errorResponse.test.ts +1 -1
  782. package/packages/model-runtime/src/utils/googleErrorParser.test.ts +125 -0
  783. package/packages/model-runtime/src/utils/googleErrorParser.ts +108 -77
  784. package/packages/model-runtime/src/utils/modelParse.ts +6 -0
  785. package/packages/model-runtime/src/utils/postProcessModelList.ts +15 -13
  786. package/packages/obervability-otel/package.json +15 -15
  787. package/packages/obervability-otel/src/api.ts +2 -0
  788. package/packages/obervability-otel/src/node.ts +17 -7
  789. package/packages/obervability-otel/src/trpc/convention.ts +16 -0
  790. package/packages/obervability-otel/src/trpc/index.test.ts +38 -0
  791. package/packages/obervability-otel/src/trpc/index.ts +62 -0
  792. package/packages/obervability-otel/src/trpc/metrics.ts +31 -0
  793. package/packages/prompts/package.json +1 -1
  794. package/packages/prompts/src/prompts/files/__snapshots__/knowledgeBase.test.ts.snap +103 -0
  795. package/packages/prompts/src/prompts/files/index.ts +3 -0
  796. package/packages/prompts/src/prompts/files/knowledgeBase.test.ts +167 -0
  797. package/packages/prompts/src/prompts/files/knowledgeBase.ts +85 -0
  798. package/packages/prompts/src/prompts/knowledgeBaseQA/__snapshots__/formatFileContents.test.ts.snap +75 -0
  799. package/packages/prompts/src/prompts/knowledgeBaseQA/__snapshots__/formatNoSearchResults.test.ts.snap +45 -0
  800. package/packages/prompts/src/prompts/knowledgeBaseQA/__snapshots__/formatSearchResults.test.ts.snap +82 -0
  801. package/packages/prompts/src/prompts/knowledgeBaseQA/formatFileContents.test.ts +118 -0
  802. package/packages/prompts/src/prompts/knowledgeBaseQA/formatFileContents.ts +31 -0
  803. package/packages/prompts/src/prompts/knowledgeBaseQA/formatNoSearchResults.test.ts +25 -0
  804. package/packages/prompts/src/prompts/knowledgeBaseQA/formatNoSearchResults.ts +13 -0
  805. package/packages/prompts/src/prompts/knowledgeBaseQA/formatSearchResults.test.ts +191 -0
  806. package/packages/prompts/src/prompts/knowledgeBaseQA/formatSearchResults.ts +50 -0
  807. package/packages/prompts/src/prompts/knowledgeBaseQA/index.ts +6 -0
  808. package/packages/python-interpreter/src/worker.ts +18 -18
  809. package/packages/ssrf-safe-fetch/index.browser.ts +14 -0
  810. package/packages/ssrf-safe-fetch/index.ts +4 -1
  811. package/packages/ssrf-safe-fetch/package.json +9 -2
  812. package/packages/types/src/agent/chatConfig.ts +29 -8
  813. package/packages/types/src/aiChat.ts +2 -0
  814. package/packages/types/src/aiProvider.ts +1 -1
  815. package/packages/types/src/discover/assistants.ts +16 -0
  816. package/packages/types/src/discover/mcp.ts +6 -0
  817. package/packages/types/src/document/index.ts +50 -38
  818. package/packages/types/src/exportConfig.ts +15 -15
  819. package/packages/types/src/fetch.ts +9 -9
  820. package/packages/types/src/files/index.ts +3 -0
  821. package/packages/types/src/files/list.ts +11 -1
  822. package/packages/types/src/files/upload.ts +1 -1
  823. package/packages/types/src/generation/index.ts +5 -5
  824. package/packages/types/src/hotkey.ts +6 -5
  825. package/packages/types/src/importer.ts +6 -6
  826. package/packages/types/src/index.ts +6 -1
  827. package/packages/types/src/knowledgeBase/index.ts +1 -0
  828. package/packages/types/src/llm.ts +1 -1
  829. package/packages/types/src/message/common/base.ts +28 -2
  830. package/packages/types/src/message/common/metadata.ts +29 -2
  831. package/packages/types/src/message/common/tools.ts +20 -1
  832. package/packages/types/src/message/db/item.ts +15 -1
  833. package/packages/types/src/message/ui/chat.ts +25 -2
  834. package/packages/types/src/message/ui/extra.ts +2 -2
  835. package/packages/types/src/message/ui/params.ts +66 -7
  836. package/packages/types/src/meta.ts +7 -3
  837. package/packages/types/src/openai/chat.ts +15 -15
  838. package/packages/types/src/openai/image.ts +1 -1
  839. package/packages/types/src/plugins/mcp.ts +33 -30
  840. package/packages/types/src/plugins/protocol.ts +43 -43
  841. package/packages/types/src/rag.ts +13 -4
  842. package/packages/types/src/search.ts +4 -4
  843. package/packages/types/src/serverConfig.ts +2 -6
  844. package/packages/types/src/session/agentSession.ts +2 -0
  845. package/packages/types/src/tool/builtin.ts +15 -4
  846. package/packages/types/src/tool/intervention.ts +70 -3
  847. package/packages/types/src/tool/plugin.ts +3 -3
  848. package/packages/types/src/tool/search/index.ts +8 -2
  849. package/packages/types/src/topic/thread.ts +3 -3
  850. package/packages/types/src/topic/topic.ts +16 -2
  851. package/packages/types/src/usage/usageRecord.ts +54 -0
  852. package/packages/types/src/user/index.ts +2 -76
  853. package/packages/types/src/user/preference.ts +112 -0
  854. package/packages/types/src/user/settings/general.ts +3 -0
  855. package/packages/types/src/user/settings/hotkey.ts +1 -1
  856. package/packages/types/src/user/settings/index.ts +26 -0
  857. package/packages/types/src/user/settings/keyVaults.ts +0 -67
  858. package/packages/types/src/user/settings/market.ts +17 -0
  859. package/packages/types/src/user/settings/tool.ts +2 -39
  860. package/packages/types/src/userMemory/index.ts +3 -0
  861. package/packages/types/src/userMemory/layers.ts +54 -0
  862. package/packages/types/src/userMemory/shared.ts +64 -0
  863. package/packages/types/src/userMemory/tools.ts +240 -0
  864. package/packages/utils/package.json +2 -2
  865. package/packages/utils/src/apiKey.test.ts +139 -0
  866. package/packages/utils/src/client/clipboard.ts +2 -2
  867. package/packages/utils/src/client/exportFile.ts +10 -10
  868. package/packages/utils/src/client/parserPlaceholder.ts +19 -19
  869. package/packages/utils/src/client/topic.ts +10 -10
  870. package/packages/utils/src/client/xor-obfuscation.ts +11 -11
  871. package/packages/utils/src/clientIP.ts +6 -6
  872. package/packages/utils/src/colorUtils.test.ts +167 -0
  873. package/packages/utils/src/compass.ts +11 -11
  874. package/packages/utils/src/compressImage.ts +3 -3
  875. package/packages/utils/src/format.ts +2 -2
  876. package/packages/utils/src/imageToBase64.ts +17 -10
  877. package/packages/utils/src/index.ts +2 -1
  878. package/packages/utils/src/merge.ts +3 -3
  879. package/packages/utils/src/multimodalContent.ts +25 -0
  880. package/packages/utils/src/object.ts +3 -3
  881. package/packages/utils/src/sanitizeUTF8.ts +4 -4
  882. package/packages/utils/src/server/__tests__/auth.test.ts +52 -0
  883. package/packages/utils/src/server/__tests__/response.test.ts +79 -0
  884. package/packages/utils/src/server/auth.ts +24 -7
  885. package/packages/utils/src/server/geo.ts +9 -9
  886. package/packages/utils/src/server/index.ts +1 -0
  887. package/packages/utils/src/server/response.ts +110 -0
  888. package/packages/utils/src/server/validateRedirectHost.test.ts +352 -0
  889. package/packages/utils/src/server/xor.ts +7 -7
  890. package/packages/utils/src/time.ts +4 -0
  891. package/packages/utils/src/tokenizer/index.ts +3 -11
  892. package/packages/utils/src/toolManifest.ts +4 -4
  893. package/packages/utils/src/trace.test.ts +359 -0
  894. package/packages/utils/src/uriParser.ts +4 -4
  895. package/packages/web-crawler/package.json +2 -2
  896. package/packages/web-crawler/src/crawImpl/browserless.ts +1 -1
  897. package/packages/web-crawler/src/crawImpl/naive.ts +9 -9
  898. package/packages/web-crawler/src/crawler.ts +5 -5
  899. package/packages/web-crawler/src/type.ts +4 -4
  900. package/packages/web-crawler/src/urlRules.ts +13 -13
  901. package/packages/web-crawler/src/utils/appUrlRules.ts +5 -5
  902. package/packages/web-crawler/tsconfig.json +0 -1
  903. package/renovate.json +40 -1
  904. package/scripts/checkConsoleLog.mts +148 -0
  905. package/scripts/migrateServerDB/errorHint.js +1 -7
  906. package/scripts/prebuild.mts +20 -10
  907. package/src/app/(backend)/api/auth/[...all]/route.ts +19 -0
  908. package/src/app/(backend)/api/auth/check-user/route.ts +62 -0
  909. package/src/app/(backend)/api/webhooks/clerk/route.ts +1 -2
  910. package/src/app/(backend)/f/[id]/route.ts +55 -0
  911. package/src/app/(backend)/market/agent/[[...segments]]/route.ts +153 -0
  912. package/src/app/(backend)/market/oidc/[[...segments]]/route.ts +207 -0
  913. package/src/app/(backend)/middleware/auth/index.ts +22 -4
  914. package/src/app/(backend)/middleware/auth/utils.test.ts +16 -0
  915. package/src/app/(backend)/middleware/auth/utils.ts +13 -10
  916. package/src/app/(backend)/trpc/async/[trpc]/route.ts +9 -3
  917. package/src/app/(backend)/trpc/desktop/[trpc]/route.ts +15 -9
  918. package/src/app/(backend)/trpc/lambda/[trpc]/route.ts +9 -3
  919. package/src/app/(backend)/trpc/mobile/[trpc]/route.ts +9 -3
  920. package/src/app/(backend)/trpc/tools/[trpc]/route.ts +9 -3
  921. package/src/app/(backend)/webapi/chat/[provider]/route.test.ts +1 -0
  922. package/src/app/(backend)/webapi/chat/[provider]/route.ts +1 -1
  923. package/src/app/(backend)/webapi/models/[provider]/pull/route.ts +1 -1
  924. package/src/app/(backend)/webapi/models/[provider]/route.ts +1 -1
  925. package/src/app/(backend)/webapi/stt/openai/route.ts +0 -2
  926. package/src/app/(backend)/webapi/text-to-image/[provider]/route.ts +1 -1
  927. package/src/app/(backend)/webapi/tts/edge/route.ts +8 -2
  928. package/src/app/(backend)/webapi/tts/microsoft/route.ts +8 -2
  929. package/src/app/(backend)/webapi/tts/openai/route.ts +15 -3
  930. package/src/app/[variants]/(auth)/reset-password/layout.tsx +12 -0
  931. package/src/app/[variants]/(auth)/reset-password/page.tsx +209 -0
  932. package/src/app/[variants]/(auth)/signin/layout.tsx +12 -0
  933. package/src/app/[variants]/(auth)/signin/page.tsx +448 -0
  934. package/src/app/[variants]/(auth)/signup/[[...signup]]/BetterAuthSignUpForm.tsx +192 -0
  935. package/src/app/[variants]/(auth)/signup/[[...signup]]/page.tsx +30 -12
  936. package/src/app/[variants]/(auth)/verify-email/layout.tsx +12 -0
  937. package/src/app/[variants]/(auth)/verify-email/page.tsx +164 -0
  938. package/src/app/[variants]/(main)/(mobile)/me/(home)/__tests__/UserBanner.test.tsx +19 -14
  939. package/src/app/[variants]/(main)/(mobile)/me/(home)/__tests__/useCategory.test.tsx +15 -33
  940. package/src/app/[variants]/(main)/(mobile)/me/(home)/features/UserBanner.tsx +7 -11
  941. package/src/app/[variants]/(main)/(mobile)/me/(home)/features/useCategory.tsx +9 -41
  942. package/src/app/[variants]/(main)/(mobile)/me/(home)/index.tsx +25 -0
  943. package/src/app/[variants]/(main)/(mobile)/me/(home)/layout.tsx +13 -16
  944. package/src/app/[variants]/(main)/(mobile)/me/profile/features/Category.tsx +22 -27
  945. package/src/app/[variants]/(main)/(mobile)/me/profile/features/Header.tsx +3 -3
  946. package/src/app/[variants]/(main)/(mobile)/me/profile/index.tsx +16 -0
  947. package/src/app/[variants]/(main)/(mobile)/me/profile/layout.tsx +9 -11
  948. package/src/app/[variants]/(main)/(mobile)/me/settings/features/Header.tsx +3 -3
  949. package/src/app/[variants]/(main)/(mobile)/me/settings/features/useCategory.tsx +8 -18
  950. package/src/app/[variants]/(main)/(mobile)/me/settings/index.tsx +16 -0
  951. package/src/app/[variants]/(main)/(mobile)/me/settings/layout.tsx +15 -13
  952. package/src/app/[variants]/(main)/changelog/_layout/Desktop/index.tsx +6 -5
  953. package/src/app/[variants]/(main)/changelog/_layout/Mobile/Header.tsx +3 -3
  954. package/src/app/[variants]/(main)/changelog/_layout/Mobile/index.tsx +5 -5
  955. package/src/app/[variants]/(main)/changelog/features/Post.tsx +7 -4
  956. package/src/app/[variants]/(main)/changelog/index.tsx +55 -0
  957. package/src/app/[variants]/(main)/chat/_layout/Desktop/SessionPanel.tsx +12 -7
  958. package/src/app/[variants]/(main)/chat/_layout/Desktop/index.tsx +7 -8
  959. package/src/app/[variants]/(main)/chat/_layout/FeatureFlagsProvider.tsx +24 -0
  960. package/src/app/[variants]/(main)/chat/_layout/Mobile.tsx +5 -4
  961. package/src/app/[variants]/(main)/chat/_layout/type.ts +0 -1
  962. package/src/app/[variants]/(main)/chat/components/ConversationArea.tsx +29 -0
  963. package/src/app/[variants]/(main)/chat/components/PortalPanel.tsx +28 -0
  964. package/src/app/[variants]/(main)/chat/components/SessionPanel.tsx +33 -0
  965. package/src/app/[variants]/(main)/chat/components/TopicSidebar.tsx +30 -0
  966. package/src/app/[variants]/(main)/chat/components/WorkspaceLayout.tsx +60 -0
  967. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatHydration/index.tsx +42 -0
  968. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/ClassicChat.tsx +81 -0
  969. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/GroupChat.tsx +126 -0
  970. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/MessageFromUrl.tsx +30 -0
  971. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/index.tsx +16 -0
  972. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/V1Mobile/index.tsx +89 -0
  973. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/V1Mobile/useSend.ts +109 -0
  974. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/useSend.ts +322 -0
  975. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/ChatItem/Thread.tsx +62 -0
  976. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/ChatItem/index.tsx +85 -0
  977. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/Content.tsx +45 -0
  978. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/WelcomeChatItem/AgentWelcome/OpeningQuestions.tsx +75 -0
  979. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/WelcomeChatItem/GroupWelcome/GroupUsageSuggest.tsx +164 -0
  980. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/index.tsx +28 -0
  981. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatMinimap/index.tsx +380 -0
  982. package/src/app/[variants]/(main)/chat/components/conversation/features/ThreadHydration.tsx +45 -0
  983. package/src/app/[variants]/(main)/chat/components/topic/features/Topic/TopicListContent/TopicItem/TopicContent.tsx +258 -0
  984. package/src/app/[variants]/(main)/chat/components/topic/features/Topic/TopicListContent/TopicItem/index.tsx +116 -0
  985. package/src/app/[variants]/(main)/chat/features/PageTitle/index.tsx +1 -2
  986. package/src/app/[variants]/(main)/chat/index.tsx +29 -0
  987. package/src/app/[variants]/(main)/chat/session/features/SessionHydration.tsx +47 -0
  988. package/src/app/[variants]/(main)/chat/session/features/SessionListContent/Inbox/index.tsx +61 -0
  989. package/src/app/[variants]/(main)/chat/session/features/SessionListContent/List/Item/Actions.tsx +204 -0
  990. package/src/app/[variants]/(main)/chat/session/features/SessionListContent/List/Item/index.tsx +157 -0
  991. package/src/app/[variants]/(main)/chat/session/features/SessionListContent/List/index.tsx +100 -0
  992. package/src/app/[variants]/(main)/chat/session/layout/Mobile/SessionHeader.tsx +44 -0
  993. package/src/app/[variants]/(main)/chat/settings/_layout/Desktop/Header.tsx +3 -3
  994. package/src/app/[variants]/(main)/chat/settings/_layout/Mobile/Header.tsx +3 -3
  995. package/src/app/[variants]/(main)/chat/settings/features/AgentInfoDescription/index.tsx +349 -0
  996. package/src/app/[variants]/(main)/chat/settings/features/HeaderContent.tsx +2 -2
  997. package/src/app/[variants]/(main)/chat/settings/features/PublishResultModal/index.tsx +64 -0
  998. package/src/app/[variants]/(main)/chat/settings/features/SmartAgentActionButton/MarketPublishButton.tsx +196 -0
  999. package/src/app/[variants]/(main)/chat/settings/features/SmartAgentActionButton/MarketPublishModal.tsx +376 -0
  1000. package/src/app/[variants]/(main)/chat/settings/features/SmartAgentActionButton/index.tsx +75 -0
  1001. package/src/app/[variants]/(main)/chat/settings/index.tsx +65 -0
  1002. package/src/app/[variants]/(main)/components/Link.tsx +21 -0
  1003. package/src/app/[variants]/(main)/discover/(detail)/_layout/Desktop/index.tsx +38 -0
  1004. package/src/app/[variants]/(main)/discover/(detail)/_layout/Mobile/index.tsx +3 -3
  1005. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Capabilities/Block.tsx +27 -0
  1006. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Capabilities/Plugins.tsx +37 -0
  1007. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Nav.tsx +129 -0
  1008. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Overview/TagList.tsx +56 -0
  1009. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Overview/index.tsx +98 -0
  1010. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Related/index.tsx +40 -0
  1011. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/SystemRole/TagList.tsx +56 -0
  1012. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/SystemRole/index.tsx +68 -0
  1013. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Versions/index.tsx +137 -0
  1014. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/index.tsx +51 -0
  1015. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Header.tsx +176 -0
  1016. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Sidebar/ActionButton/AddAgent.tsx +178 -0
  1017. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Sidebar/ActionButton/index.tsx +31 -0
  1018. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Sidebar/Related/index.tsx +57 -0
  1019. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Sidebar/TocList/index.tsx +77 -0
  1020. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/StatusPage/index.tsx +113 -0
  1021. package/src/app/[variants]/(main)/discover/(detail)/assistant/index.tsx +63 -0
  1022. package/src/app/[variants]/(main)/discover/(detail)/features/Breadcrumb.tsx +4 -3
  1023. package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Details/Related/index.tsx +32 -0
  1024. package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Details/Versions/index.tsx +76 -0
  1025. package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Details/index.tsx +59 -0
  1026. package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Sidebar/Related/index.tsx +44 -0
  1027. package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Sidebar/ServerConfig.tsx +36 -0
  1028. package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Sidebar/TocList/index.tsx +98 -0
  1029. package/src/app/[variants]/(main)/discover/(detail)/mcp/index.tsx +59 -0
  1030. package/src/app/[variants]/(main)/discover/(detail)/mcp/loading.tsx +1 -0
  1031. package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/Overview/index.tsx +22 -0
  1032. package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/Parameter/ParameterItem.tsx +71 -0
  1033. package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/Related/index.tsx +31 -0
  1034. package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/index.tsx +47 -0
  1035. package/src/app/[variants]/(main)/discover/(detail)/model/features/Header.tsx +112 -0
  1036. package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/ActionButton/ChatWithModel.tsx +92 -0
  1037. package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/ActionButton/index.tsx +32 -0
  1038. package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/Related/index.tsx +43 -0
  1039. package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/RelatedProviders/index.tsx +34 -0
  1040. package/src/app/[variants]/(main)/discover/(detail)/model/index.tsx +51 -0
  1041. package/src/app/[variants]/(main)/discover/(detail)/model/loading.tsx +1 -0
  1042. package/src/app/[variants]/(main)/discover/(detail)/provider/features/Details/Related/index.tsx +22 -0
  1043. package/src/app/[variants]/(main)/discover/(detail)/provider/features/Details/index.tsx +47 -0
  1044. package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/ActionButton/ProviderConfig.tsx +91 -0
  1045. package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/ActionButton/index.tsx +45 -0
  1046. package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/Related/index.tsx +34 -0
  1047. package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/RelatedModels/index.tsx +43 -0
  1048. package/src/app/[variants]/(main)/discover/(detail)/provider/index.tsx +51 -0
  1049. package/src/app/[variants]/(main)/discover/(detail)/provider/loading.tsx +1 -0
  1050. package/src/app/[variants]/(main)/discover/(list)/(home)/index.tsx +59 -0
  1051. package/src/app/[variants]/(main)/discover/(list)/_layout/Desktop/Nav.tsx +5 -4
  1052. package/src/app/[variants]/(main)/discover/(list)/_layout/Desktop/index.tsx +4 -3
  1053. package/src/app/[variants]/(main)/discover/(list)/_layout/Mobile/Nav.tsx +3 -4
  1054. package/src/app/[variants]/(main)/discover/(list)/_layout/Mobile/index.tsx +4 -3
  1055. package/src/app/[variants]/(main)/discover/(list)/assistant/Client.tsx +6 -2
  1056. package/src/app/[variants]/(main)/discover/(list)/assistant/_layout/Desktop.tsx +3 -4
  1057. package/src/app/[variants]/(main)/discover/(list)/assistant/_layout/Mobile.tsx +3 -3
  1058. package/src/app/[variants]/(main)/discover/(list)/assistant/features/Category/index.tsx +8 -4
  1059. package/src/app/[variants]/(main)/discover/(list)/assistant/features/List/Item.tsx +13 -2
  1060. package/src/app/[variants]/(main)/discover/(list)/assistant/features/MarketSourceSwitch.tsx +64 -0
  1061. package/src/app/[variants]/(main)/discover/(list)/assistant/index.tsx +61 -0
  1062. package/src/app/[variants]/(main)/discover/(list)/features/Pagination.tsx +2 -1
  1063. package/src/app/[variants]/(main)/discover/(list)/features/SortButton/index.tsx +29 -10
  1064. package/src/app/[variants]/(main)/discover/(list)/mcp/_layout/Desktop.tsx +3 -3
  1065. package/src/app/[variants]/(main)/discover/(list)/mcp/_layout/Mobile.tsx +3 -3
  1066. package/src/app/[variants]/(main)/discover/(list)/mcp/features/Category/index.tsx +1 -1
  1067. package/src/app/[variants]/(main)/discover/(list)/mcp/features/List/Item.tsx +2 -1
  1068. package/src/app/[variants]/(main)/discover/(list)/mcp/index.tsx +51 -0
  1069. package/src/app/[variants]/(main)/discover/(list)/model/_layout/Desktop.tsx +3 -3
  1070. package/src/app/[variants]/(main)/discover/(list)/model/_layout/Mobile.tsx +3 -3
  1071. package/src/app/[variants]/(main)/discover/(list)/model/features/Category/index.tsx +1 -1
  1072. package/src/app/[variants]/(main)/discover/(list)/model/features/List/Item.tsx +2 -1
  1073. package/src/app/[variants]/(main)/discover/(list)/model/index.tsx +51 -0
  1074. package/src/app/[variants]/(main)/discover/(list)/provider/features/List/Item.tsx +2 -1
  1075. package/src/app/[variants]/(main)/discover/(list)/provider/index.tsx +50 -0
  1076. package/src/app/[variants]/(main)/discover/_layout/Desktop/index.tsx +4 -4
  1077. package/src/app/[variants]/(main)/discover/_layout/Mobile/index.tsx +3 -3
  1078. package/src/app/[variants]/(main)/discover/components/CategoryMenu.tsx +9 -1
  1079. package/src/app/[variants]/(main)/discover/components/Title.tsx +1 -1
  1080. package/src/app/[variants]/(main)/discover/features/Search.tsx +2 -2
  1081. package/src/app/[variants]/(main)/discover/features/useNav.tsx +11 -12
  1082. package/src/app/[variants]/(main)/hooks/useActiveTabKey.ts +40 -0
  1083. package/src/app/[variants]/(main)/hooks/usePathname.ts +10 -0
  1084. package/src/app/[variants]/(main)/hooks/useQuery.ts +12 -0
  1085. package/src/app/[variants]/(main)/hooks/useRouter.ts +22 -0
  1086. package/src/app/[variants]/(main)/hooks/useSearchParams.ts +11 -0
  1087. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ModelSelect/ImageModelItem.tsx +108 -0
  1088. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ModelSelect/index.tsx +162 -0
  1089. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ResolutionSelect.tsx +88 -0
  1090. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/index.tsx +9 -0
  1091. package/src/app/[variants]/(main)/image/@topic/features/Topics/TopicUrlSync.tsx +1 -1
  1092. package/src/app/[variants]/(main)/image/ComingSoon.tsx +15 -0
  1093. package/src/app/[variants]/(main)/image/_layout/Desktop/index.tsx +5 -2
  1094. package/src/app/[variants]/(main)/image/_layout/DesktopWrapper.tsx +15 -0
  1095. package/src/app/[variants]/(main)/image/_layout/Mobile/index.tsx +3 -1
  1096. package/src/app/[variants]/(main)/image/features/ImageWorkspace/index.tsx +1 -2
  1097. package/src/app/[variants]/(main)/image/index.tsx +18 -0
  1098. package/src/app/[variants]/(main)/knowledge/_layout/Desktop.tsx +17 -0
  1099. package/src/app/[variants]/(main)/knowledge/_layout/Mobile.tsx +17 -0
  1100. package/src/app/[variants]/(main)/knowledge/components/KnowledgeBaseItem/index.tsx +1 -3
  1101. package/src/app/[variants]/(main)/knowledge/components/modal/ModalPageClient.tsx +4 -4
  1102. package/src/app/[variants]/(main)/knowledge/hooks/useFileCategory.ts +6 -3
  1103. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/index.tsx +7 -10
  1104. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/CategoryMenu.tsx +35 -0
  1105. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/Head.tsx +1 -1
  1106. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/Menu.tsx +2 -2
  1107. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/index.tsx +40 -18
  1108. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/layout/Container.tsx +1 -1
  1109. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/menu/CategoryMenu.tsx +148 -0
  1110. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/menu/KnowledgeBase.tsx +21 -8
  1111. package/src/app/[variants]/(main)/labs/components/LabCard.tsx +8 -6
  1112. package/src/app/[variants]/(main)/labs/index.tsx +74 -0
  1113. package/src/app/[variants]/(main)/layouts/desktop/DesktopLayoutContainer.tsx +30 -0
  1114. package/src/app/[variants]/(main)/layouts/desktop/SideBar/BottomActions.tsx +46 -0
  1115. package/src/app/[variants]/(main)/layouts/desktop/SideBar/PinList/index.tsx +128 -0
  1116. package/src/app/[variants]/(main)/layouts/desktop/SideBar/TopActions.test.tsx +141 -0
  1117. package/src/app/[variants]/(main)/layouts/desktop/SideBar/TopActions.tsx +116 -0
  1118. package/src/app/[variants]/(main)/layouts/desktop/index.tsx +73 -0
  1119. package/src/app/[variants]/(main)/layouts/index.tsx +11 -0
  1120. package/src/app/[variants]/(main)/layouts/mobile/NavBar.tsx +88 -0
  1121. package/src/app/[variants]/(main)/layouts/mobile/index.tsx +46 -0
  1122. package/src/app/[variants]/(main)/profile/(home)/Client.tsx +306 -52
  1123. package/src/app/[variants]/(main)/profile/(home)/desktop.tsx +26 -0
  1124. package/src/app/[variants]/(main)/profile/(home)/features/SSOProvidersList/index.tsx +89 -47
  1125. package/src/app/[variants]/(main)/profile/(home)/index.tsx +26 -0
  1126. package/src/app/[variants]/(main)/profile/@category/features/CategoryContent.tsx +5 -7
  1127. package/src/app/[variants]/(main)/profile/_layout/Desktop/index.tsx +12 -11
  1128. package/src/app/[variants]/(main)/profile/_layout/DesktopWrapper.tsx +14 -0
  1129. package/src/app/[variants]/(main)/profile/_layout/Mobile/Header.tsx +3 -3
  1130. package/src/app/[variants]/(main)/profile/_layout/Mobile/index.tsx +4 -3
  1131. package/src/app/[variants]/(main)/profile/apikey/index.tsx +18 -0
  1132. package/src/app/[variants]/(main)/profile/hooks/useCategory.tsx +24 -18
  1133. package/src/app/[variants]/(main)/profile/security/index.tsx +29 -0
  1134. package/src/app/[variants]/(main)/profile/stats/features/AssistantsRank.tsx +4 -4
  1135. package/src/app/[variants]/(main)/profile/stats/features/ShareButton/Preview.tsx +2 -14
  1136. package/src/app/[variants]/(main)/profile/stats/features/TopicsRank.tsx +4 -4
  1137. package/src/app/[variants]/(main)/profile/stats/index.tsx +20 -0
  1138. package/src/app/[variants]/(main)/profile/usage/Client.tsx +114 -0
  1139. package/src/app/[variants]/(main)/profile/usage/features/UsageCards/ActiveModels/ModelTable.tsx +175 -0
  1140. package/src/app/[variants]/(main)/profile/usage/features/UsageCards/ActiveModels/index.tsx +126 -0
  1141. package/src/app/[variants]/(main)/profile/usage/features/UsageCards/MonthSpend.tsx +53 -0
  1142. package/src/app/[variants]/(main)/profile/usage/features/UsageCards/TodaySpend.tsx +67 -0
  1143. package/src/app/[variants]/(main)/profile/usage/features/UsageCards/index.tsx +19 -0
  1144. package/src/app/[variants]/(main)/profile/usage/features/UsageTable.tsx +143 -0
  1145. package/src/app/[variants]/(main)/profile/usage/features/UsageTrends.tsx +107 -0
  1146. package/src/app/[variants]/(main)/profile/usage/features/components/UsageBarChart.tsx +48 -0
  1147. package/src/app/[variants]/(main)/profile/usage/index.tsx +13 -0
  1148. package/src/app/[variants]/(main)/settings/_layout/Desktop/Header.tsx +2 -2
  1149. package/src/app/[variants]/(main)/settings/_layout/Desktop/index.tsx +45 -9
  1150. package/src/app/[variants]/(main)/settings/_layout/DesktopWrapper.tsx +23 -0
  1151. package/src/app/[variants]/(main)/settings/_layout/Mobile/Header.tsx +8 -7
  1152. package/src/app/[variants]/(main)/settings/_layout/Mobile/index.tsx +2 -5
  1153. package/src/app/[variants]/(main)/settings/_layout/MobileWrapper.tsx +23 -0
  1154. package/src/app/[variants]/(main)/settings/_layout/SettingsContent.tsx +1 -12
  1155. package/src/app/[variants]/(main)/settings/_layout/type.ts +0 -1
  1156. package/src/app/[variants]/(main)/settings/agent/AgentMenu/Menu.tsx +2 -4
  1157. package/src/app/[variants]/(main)/settings/agent/index.tsx +13 -14
  1158. package/src/app/[variants]/(main)/settings/common/features/Common/Common.tsx +23 -1
  1159. package/src/app/[variants]/(main)/settings/common/index.tsx +1 -1
  1160. package/src/app/[variants]/(main)/settings/hooks/useCategory.tsx +8 -16
  1161. package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/Card.tsx +9 -4
  1162. package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/index.tsx +35 -4
  1163. package/src/app/[variants]/(main)/settings/provider/(list)/index.tsx +15 -3
  1164. package/src/app/[variants]/(main)/settings/provider/ProviderMenu/All.tsx +2 -2
  1165. package/src/app/[variants]/(main)/settings/provider/ProviderMenu/Item.tsx +2 -2
  1166. package/src/app/[variants]/(main)/settings/provider/ProviderMenu/List.tsx +251 -34
  1167. package/src/app/[variants]/(main)/settings/provider/ProviderMenu/SearchResult.tsx +5 -5
  1168. package/src/app/[variants]/(main)/settings/provider/_layout/Desktop/Container.tsx +10 -4
  1169. package/src/app/[variants]/(main)/settings/provider/_layout/Mobile.tsx +2 -2
  1170. package/src/app/[variants]/(main)/settings/provider/detail/azure/index.tsx +6 -8
  1171. package/src/app/[variants]/(main)/settings/provider/detail/azureai/index.tsx +1 -1
  1172. package/src/app/[variants]/(main)/settings/provider/detail/bedrock/index.tsx +1 -1
  1173. package/src/app/[variants]/(main)/settings/provider/detail/cloudflare/index.tsx +1 -1
  1174. package/src/app/[variants]/(main)/settings/provider/detail/comfyui/index.tsx +1 -1
  1175. package/src/app/[variants]/(main)/settings/provider/detail/default/ClientMode.tsx +1 -1
  1176. package/src/app/[variants]/(main)/settings/provider/detail/github/index.tsx +1 -1
  1177. package/src/app/[variants]/(main)/settings/provider/detail/index.tsx +36 -14
  1178. package/src/app/[variants]/(main)/settings/provider/detail/vertexai/index.tsx +1 -1
  1179. package/src/app/[variants]/(main)/settings/provider/features/CreateNewProvider/index.tsx +22 -9
  1180. package/src/app/[variants]/(main)/settings/provider/features/ModelList/DisabledModels.tsx +144 -8
  1181. package/src/app/[variants]/(main)/settings/provider/features/ModelList/ModelItem.tsx +69 -97
  1182. package/src/app/[variants]/(main)/settings/provider/features/ProviderConfig/UpdateProviderInfo/SettingModal.tsx +13 -9
  1183. package/src/app/[variants]/(main)/settings/provider/features/ProviderConfig/index.tsx +4 -8
  1184. package/src/app/[variants]/(main)/settings/provider/features/customProviderSdkOptions.ts +1 -0
  1185. package/src/app/[variants]/(main)/settings/storage/index.tsx +1 -9
  1186. package/src/app/[variants]/(main)/settings/system-agent/index.tsx +1 -2
  1187. package/src/app/[variants]/DesktopClientRouter.tsx +20 -0
  1188. package/src/app/[variants]/DesktopRouter.tsx +20 -0
  1189. package/src/app/[variants]/MobileClientRouter.tsx +20 -0
  1190. package/src/app/[variants]/MobileRouter.tsx +20 -0
  1191. package/src/app/[variants]/desktopRouter.config.tsx +502 -0
  1192. package/src/app/[variants]/layout.tsx +1 -3
  1193. package/src/app/[variants]/loaders/routeParams.ts +45 -0
  1194. package/src/app/[variants]/loading/Server/Redirect.tsx +1 -1
  1195. package/src/app/[variants]/mobileRouter.config.tsx +546 -0
  1196. package/src/app/[variants]/oauth/ResultLayout.tsx +47 -0
  1197. package/src/app/[variants]/oauth/callback/error/page.tsx +20 -33
  1198. package/src/app/[variants]/oauth/callback/layout.tsx +1 -0
  1199. package/src/app/[variants]/oauth/callback/success/page.tsx +8 -22
  1200. package/src/app/[variants]/oauth/consent/[uid]/Consent/BuiltinConsent.tsx +47 -0
  1201. package/src/app/[variants]/oauth/consent/[uid]/Consent/index.tsx +198 -0
  1202. package/src/app/[variants]/oauth/consent/[uid]/Login.tsx +19 -4
  1203. package/src/app/[variants]/page.tsx +18 -6
  1204. package/src/app/desktop/devtools/page.tsx +1 -1
  1205. package/src/app/desktop/layout.tsx +1 -1
  1206. package/src/app/market-auth-callback/layout.tsx +39 -0
  1207. package/src/app/market-auth-callback/page.tsx +196 -0
  1208. package/src/auth.ts +176 -0
  1209. package/src/components/Analytics/MainInterfaceTracker.tsx +2 -2
  1210. package/src/components/BootErrorBoundary/index.tsx +129 -0
  1211. package/src/components/FileIcon/index.tsx +1 -1
  1212. package/src/components/InvalidAPIKey/APIKeyForm/Bedrock.tsx +9 -14
  1213. package/src/components/InvalidAPIKey/APIKeyForm/ComfyUIForm.tsx +1 -1
  1214. package/src/components/InvalidAPIKey/APIKeyForm/ProviderApiKeyForm.tsx +1 -1
  1215. package/src/components/InvalidAPIKey/APIKeyForm/__tests__/ComfyUIForm.test.tsx +1 -1
  1216. package/src/components/InvalidAPIKey/APIKeyForm/useApiKey.ts +0 -12
  1217. package/src/components/InvalidAPIKey/index.tsx +1 -1
  1218. package/src/components/ModelSelect/NewModelBadge.tsx +23 -0
  1219. package/src/components/ModelSelect/index.tsx +4 -0
  1220. package/src/components/NextAuth/AuthIcons.tsx +3 -1
  1221. package/src/components/Skeleton/SkeletonSwitch.tsx +13 -0
  1222. package/src/components/Skeleton/index.ts +2 -0
  1223. package/src/components/Thinking/index.tsx +3 -3
  1224. package/src/components/mdx/constants.ts +1 -0
  1225. package/src/config/db.ts +0 -5
  1226. package/src/config/featureFlags/schema.test.ts +1 -5
  1227. package/src/config/featureFlags/schema.ts +0 -9
  1228. package/src/config/modelProviders/ai21.ts +1 -16
  1229. package/src/config/modelProviders/ai302.ts +1 -128
  1230. package/src/config/modelProviders/ai360.ts +1 -32
  1231. package/src/config/modelProviders/aihubmix.ts +1 -0
  1232. package/src/config/modelProviders/anthropic.ts +1 -71
  1233. package/src/config/modelProviders/azure.ts +1 -51
  1234. package/src/config/modelProviders/baichuan.ts +1 -57
  1235. package/src/config/modelProviders/bedrock.ts +1 -276
  1236. package/src/config/modelProviders/cerebras.ts +3 -0
  1237. package/src/config/modelProviders/cloudflare.ts +1 -64
  1238. package/src/config/modelProviders/deepseek.ts +1 -19
  1239. package/src/config/modelProviders/fireworksai.ts +1 -174
  1240. package/src/config/modelProviders/giteeai.ts +1 -135
  1241. package/src/config/modelProviders/github.ts +1 -254
  1242. package/src/config/modelProviders/google.ts +1 -130
  1243. package/src/config/modelProviders/groq.ts +1 -119
  1244. package/src/config/modelProviders/higress.ts +1 -1713
  1245. package/src/config/modelProviders/huggingface.ts +1 -54
  1246. package/src/config/modelProviders/hunyuan.ts +1 -83
  1247. package/src/config/modelProviders/index.ts +3 -0
  1248. package/src/config/modelProviders/infiniai.ts +1 -74
  1249. package/src/config/modelProviders/internlm.ts +1 -20
  1250. package/src/config/modelProviders/mistral.ts +1 -95
  1251. package/src/config/modelProviders/modelscope.ts +1 -27
  1252. package/src/config/modelProviders/moonshot.ts +1 -29
  1253. package/src/config/modelProviders/newapi.ts +1 -0
  1254. package/src/config/modelProviders/novita.ts +1 -105
  1255. package/src/config/modelProviders/ollama.ts +1 -325
  1256. package/src/config/modelProviders/openai.ts +1 -242
  1257. package/src/config/modelProviders/openrouter.ts +1 -240
  1258. package/src/config/modelProviders/perplexity.ts +1 -45
  1259. package/src/config/modelProviders/ppio.ts +1 -152
  1260. package/src/config/modelProviders/qiniu.ts +1 -18
  1261. package/src/config/modelProviders/qwen.ts +1 -245
  1262. package/src/config/modelProviders/search1api.ts +1 -34
  1263. package/src/config/modelProviders/sensenova.ts +1 -69
  1264. package/src/config/modelProviders/siliconcloud.ts +1 -417
  1265. package/src/config/modelProviders/spark.ts +1 -59
  1266. package/src/config/modelProviders/stepfun.ts +1 -98
  1267. package/src/config/modelProviders/taichu.ts +1 -18
  1268. package/src/config/modelProviders/togetherai.ts +1 -274
  1269. package/src/config/modelProviders/upstage.ts +1 -28
  1270. package/src/config/modelProviders/wenxin.ts +3 -143
  1271. package/src/config/modelProviders/xai.ts +1 -38
  1272. package/src/config/modelProviders/zenmux.ts +21 -0
  1273. package/src/config/modelProviders/zeroone.ts +1 -81
  1274. package/src/config/modelProviders/zhipu.ts +1 -108
  1275. package/src/envs/__tests__/app.test.ts +47 -13
  1276. package/src/envs/app.ts +10 -3
  1277. package/src/envs/auth.test.ts +60 -0
  1278. package/src/envs/auth.ts +301 -15
  1279. package/src/envs/email.ts +37 -0
  1280. package/src/envs/llm.ts +6 -0
  1281. package/src/envs/redis.ts +106 -0
  1282. package/src/features/AgentSetting/AgentPlugin/index.tsx +6 -2
  1283. package/src/features/AgentSetting/AgentPrompt/TokenTag.tsx +3 -2
  1284. package/src/features/AgentSetting/AgentTTS/SelectWithTTSPreview.tsx +1 -1
  1285. package/src/features/AgentSetting/store/action.ts +1 -1
  1286. package/src/features/ChangelogModal/index.tsx +3 -3
  1287. package/src/features/ChatInput/ActionBar/Knowledge/index.tsx +4 -5
  1288. package/src/features/ChatInput/ActionBar/Model/ControlsForm.tsx +47 -0
  1289. package/src/features/ChatInput/ActionBar/Model/GPT51ReasoningEffortSlider.tsx +58 -0
  1290. package/src/features/ChatInput/ActionBar/Model/ImageAspectRatioSelect.tsx +54 -0
  1291. package/src/features/ChatInput/ActionBar/Model/ImageResolutionSlider.tsx +59 -0
  1292. package/src/features/ChatInput/ActionBar/Model/ThinkingLevelSlider.tsx +56 -0
  1293. package/src/features/ChatInput/ActionBar/STT/browser.tsx +6 -6
  1294. package/src/features/ChatInput/ActionBar/STT/openai.tsx +6 -6
  1295. package/src/features/ChatInput/ActionBar/Search/index.tsx +5 -7
  1296. package/src/features/ChatInput/ActionBar/Token/TokenTag.tsx +4 -4
  1297. package/src/features/ChatInput/ActionBar/Token/TokenTagForGroupChat.tsx +2 -2
  1298. package/src/features/ChatInput/ActionBar/Upload/index.tsx +1 -3
  1299. package/src/features/ChatInput/ActionBar/components/ActionDropdown.tsx +2 -17
  1300. package/src/features/ChatInput/ActionBar/index.tsx +2 -2
  1301. package/src/features/ChatInput/InputEditor/index.tsx +2 -2
  1302. package/src/features/ChatItem/components/MessageContent.tsx +4 -1
  1303. package/src/features/ChatItem/components/Title.tsx +20 -16
  1304. package/src/features/ChatItem/style.ts +4 -0
  1305. package/src/features/ChatList/Error/ChatInvalidApiKey.tsx +39 -0
  1306. package/src/features/ChatList/Error/ClerkLogin/index.tsx +47 -0
  1307. package/src/features/ChatList/Error/OAuthForm.tsx +97 -0
  1308. package/src/features/ChatList/Error/index.tsx +144 -0
  1309. package/src/features/ChatList/MarkdownElements/LobeThinking/Render.tsx +30 -0
  1310. package/src/features/ChatList/MarkdownElements/Thinking/Render.tsx +42 -0
  1311. package/src/features/ChatList/MarkdownElements/remarkPlugins/__snapshots__/createRemarkSelfClosingTagPlugin.test.ts.snap +393 -0
  1312. package/src/features/ChatList/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.test.ts +277 -0
  1313. package/src/features/ChatList/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.ts +162 -0
  1314. package/src/features/ChatList/MarkdownElements/remarkPlugins/getNodeContent.test.ts +502 -0
  1315. package/src/features/ChatList/Messages/Assistant/Actions/index.tsx +218 -0
  1316. package/src/features/ChatList/Messages/Assistant/CollapsedMessage.tsx +37 -0
  1317. package/src/features/ChatList/Messages/Assistant/DisplayContent.tsx +44 -0
  1318. package/src/features/ChatList/Messages/Assistant/Extra/index.test.tsx +86 -0
  1319. package/src/features/ChatList/Messages/Assistant/Extra/index.tsx +49 -0
  1320. package/src/features/ChatList/Messages/Assistant/MessageBody.tsx +96 -0
  1321. package/src/features/ChatList/Messages/Assistant/Reasoning/index.tsx +42 -0
  1322. package/src/features/ChatList/Messages/Assistant/index.tsx +401 -0
  1323. package/src/features/ChatList/Messages/Default.tsx +27 -0
  1324. package/src/features/ChatList/Messages/Group/Actions/WithContentId.tsx +200 -0
  1325. package/src/features/ChatList/Messages/Group/Actions/WithoutContentId.tsx +93 -0
  1326. package/src/features/ChatList/Messages/Group/Actions/index.tsx +21 -0
  1327. package/src/features/ChatList/Messages/Group/CollapsedMessage.tsx +37 -0
  1328. package/src/features/ChatList/Messages/Group/ContentBlock.tsx +89 -0
  1329. package/src/features/ChatList/Messages/Group/EditState.tsx +51 -0
  1330. package/src/features/ChatList/Messages/Group/Error/index.tsx +55 -0
  1331. package/src/features/ChatList/Messages/Group/Group.tsx +70 -0
  1332. package/src/features/ChatList/Messages/Group/GroupContext.ts +15 -0
  1333. package/src/features/ChatList/Messages/Group/GroupItem.tsx +42 -0
  1334. package/src/features/ChatList/Messages/Group/MessageContent.tsx +45 -0
  1335. package/src/features/ChatList/Messages/Group/Tool/Inspector/BuiltinPluginTitle.tsx +58 -0
  1336. package/src/features/ChatList/Messages/Group/Tool/Inspector/Debug.tsx +70 -0
  1337. package/src/features/ChatList/Messages/Group/Tool/Inspector/PluginResult.tsx +34 -0
  1338. package/src/features/ChatList/Messages/Group/Tool/Inspector/PluginState.tsx +18 -0
  1339. package/src/features/ChatList/Messages/Group/Tool/Inspector/StatusIndicator.tsx +41 -0
  1340. package/src/features/ChatList/Messages/Group/Tool/Inspector/ToolTitle.tsx +82 -0
  1341. package/src/features/ChatList/Messages/Group/Tool/Inspector/index.tsx +221 -0
  1342. package/src/features/ChatList/Messages/Group/Tool/Render/AbortResponse.tsx +37 -0
  1343. package/src/features/ChatList/Messages/Group/Tool/Render/Arguments/index.tsx +136 -0
  1344. package/src/features/ChatList/Messages/Group/Tool/Render/CustomRender.tsx +88 -0
  1345. package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/ApprovalActions.tsx +164 -0
  1346. package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/Fallback.tsx +98 -0
  1347. package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/KeyValueEditor.tsx +213 -0
  1348. package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/ModeSelector.tsx +133 -0
  1349. package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/index.tsx +103 -0
  1350. package/src/features/ChatList/Messages/Group/Tool/Render/LoadingPlaceholder/index.tsx +29 -0
  1351. package/src/features/ChatList/Messages/Group/Tool/Render/PluginSettings.tsx +66 -0
  1352. package/src/features/ChatList/Messages/Group/Tool/Render/RejectedResponse.tsx +45 -0
  1353. package/src/features/ChatList/Messages/Group/Tool/Render/index.tsx +139 -0
  1354. package/src/features/ChatList/Messages/Group/Tool/index.tsx +98 -0
  1355. package/src/features/ChatList/Messages/Group/Tools.tsx +48 -0
  1356. package/src/features/ChatList/Messages/Group/index.tsx +210 -0
  1357. package/src/features/ChatList/Messages/Supervisor/index.tsx +194 -0
  1358. package/src/features/ChatList/Messages/Tool/Inspector/PluginResult.tsx +39 -0
  1359. package/src/features/ChatList/Messages/Tool/Inspector/PluginState.tsx +23 -0
  1360. package/src/features/ChatList/Messages/Tool/Inspector/Settings.tsx +40 -0
  1361. package/src/features/ChatList/Messages/Tool/Inspector/ToolTitle.tsx +68 -0
  1362. package/src/features/ChatList/Messages/Tool/Inspector/index.tsx +134 -0
  1363. package/src/features/ChatList/Messages/Tool/Render/Arguments/ObjectEntity.tsx +81 -0
  1364. package/src/features/ChatList/Messages/Tool/Render/Arguments/ValueCell.tsx +43 -0
  1365. package/src/features/ChatList/Messages/Tool/Render/CustomRender.tsx +144 -0
  1366. package/src/features/ChatList/Messages/Tool/Render/ErrorResponse.tsx +35 -0
  1367. package/src/features/ChatList/Messages/Tool/Render/PluginSettings.tsx +69 -0
  1368. package/src/features/ChatList/Messages/Tool/Render/index.tsx +46 -0
  1369. package/src/features/ChatList/Messages/Tool/ToolItem.tsx +51 -0
  1370. package/src/features/ChatList/Messages/Tool/index.tsx +58 -0
  1371. package/src/features/ChatList/Messages/User/Actions/ActionsBar.tsx +159 -0
  1372. package/src/features/ChatList/Messages/User/Actions/MessageBranch.tsx +107 -0
  1373. package/src/features/ChatList/Messages/User/Actions/index.tsx +42 -0
  1374. package/src/features/ChatList/Messages/User/Extra.tsx +39 -0
  1375. package/src/features/ChatList/Messages/User/index.tsx +193 -0
  1376. package/src/features/ChatList/Messages/index.tsx +233 -0
  1377. package/src/features/ChatList/components/AutoScroll.tsx +27 -0
  1378. package/src/features/ChatList/components/ContextMenu.tsx +398 -0
  1379. package/src/features/ChatList/components/Extras/TTS/InitPlayer.tsx +93 -0
  1380. package/src/features/ChatList/components/Extras/Usage/UsageDetail/AnimatedNumber.tsx +55 -0
  1381. package/src/features/ChatList/components/Extras/Usage/UsageDetail/index.tsx +257 -0
  1382. package/src/features/ChatList/components/Extras/Usage/UsageDetail/tokens.ts +129 -0
  1383. package/src/features/ChatList/components/Extras/Usage/index.tsx +52 -0
  1384. package/src/features/ChatList/components/RichContentRenderer.tsx +35 -0
  1385. package/src/features/ChatList/components/ShareMessageModal/ShareImage/Preview.tsx +90 -0
  1386. package/src/features/ChatList/components/ShareMessageModal/index.tsx +91 -0
  1387. package/src/features/ChatList/components/SkeletonList.tsx +58 -0
  1388. package/src/features/ChatList/components/VirtualizedList/VirtuosoContext.ts +92 -0
  1389. package/src/features/ChatList/components/VirtualizedList/index.tsx +172 -0
  1390. package/src/features/ChatList/components/WideScreenContainer/index.tsx +50 -0
  1391. package/src/features/ChatList/hooks/useChatItemContextMenu.tsx +135 -0
  1392. package/src/features/ChatList/hooks/useChatListActionsBar.tsx +145 -0
  1393. package/src/features/ChatList/hooks/useDoubleClickEdit.ts +42 -0
  1394. package/src/features/DataImporter/index.tsx +2 -2
  1395. package/src/features/DevPanel/PostgresViewer/usePgTable.ts +3 -11
  1396. package/src/features/FileSidePanel/index.tsx +1 -1
  1397. package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/Item/MasonryItem.tsx +80 -0
  1398. package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/Item/MasonryItemWrapper.tsx +27 -0
  1399. package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/List.tsx +104 -23
  1400. package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/MasonrySkeleton.tsx +62 -0
  1401. package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/index.tsx +3 -2
  1402. package/src/features/KnowledgeBaseModal/CreateNew/CreateForm.tsx +1 -1
  1403. package/src/features/KnowledgeManager/DocumentExplorer/DocumentActions.tsx +111 -0
  1404. package/src/features/KnowledgeManager/DocumentExplorer/DocumentEditor.tsx +723 -0
  1405. package/src/features/KnowledgeManager/DocumentExplorer/DocumentEditorPlaceholder.tsx +169 -0
  1406. package/src/features/KnowledgeManager/DocumentExplorer/DocumentListItem.tsx +148 -0
  1407. package/src/features/KnowledgeManager/DocumentExplorer/DocumentListSkeleton.tsx +39 -0
  1408. package/src/features/KnowledgeManager/DocumentExplorer/NoteEditorModal.tsx +328 -0
  1409. package/src/features/KnowledgeManager/DocumentExplorer/RenamePopover.tsx +163 -0
  1410. package/src/features/KnowledgeManager/DocumentExplorer/index.tsx +318 -0
  1411. package/src/features/KnowledgeManager/FileExplorer/FileListItem/index.tsx +270 -0
  1412. package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/DefaultFileItem.tsx +149 -0
  1413. package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/ImageFileItem.tsx +245 -0
  1414. package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/MarkdownFileItem.tsx +232 -0
  1415. package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/NoteFileItem.tsx +230 -0
  1416. package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/index.tsx +378 -0
  1417. package/src/features/KnowledgeManager/FileExplorer/ToolBar/ViewSwitcher.tsx +45 -0
  1418. package/src/features/KnowledgeManager/FileExplorer/index.tsx +305 -0
  1419. package/src/features/KnowledgeManager/Header/AddButton.tsx +117 -0
  1420. package/src/features/KnowledgeManager/Header/FilesSearchBar.tsx +45 -0
  1421. package/src/features/KnowledgeManager/Header/NewNoteButton.tsx +33 -0
  1422. package/src/features/KnowledgeManager/Header/TogglePanelButton.tsx +42 -0
  1423. package/src/features/KnowledgeManager/Header/index.tsx +21 -0
  1424. package/src/features/KnowledgeManager/Home/RecentDocumentCard.tsx +116 -0
  1425. package/src/features/KnowledgeManager/Home/RecentDocuments.tsx +77 -0
  1426. package/src/features/KnowledgeManager/Home/RecentFileCard.tsx +121 -0
  1427. package/src/features/KnowledgeManager/Home/RecentFiles.tsx +73 -0
  1428. package/src/features/KnowledgeManager/Home/RecentFilesSkeleton.tsx +81 -0
  1429. package/src/features/KnowledgeManager/Home/UploadEntries.tsx +208 -0
  1430. package/src/features/KnowledgeManager/Home/index.tsx +221 -0
  1431. package/src/features/KnowledgeManager/index.tsx +75 -0
  1432. package/src/features/LocalFile/LocalFile.tsx +55 -5
  1433. package/src/features/MCP/utils.test.ts +91 -0
  1434. package/src/features/MCP/utils.ts +20 -2
  1435. package/src/features/ModelSwitchPanel/index.tsx +15 -29
  1436. package/src/features/OllamaSetupGuide/index.tsx +1 -1
  1437. package/src/features/PluginStore/Content.tsx +2 -3
  1438. package/src/features/PluginStore/McpList/index.tsx +6 -2
  1439. package/src/features/PluginTag/PluginStatus.tsx +1 -1
  1440. package/src/features/PluginsUI/Render/BuiltinType/index.test.tsx +10 -4
  1441. package/src/features/PluginsUI/Render/BuiltinType/index.tsx +4 -4
  1442. package/src/features/PluginsUI/Render/MCPType/index.tsx +72 -0
  1443. package/src/features/PluginsUI/Render/StandaloneType/Iframe.tsx +5 -5
  1444. package/src/features/PluginsUI/Render/index.tsx +17 -0
  1445. package/src/features/Portal/Artifacts/Body/Renderer/SVG.tsx +23 -6
  1446. package/src/features/Portal/FilePreview/Body/index.tsx +1 -1
  1447. package/src/features/Portal/FilePreview/Header.tsx +1 -1
  1448. package/src/features/Portal/GroupThread/Body/ThreadChatItem.tsx +1 -1
  1449. package/src/features/Portal/GroupThread/Body/ThreadChatList.tsx +1 -1
  1450. package/src/features/Portal/GroupThread/Body/index.tsx +1 -1
  1451. package/src/features/Portal/Home/Body/Plugins/ArtifactList/index.tsx +3 -3
  1452. package/src/features/Portal/Thread/Chat/ChatInput/index.tsx +1 -1
  1453. package/src/features/Portal/Thread/Chat/ChatInput/useSend.ts +3 -3
  1454. package/src/features/Portal/Thread/Chat/ChatItem.tsx +1 -1
  1455. package/src/features/Portal/Thread/Chat/ChatList.tsx +1 -1
  1456. package/src/features/Portal/Thread/Chat/index.tsx +1 -1
  1457. package/src/features/ShareModal/ShareImage/ChatList/index.tsx +1 -1
  1458. package/src/features/ShareModal/ShareImage/Preview.tsx +2 -2
  1459. package/src/features/ShareModal/ShareImage/index.tsx +15 -1
  1460. package/src/features/ShareModal/ShareImage/type.ts +6 -0
  1461. package/src/features/ShareModal/ShareJSON/index.tsx +2 -2
  1462. package/src/features/ShareModal/ShareText/index.tsx +3 -3
  1463. package/src/features/ShareModal/index.tsx +7 -13
  1464. package/src/features/ShareModal/style.ts +40 -30
  1465. package/src/features/User/UserPanel/PanelContent.tsx +11 -11
  1466. package/src/features/User/UserPanel/useMenu.tsx +24 -14
  1467. package/src/features/User/__tests__/PanelContent.test.tsx +28 -13
  1468. package/src/features/User/__tests__/UserAvatar.test.tsx +17 -6
  1469. package/src/features/User/__tests__/useMenu.test.tsx +14 -12
  1470. package/src/helpers/isCanUseFC.ts +0 -8
  1471. package/src/helpers/toolEngineering/index.test.ts +3 -3
  1472. package/src/helpers/toolEngineering/index.ts +13 -4
  1473. package/src/hooks/useAgentOwnershipCheck.ts +151 -0
  1474. package/src/hooks/useCheckPluginsIsInstalled.ts +1 -4
  1475. package/src/hooks/useDiscoverTab.ts +2 -2
  1476. package/src/hooks/useEnabledChatModels.ts +0 -8
  1477. package/src/hooks/useFetchGroups.ts +1 -4
  1478. package/src/hooks/useFetchInstalledPlugins.ts +1 -4
  1479. package/src/hooks/useFetchMessages.ts +1 -4
  1480. package/src/hooks/useFetchSessions.ts +1 -4
  1481. package/src/hooks/useFetchThreads.ts +1 -5
  1482. package/src/hooks/useFetchTopics.ts +1 -4
  1483. package/src/hooks/useHotkeys/chatScope.ts +16 -8
  1484. package/src/hooks/useInterceptingRoutes.test.ts +22 -44
  1485. package/src/hooks/useInterceptingRoutes.ts +6 -11
  1486. package/src/hooks/useModelContextWindowTokens.ts +0 -8
  1487. package/src/hooks/useModelHasContextWindowToken.ts +1 -10
  1488. package/src/hooks/useModelSupportFiles.ts +1 -11
  1489. package/src/hooks/useModelSupportReasoning.ts +1 -11
  1490. package/src/hooks/useModelSupportToolUse.ts +1 -11
  1491. package/src/hooks/useModelSupportVision.ts +1 -11
  1492. package/src/hooks/usePinnedAgentState.ts +23 -16
  1493. package/src/hooks/useQuery.ts +5 -0
  1494. package/src/hooks/useQueryParam.ts +324 -0
  1495. package/src/hooks/useQueryRoute.test.ts +2 -12
  1496. package/src/hooks/useQueryRoute.ts +5 -5
  1497. package/src/hooks/useScreenshot.ts +44 -28
  1498. package/src/hooks/useShowMobileWorkspace.ts +1 -1
  1499. package/src/hooks/useSwitchSession.ts +4 -3
  1500. package/src/instrumentation.node.ts +3 -2
  1501. package/src/layout/AuthProvider/BetterAuth/UserUpdater.tsx +51 -0
  1502. package/src/layout/AuthProvider/BetterAuth/index.tsx +14 -0
  1503. package/src/layout/AuthProvider/Clerk/index.tsx +2 -16
  1504. package/src/layout/AuthProvider/MarketAuth/MarketAuthProvider.tsx +483 -0
  1505. package/src/layout/AuthProvider/MarketAuth/errors.ts +75 -0
  1506. package/src/layout/AuthProvider/MarketAuth/index.ts +2 -0
  1507. package/src/layout/AuthProvider/MarketAuth/oidc.ts +382 -0
  1508. package/src/layout/AuthProvider/MarketAuth/types.ts +67 -0
  1509. package/src/layout/AuthProvider/index.tsx +20 -4
  1510. package/src/layout/GlobalProvider/Cmdk.tsx +470 -0
  1511. package/src/layout/GlobalProvider/CmdkLazy.tsx +17 -0
  1512. package/src/layout/GlobalProvider/ImportSettings.tsx +22 -9
  1513. package/src/layout/GlobalProvider/StoreInitialization.tsx +12 -6
  1514. package/src/layout/GlobalProvider/index.tsx +2 -0
  1515. package/src/libs/better-auth/auth-client.ts +36 -0
  1516. package/src/libs/better-auth/constants.ts +13 -0
  1517. package/src/libs/better-auth/email-templates/index.ts +3 -0
  1518. package/src/libs/better-auth/email-templates/magic-link.ts +98 -0
  1519. package/src/libs/better-auth/email-templates/reset-password.ts +91 -0
  1520. package/src/libs/better-auth/email-templates/verification.ts +108 -0
  1521. package/src/libs/better-auth/sso/helpers.ts +61 -0
  1522. package/src/libs/better-auth/sso/index.ts +116 -0
  1523. package/src/libs/better-auth/sso/providers/auth0.ts +33 -0
  1524. package/src/libs/better-auth/sso/providers/authelia.ts +35 -0
  1525. package/src/libs/better-auth/sso/providers/authentik.ts +35 -0
  1526. package/src/libs/better-auth/sso/providers/casdoor.ts +48 -0
  1527. package/src/libs/better-auth/sso/providers/cloudflare-zero-trust.ts +41 -0
  1528. package/src/libs/better-auth/sso/providers/cognito.ts +45 -0
  1529. package/src/libs/better-auth/sso/providers/feishu.ts +181 -0
  1530. package/src/libs/better-auth/sso/providers/generic-oidc.ts +44 -0
  1531. package/src/libs/better-auth/sso/providers/github.ts +30 -0
  1532. package/src/libs/better-auth/sso/providers/google.ts +30 -0
  1533. package/src/libs/better-auth/sso/providers/keycloak.ts +35 -0
  1534. package/src/libs/better-auth/sso/providers/logto.ts +38 -0
  1535. package/src/libs/better-auth/sso/providers/microsoft.ts +65 -0
  1536. package/src/libs/better-auth/sso/providers/okta.ts +37 -0
  1537. package/src/libs/better-auth/sso/providers/wechat.ts +140 -0
  1538. package/src/libs/better-auth/sso/providers/zitadel.ts +54 -0
  1539. package/src/libs/better-auth/sso/types.ts +25 -0
  1540. package/src/libs/better-auth/utils/client.ts +1 -0
  1541. package/src/libs/better-auth/utils/common.ts +20 -0
  1542. package/src/libs/better-auth/utils/server.test.ts +61 -0
  1543. package/src/libs/better-auth/utils/server.ts +18 -0
  1544. package/src/libs/mcp/__tests__/__snapshots__/index.test.ts.snap +0 -1
  1545. package/src/libs/mcp/__tests__/index.test.ts +6 -6
  1546. package/src/libs/mcp/client.ts +3 -2
  1547. package/src/libs/mcp/types.ts +71 -0
  1548. package/src/libs/next-auth/auth.config.ts +2 -5
  1549. package/src/libs/oidc-provider/provider.test.ts +2 -0
  1550. package/src/libs/redis/index.ts +5 -0
  1551. package/src/libs/redis/manager.test.ts +107 -0
  1552. package/src/libs/redis/manager.ts +56 -0
  1553. package/src/libs/redis/redis.test.ts +158 -0
  1554. package/src/libs/redis/redis.ts +117 -0
  1555. package/src/libs/redis/types.ts +71 -0
  1556. package/src/libs/redis/upstash.test.ts +154 -0
  1557. package/src/libs/redis/upstash.ts +109 -0
  1558. package/src/libs/redis/utils.test.ts +46 -0
  1559. package/src/libs/redis/utils.ts +53 -0
  1560. package/src/libs/trpc/client/lambda.ts +5 -8
  1561. package/src/libs/trpc/lambda/context.test.ts +116 -0
  1562. package/src/libs/trpc/lambda/context.ts +27 -0
  1563. package/src/libs/trpc/lambda/index.ts +5 -2
  1564. package/src/libs/trpc/middleware/openTelemetry.ts +141 -0
  1565. package/src/libs/trpc/middleware/userAuth.ts +4 -2
  1566. package/src/libs/trpc/utils/request-adapter.ts +20 -0
  1567. package/src/locales/default/auth.ts +158 -1
  1568. package/src/locales/default/chat.ts +43 -0
  1569. package/src/locales/default/common.ts +24 -0
  1570. package/src/locales/default/components.ts +6 -0
  1571. package/src/locales/default/discover.ts +46 -0
  1572. package/src/locales/default/error.ts +2 -2
  1573. package/src/locales/default/file.ts +88 -5
  1574. package/src/locales/default/hotkey.ts +4 -0
  1575. package/src/locales/default/image.ts +8 -0
  1576. package/src/locales/default/index.ts +2 -0
  1577. package/src/locales/default/labs.ts +4 -0
  1578. package/src/locales/default/marketAuth.ts +42 -0
  1579. package/src/locales/default/modelProvider.ts +18 -2
  1580. package/src/locales/default/oauth.ts +1 -0
  1581. package/src/locales/default/plugin.ts +37 -16
  1582. package/src/locales/default/setting.ts +100 -1
  1583. package/src/locales/default/tool.ts +32 -5
  1584. package/src/locales/default/topic.ts +1 -0
  1585. package/src/proxy.ts +81 -5
  1586. package/src/server/globalConfig/genServerAiProviderConfig.test.ts +5 -5
  1587. package/src/server/globalConfig/genServerAiProviderConfig.ts +4 -4
  1588. package/src/server/globalConfig/index.ts +12 -24
  1589. package/src/server/globalConfig/parseFilesConfig.ts +1 -1
  1590. package/src/server/globalConfig/parseSystemAgent.ts +4 -4
  1591. package/src/server/modules/ContentChunk/index.test.ts +372 -0
  1592. package/src/server/modules/S3/index.test.ts +379 -0
  1593. package/src/server/routers/async/__tests__/caller.test.ts +333 -0
  1594. package/src/server/routers/async/caller.ts +2 -1
  1595. package/src/server/routers/async/file.ts +2 -7
  1596. package/src/server/routers/async/image.ts +20 -2
  1597. package/src/server/routers/desktop/mcp.ts +22 -9
  1598. package/src/server/routers/lambda/__tests__/aiChat.test.ts +1 -1
  1599. package/src/server/routers/lambda/__tests__/file.test.ts +85 -6
  1600. package/src/server/routers/lambda/__tests__/integration/message.integration.test.ts +771 -57
  1601. package/src/server/routers/lambda/__tests__/user.test.ts +2 -0
  1602. package/src/server/routers/lambda/aiChat.ts +3 -2
  1603. package/src/server/routers/lambda/chunk.ts +173 -41
  1604. package/src/server/routers/lambda/config/__snapshots__/index.test.ts.snap +175 -12
  1605. package/src/server/routers/lambda/config/index.test.ts +36 -28
  1606. package/src/server/routers/lambda/document.ts +57 -0
  1607. package/src/server/routers/lambda/file.ts +89 -2
  1608. package/src/server/routers/lambda/index.ts +2 -0
  1609. package/src/server/routers/lambda/knowledge.ts +94 -0
  1610. package/src/server/routers/lambda/market/index.ts +38 -14
  1611. package/src/server/routers/lambda/message.ts +52 -60
  1612. package/src/server/routers/lambda/topic.ts +7 -1
  1613. package/src/server/routers/lambda/usage.ts +36 -0
  1614. package/src/server/routers/lambda/user.ts +36 -31
  1615. package/src/server/routers/mobile/index.ts +14 -2
  1616. package/src/server/routers/tools/mcp.ts +23 -5
  1617. package/src/server/services/discover/index.test.ts +153 -11
  1618. package/src/server/services/discover/index.ts +381 -42
  1619. package/src/server/services/document/index.ts +103 -0
  1620. package/src/server/services/email/README.md +241 -0
  1621. package/src/server/services/email/impls/index.test.ts +39 -0
  1622. package/src/server/services/email/impls/index.ts +32 -0
  1623. package/src/server/services/email/impls/nodemailer/index.ts +108 -0
  1624. package/src/server/services/email/impls/nodemailer/type.ts +31 -0
  1625. package/src/server/services/email/impls/type.ts +61 -0
  1626. package/src/server/services/email/index.test.ts +144 -0
  1627. package/src/server/services/email/index.ts +40 -0
  1628. package/src/server/services/file/impls/local.ts +4 -1
  1629. package/src/server/services/file/index.ts +96 -1
  1630. package/src/server/services/mcp/contentProcessor.ts +101 -0
  1631. package/src/server/services/mcp/deps/MCPSystemDepsCheckService.test.ts +541 -0
  1632. package/src/server/services/mcp/deps/MCPSystemDepsCheckService.ts +3 -3
  1633. package/src/server/services/mcp/deps/checkers/ManualInstallationChecker.test.ts +162 -0
  1634. package/src/server/services/mcp/deps/checkers/NpmInstallationChecker.test.ts +374 -0
  1635. package/src/server/services/mcp/deps/checkers/PythonInstallationChecker.test.ts +368 -0
  1636. package/src/server/services/mcp/index.test.ts +80 -25
  1637. package/src/server/services/mcp/index.ts +48 -34
  1638. package/src/server/services/message/__tests__/index.test.ts +338 -0
  1639. package/src/server/services/message/index.ts +187 -0
  1640. package/src/server/services/oidc/index.test.ts +232 -0
  1641. package/src/server/services/oidc/index.ts +24 -0
  1642. package/src/server/services/usage/index.test.ts +310 -0
  1643. package/src/server/services/usage/index.ts +164 -0
  1644. package/src/server/sitemap.ts +49 -35
  1645. package/src/server/utils/createSpeechResponse.ts +55 -0
  1646. package/src/services/__tests__/_auth.test.ts +1 -4
  1647. package/src/services/__tests__/upload.test.ts +92 -82
  1648. package/src/services/_auth.ts +4 -14
  1649. package/src/services/_header.ts +3 -18
  1650. package/src/services/_url.ts +15 -1
  1651. package/src/services/aiModel/index.test.ts +3 -3
  1652. package/src/services/aiModel/index.ts +56 -2
  1653. package/src/services/aiProvider/index.test.ts +2 -2
  1654. package/src/services/aiProvider/index.ts +48 -2
  1655. package/src/services/chat/chat.test.ts +73 -16
  1656. package/src/services/chat/clientModelRuntime.test.ts +109 -173
  1657. package/src/services/chat/contextEngineering.test.ts +4 -0
  1658. package/src/services/chat/contextEngineering.ts +27 -7
  1659. package/src/services/chat/helper.ts +7 -31
  1660. package/src/services/chat/index.ts +37 -15
  1661. package/src/services/chat/types.ts +1 -2
  1662. package/src/services/chatGroup/index.ts +66 -2
  1663. package/src/services/config.ts +2 -2
  1664. package/src/services/debug.ts +4 -4
  1665. package/src/services/discover.ts +28 -17
  1666. package/src/services/document/index.ts +44 -0
  1667. package/src/services/electron/desktopNotification.ts +6 -6
  1668. package/src/services/electron/file.ts +6 -6
  1669. package/src/services/electron/localFileService.ts +4 -0
  1670. package/src/services/electron/remoteServer.ts +12 -5
  1671. package/src/services/electron/settings.ts +6 -6
  1672. package/src/services/export/index.ts +10 -2
  1673. package/src/services/file/index.ts +72 -2
  1674. package/src/services/import/index.ts +133 -2
  1675. package/src/services/marketApi.ts +124 -0
  1676. package/src/services/mcp.test.ts +783 -0
  1677. package/src/services/mcp.ts +57 -22
  1678. package/src/services/message/__tests__/metadata-race-condition.test.ts +157 -0
  1679. package/src/services/message/index.ts +237 -2
  1680. package/src/services/message/server.test.ts +44 -0
  1681. package/src/services/models.ts +24 -32
  1682. package/src/services/plugin/index.test.ts +8 -0
  1683. package/src/services/plugin/index.ts +53 -2
  1684. package/src/services/rag.ts +6 -2
  1685. package/src/services/search.ts +2 -2
  1686. package/src/services/session/index.test.ts +8 -0
  1687. package/src/services/session/index.ts +131 -2
  1688. package/src/services/thread/index.test.ts +8 -0
  1689. package/src/services/thread/index.ts +38 -2
  1690. package/src/services/topic/index.test.ts +8 -0
  1691. package/src/services/topic/index.ts +76 -2
  1692. package/src/services/upload.ts +14 -43
  1693. package/src/services/usage.ts +13 -0
  1694. package/src/services/user/index.test.ts +168 -0
  1695. package/src/services/user/index.ts +56 -2
  1696. package/src/services/utils/abortableRequest.test.ts +161 -0
  1697. package/src/services/utils/abortableRequest.ts +67 -0
  1698. package/src/store/agent/slices/chat/selectors/agent.ts +4 -0
  1699. package/src/store/agent/slices/chat/selectors/chatConfig.ts +4 -3
  1700. package/src/store/aiInfra/slices/aiModel/action.test.ts +17 -9
  1701. package/src/store/aiInfra/slices/aiProvider/__tests__/action.test.ts +125 -229
  1702. package/src/store/aiInfra/slices/aiProvider/__tests__/selectors.test.ts +77 -7
  1703. package/src/store/aiInfra/slices/aiProvider/action.ts +139 -41
  1704. package/src/store/aiInfra/slices/aiProvider/selectors.ts +7 -3
  1705. package/src/store/chat/agents/GeneralChatAgent.ts +391 -0
  1706. package/src/store/chat/agents/__tests__/GeneralChatAgent.test.ts +1144 -0
  1707. package/src/store/chat/agents/__tests__/createAgentExecutors/call-llm.test.ts +1235 -0
  1708. package/src/store/chat/agents/__tests__/createAgentExecutors/call-tool.test.ts +2005 -0
  1709. package/src/store/chat/agents/__tests__/createAgentExecutors/finish.test.ts +453 -0
  1710. package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/index.ts +4 -0
  1711. package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/mockInstructions.ts +126 -0
  1712. package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/mockMessages.ts +94 -0
  1713. package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/mockOperations.ts +96 -0
  1714. package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/mockStore.ts +138 -0
  1715. package/src/store/chat/agents/__tests__/createAgentExecutors/helpers/assertions.ts +188 -0
  1716. package/src/store/chat/agents/__tests__/createAgentExecutors/helpers/index.ts +3 -0
  1717. package/src/store/chat/agents/__tests__/createAgentExecutors/helpers/operationTestUtils.ts +94 -0
  1718. package/src/store/chat/agents/__tests__/createAgentExecutors/helpers/testExecutor.ts +136 -0
  1719. package/src/store/chat/agents/__tests__/createAgentExecutors/request-human-approve.test.ts +560 -0
  1720. package/src/store/chat/agents/__tests__/createAgentExecutors/resolve-aborted-tools.test.ts +712 -0
  1721. package/src/store/chat/agents/createAgentExecutors.ts +770 -0
  1722. package/src/store/chat/helpers.test.ts +0 -99
  1723. package/src/store/chat/helpers.ts +0 -11
  1724. package/src/store/chat/initialState.ts +4 -1
  1725. package/src/store/chat/selectors.ts +1 -0
  1726. package/src/store/chat/slices/aiChat/__tests__/ai-chat.integration.test.ts +667 -0
  1727. package/src/store/chat/slices/aiChat/actions/__tests__/cancel-functionality.test.ts +137 -27
  1728. package/src/store/chat/slices/aiChat/actions/__tests__/conversationControl.test.ts +370 -0
  1729. package/src/store/chat/slices/aiChat/actions/__tests__/conversationLifecycle.test.ts +281 -0
  1730. package/src/store/chat/slices/aiChat/actions/__tests__/fixtures.ts +0 -2
  1731. package/src/store/chat/slices/aiChat/actions/__tests__/helpers.ts +16 -7
  1732. package/src/store/chat/slices/aiChat/actions/__tests__/rag.test.ts +4 -91
  1733. package/src/store/chat/slices/aiChat/actions/__tests__/streamingExecutor.test.ts +809 -0
  1734. package/src/store/chat/slices/aiChat/actions/__tests__/streamingStates.test.ts +67 -0
  1735. package/src/store/chat/slices/aiChat/actions/conversationControl.ts +220 -0
  1736. package/src/store/chat/slices/aiChat/actions/conversationLifecycle.ts +415 -0
  1737. package/src/store/chat/slices/aiChat/actions/generateAIGroupChat.ts +24 -39
  1738. package/src/store/chat/slices/aiChat/actions/index.ts +12 -6
  1739. package/src/store/chat/slices/aiChat/actions/rag.ts +4 -48
  1740. package/src/store/chat/slices/aiChat/actions/streamingExecutor.ts +1075 -0
  1741. package/src/store/chat/slices/aiChat/actions/streamingStates.ts +50 -0
  1742. package/src/store/chat/slices/aiChat/initialState.ts +0 -28
  1743. package/src/store/chat/slices/aiChat/selectors.test.ts +280 -0
  1744. package/src/store/chat/slices/aiChat/selectors.ts +31 -7
  1745. package/src/store/chat/slices/builtinTool/actions/__tests__/localSystem.test.ts +29 -39
  1746. package/src/store/chat/slices/builtinTool/actions/__tests__/search.test.ts +236 -48
  1747. package/src/store/chat/slices/builtinTool/actions/index.ts +4 -1
  1748. package/src/store/chat/slices/builtinTool/actions/interpreter.ts +86 -51
  1749. package/src/store/chat/slices/builtinTool/actions/knowledgeBase.ts +163 -0
  1750. package/src/store/chat/slices/builtinTool/actions/localSystem.ts +119 -202
  1751. package/src/store/chat/slices/builtinTool/actions/search.ts +174 -58
  1752. package/src/store/chat/slices/builtinTool/selectors.test.ts +258 -0
  1753. package/src/store/chat/slices/builtinTool/selectors.ts +25 -4
  1754. package/src/store/chat/slices/message/action.test.ts +482 -63
  1755. package/src/store/chat/slices/message/actions/index.ts +39 -0
  1756. package/src/store/chat/slices/message/actions/internals.ts +103 -0
  1757. package/src/store/chat/slices/message/actions/optimisticUpdate.ts +343 -0
  1758. package/src/store/chat/slices/message/actions/publicApi.ts +284 -0
  1759. package/src/store/chat/slices/message/actions/query.ts +135 -0
  1760. package/src/store/chat/slices/message/actions/runtimeState.ts +108 -0
  1761. package/src/store/chat/slices/message/initialState.ts +8 -0
  1762. package/src/store/chat/slices/message/reducer.test.ts +48 -370
  1763. package/src/store/chat/slices/message/reducer.ts +19 -82
  1764. package/src/store/chat/slices/message/selectors/chat.test.ts +22 -639
  1765. package/src/store/chat/slices/message/selectors/chat.ts +77 -243
  1766. package/src/store/chat/slices/message/selectors/dbMessage.test.ts +51 -0
  1767. package/src/store/chat/slices/message/selectors/dbMessage.ts +147 -0
  1768. package/src/store/chat/slices/message/selectors/displayMessage.test.ts +818 -0
  1769. package/src/store/chat/slices/message/selectors/displayMessage.ts +352 -0
  1770. package/src/store/chat/slices/message/selectors/messageState.ts +46 -12
  1771. package/src/store/chat/slices/operation/__tests__/actions.test.ts +1049 -0
  1772. package/src/store/chat/slices/operation/__tests__/integration.test.ts +342 -0
  1773. package/src/store/chat/slices/operation/__tests__/selectors.test.ts +601 -0
  1774. package/src/store/chat/slices/operation/actions.ts +658 -0
  1775. package/src/store/chat/slices/operation/index.ts +4 -0
  1776. package/src/store/chat/slices/operation/initialState.ts +44 -0
  1777. package/src/store/chat/slices/operation/selectors.ts +388 -0
  1778. package/src/store/chat/slices/operation/types.ts +161 -0
  1779. package/src/store/chat/slices/plugin/action.test.ts +320 -352
  1780. package/src/store/chat/slices/plugin/actions/index.ts +39 -0
  1781. package/src/store/chat/slices/plugin/actions/internals.ts +69 -0
  1782. package/src/store/chat/slices/plugin/actions/optimisticUpdate.ts +258 -0
  1783. package/src/store/chat/slices/plugin/actions/pluginTypes.ts +264 -0
  1784. package/src/store/chat/slices/plugin/actions/publicApi.ts +119 -0
  1785. package/src/store/chat/slices/plugin/actions/workflow.ts +77 -0
  1786. package/src/store/chat/slices/portal/selectors.test.ts +7 -7
  1787. package/src/store/chat/slices/portal/selectors.ts +2 -2
  1788. package/src/store/chat/slices/thread/action.test.ts +38 -33
  1789. package/src/store/chat/slices/thread/action.ts +20 -14
  1790. package/src/store/chat/slices/thread/initialState.ts +1 -1
  1791. package/src/store/chat/slices/thread/selectors/index.ts +12 -8
  1792. package/src/store/chat/slices/thread/selectors/util.ts +1 -1
  1793. package/src/store/chat/slices/topic/action.test.ts +1 -1
  1794. package/src/store/chat/slices/topic/action.ts +4 -5
  1795. package/src/store/chat/slices/topic/reducer.ts +12 -5
  1796. package/src/store/chat/slices/translate/action.test.ts +26 -32
  1797. package/src/store/chat/slices/translate/action.ts +57 -44
  1798. package/src/store/chat/store.ts +6 -3
  1799. package/src/store/discover/slices/assistant/action.ts +20 -7
  1800. package/src/store/file/initialState.ts +6 -1
  1801. package/src/store/file/slices/chat/action.ts +3 -6
  1802. package/src/store/file/slices/document/action.ts +359 -0
  1803. package/src/store/file/slices/document/index.ts +3 -0
  1804. package/src/store/file/slices/document/initialState.ts +22 -0
  1805. package/src/store/file/slices/document/selectors.ts +25 -0
  1806. package/src/store/file/slices/fileManager/action.test.ts +16 -9
  1807. package/src/store/file/slices/fileManager/action.ts +12 -13
  1808. package/src/store/file/store.ts +3 -0
  1809. package/src/store/global/action.test.ts +3 -3
  1810. package/src/store/global/actions/workspacePane.ts +2 -1
  1811. package/src/store/global/initialState.ts +16 -3
  1812. package/src/store/global/selectors/systemStatus.test.ts +0 -98
  1813. package/src/store/global/selectors/systemStatus.ts +9 -30
  1814. package/src/store/global/store.ts +1 -7
  1815. package/src/store/serverConfig/selectors.test.ts +2 -2
  1816. package/src/store/serverConfig/store.test.ts +0 -1
  1817. package/src/store/session/slices/session/action.ts +23 -0
  1818. package/src/store/session/slices/session/initialState.ts +6 -0
  1819. package/src/store/session/slices/sessionGroup/action.test.ts +5 -5
  1820. package/src/store/tool/slices/mcpStore/action.test.ts +95 -3
  1821. package/src/store/tool/slices/mcpStore/action.ts +177 -53
  1822. package/src/store/tool/slices/oldStore/initialState.ts +1 -2
  1823. package/src/store/urlHydration/action.ts +56 -0
  1824. package/src/store/urlHydration/index.ts +1 -0
  1825. package/src/store/urlHydration/initialState.ts +12 -0
  1826. package/src/store/urlHydration/store.ts +28 -0
  1827. package/src/store/user/initialState.ts +1 -7
  1828. package/src/store/user/selectors.ts +2 -5
  1829. package/src/store/user/slices/auth/action.test.ts +213 -16
  1830. package/src/store/user/slices/auth/action.ts +86 -1
  1831. package/src/store/user/slices/auth/initialState.ts +13 -2
  1832. package/src/store/user/slices/auth/selectors.ts +6 -2
  1833. package/src/store/user/slices/common/action.test.ts +1 -1
  1834. package/src/store/user/slices/common/action.ts +14 -5
  1835. package/src/store/user/slices/preference/action.ts +8 -1
  1836. package/src/store/user/slices/preference/selectors/index.ts +2 -0
  1837. package/src/store/user/slices/preference/selectors/labPrefer.ts +10 -0
  1838. package/src/store/user/slices/preference/selectors/preference.ts +32 -0
  1839. package/src/store/user/slices/settings/action.ts +27 -0
  1840. package/src/store/user/slices/settings/selectors/__snapshots__/settings.test.ts.snap +0 -7
  1841. package/src/store/user/slices/settings/selectors/general.ts +8 -0
  1842. package/src/store/user/slices/settings/selectors/index.ts +2 -0
  1843. package/src/store/user/slices/settings/selectors/keyVaults.ts +16 -0
  1844. package/src/store/user/slices/settings/selectors/settings.test.ts +0 -37
  1845. package/src/store/user/slices/settings/selectors/settings.ts +0 -5
  1846. package/src/store/user/slices/settings/selectors/toolIntervention.ts +17 -0
  1847. package/src/store/user/store.ts +0 -3
  1848. package/src/tools/code-interpreter/Render/index.tsx +1 -1
  1849. package/src/tools/executionRuntimes.ts +6 -0
  1850. package/src/tools/identifiers.ts +13 -0
  1851. package/src/tools/index.ts +7 -0
  1852. package/src/tools/interventions.ts +30 -0
  1853. package/src/tools/knowledge-base/ExecutionRuntime/index.ts +96 -0
  1854. package/src/tools/knowledge-base/Render/ReadKnowledge/FileCard.tsx +135 -0
  1855. package/src/tools/knowledge-base/Render/ReadKnowledge/index.tsx +27 -0
  1856. package/src/tools/knowledge-base/Render/SearchKnowledgeBase/Item/index.tsx +54 -0
  1857. package/src/tools/knowledge-base/Render/SearchKnowledgeBase/Item/style.ts +51 -0
  1858. package/src/tools/knowledge-base/Render/SearchKnowledgeBase/index.tsx +23 -0
  1859. package/src/tools/knowledge-base/Render/index.ts +7 -0
  1860. package/src/tools/knowledge-base/index.ts +64 -0
  1861. package/src/tools/knowledge-base/systemRole.ts +102 -0
  1862. package/src/tools/knowledge-base/type.ts +25 -0
  1863. package/src/tools/local-system/ExecutionRuntime/index.ts +407 -0
  1864. package/src/tools/local-system/Intervention/EditLocalFile/index.tsx +89 -0
  1865. package/src/tools/local-system/Intervention/MoveLocalFiles/MoveFileItem.tsx +56 -0
  1866. package/src/tools/local-system/Intervention/MoveLocalFiles/index.tsx +26 -0
  1867. package/src/tools/local-system/Intervention/RunCommand/index.tsx +54 -0
  1868. package/src/tools/local-system/Intervention/WriteFile/index.tsx +72 -0
  1869. package/src/tools/local-system/Intervention/index.ts +15 -0
  1870. package/src/tools/local-system/Placeholder/ListFiles.tsx +3 -5
  1871. package/src/tools/local-system/Placeholder/SearchFiles.tsx +2 -5
  1872. package/src/tools/local-system/Render/EditLocalFile/index.tsx +67 -0
  1873. package/src/tools/local-system/Render/ListFiles/index.tsx +16 -21
  1874. package/src/tools/local-system/Render/MoveLocalFiles/MoveFileItem.tsx +56 -0
  1875. package/src/tools/local-system/Render/MoveLocalFiles/index.tsx +26 -0
  1876. package/src/tools/local-system/Render/ReadLocalFile/ReadFileView.tsx +55 -79
  1877. package/src/tools/local-system/Render/RenameLocalFile/index.tsx +15 -20
  1878. package/src/tools/local-system/Render/RunCommand/index.tsx +103 -27
  1879. package/src/tools/local-system/Render/SearchFiles/SearchQuery/index.tsx +0 -1
  1880. package/src/tools/local-system/Render/SearchFiles/index.tsx +15 -20
  1881. package/src/tools/local-system/Render/WriteFile/index.tsx +2 -8
  1882. package/src/tools/local-system/Render/index.ts +23 -0
  1883. package/src/tools/local-system/index.ts +186 -4
  1884. package/src/tools/local-system/systemRole.ts +62 -8
  1885. package/src/tools/local-system/type.ts +4 -3
  1886. package/src/tools/placeholders.ts +39 -8
  1887. package/src/tools/renders.ts +39 -6
  1888. package/src/tools/web-browsing/ExecutionRuntime/index.ts +5 -2
  1889. package/src/tools/web-browsing/Placeholder/CrawlMultiPages.tsx +30 -0
  1890. package/src/tools/web-browsing/Placeholder/CrawlSinglePage.tsx +12 -0
  1891. package/src/tools/web-browsing/Placeholder/Search.tsx +4 -4
  1892. package/src/tools/web-browsing/Portal/Search/Footer.tsx +11 -9
  1893. package/src/tools/web-browsing/Render/CrawlMultiPages.tsx +15 -0
  1894. package/src/tools/web-browsing/Render/CrawlSinglePage.tsx +15 -0
  1895. package/src/tools/web-browsing/Render/Search/ConfigForm/Form.tsx +1 -1
  1896. package/src/tools/web-browsing/Render/Search/index.tsx +39 -44
  1897. package/src/tools/web-browsing/Render/index.ts +13 -0
  1898. package/src/utils/electron/desktopRemoteRPCFetch.ts +87 -0
  1899. package/src/utils/server/parseModels.ts +212 -0
  1900. package/src/utils/server/routeVariants.test.ts +340 -0
  1901. package/src/utils/server/routeVariants.ts +10 -10
  1902. package/tsconfig.json +0 -1
  1903. package/vitest.config.mts +2 -0
  1904. package/.github/workflows/desktop-pr-build.yml +0 -358
  1905. package/.github/workflows/docker.yml +0 -186
  1906. package/Dockerfile.lite +0 -272
  1907. package/packages/const/src/models.ts +0 -85
  1908. package/packages/context-engine/ARCHITECTURE.md +0 -425
  1909. package/packages/database/src/models/__tests__/message.grouping.test.ts +0 -812
  1910. package/packages/database/src/models/__tests__/message.test.ts +0 -2704
  1911. package/packages/database/src/schemas/document.ts +0 -106
  1912. package/packages/database/src/utils/__tests__/groupMessages.test.ts +0 -1132
  1913. package/packages/database/src/utils/groupMessages.ts +0 -361
  1914. package/packages/model-runtime/src/utils/imageToBase64.test.ts +0 -91
  1915. package/packages/model-runtime/src/utils/imageToBase64.ts +0 -62
  1916. package/packages/utils/src/_deprecated/__snapshots__/parseModels.test.ts.snap +0 -104
  1917. package/packages/utils/src/_deprecated/parseModels.test.ts +0 -287
  1918. package/packages/utils/src/_deprecated/parseModels.ts +0 -165
  1919. package/packages/utils/src/electron/desktopRemoteRPCFetch.ts +0 -87
  1920. package/packages/utils/src/fetch/__tests__/fetchSSE.test.ts +0 -579
  1921. package/packages/utils/src/fetch/__tests__/parseError.test.ts +0 -88
  1922. package/packages/utils/src/fetch/fetchSSE.ts +0 -477
  1923. package/packages/utils/src/fetch/headers.ts +0 -27
  1924. package/packages/utils/src/fetch/parseError.ts +0 -24
  1925. package/packages/utils/src/fetch/request.ts +0 -28
  1926. package/packages/utils/src/parseModels.ts +0 -213
  1927. package/packages/utils/src/tokenizer/client.ts +0 -35
  1928. package/packages/utils/src/tokenizer/estimated.ts +0 -4
  1929. package/packages/utils/src/tokenizer/server.ts +0 -11
  1930. package/packages/utils/src/tokenizer/tokenizer.worker.ts +0 -12
  1931. package/src/app/(backend)/api/auth/[...nextauth]/route.ts +0 -3
  1932. package/src/app/(backend)/webapi/chat/azureai/route.test.ts +0 -25
  1933. package/src/app/(backend)/webapi/chat/azureai/route.ts +0 -6
  1934. package/src/app/(backend)/webapi/tokenizer/index.test.ts +0 -32
  1935. package/src/app/(backend)/webapi/tokenizer/route.ts +0 -8
  1936. package/src/app/[variants]/(main)/(mobile)/me/(home)/loading.tsx +0 -38
  1937. package/src/app/[variants]/(main)/(mobile)/me/(home)/page.tsx +0 -40
  1938. package/src/app/[variants]/(main)/(mobile)/me/profile/loading.tsx +0 -5
  1939. package/src/app/[variants]/(main)/(mobile)/me/profile/page.tsx +0 -30
  1940. package/src/app/[variants]/(main)/(mobile)/me/settings/loading.tsx +0 -5
  1941. package/src/app/[variants]/(main)/(mobile)/me/settings/page.tsx +0 -30
  1942. package/src/app/[variants]/(main)/_layout/Desktop/DesktopLayoutContainer.tsx +0 -32
  1943. package/src/app/[variants]/(main)/_layout/Desktop/SideBar/BottomActions.tsx +0 -46
  1944. package/src/app/[variants]/(main)/_layout/Desktop/SideBar/PinList/index.tsx +0 -119
  1945. package/src/app/[variants]/(main)/_layout/Desktop/SideBar/TopActions.test.tsx +0 -141
  1946. package/src/app/[variants]/(main)/_layout/Desktop/SideBar/TopActions.tsx +0 -109
  1947. package/src/app/[variants]/(main)/_layout/Desktop/index.tsx +0 -68
  1948. package/src/app/[variants]/(main)/_layout/Mobile/NavBar.tsx +0 -88
  1949. package/src/app/[variants]/(main)/_layout/Mobile/index.tsx +0 -43
  1950. package/src/app/[variants]/(main)/changelog/layout.tsx +0 -10
  1951. package/src/app/[variants]/(main)/changelog/modal/page.tsx +0 -23
  1952. package/src/app/[variants]/(main)/changelog/page.tsx +0 -78
  1953. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatHydration/index.tsx +0 -42
  1954. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/ClassicChat.tsx +0 -81
  1955. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/GroupChat.tsx +0 -126
  1956. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/MessageFromUrl.tsx +0 -32
  1957. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/index.tsx +0 -17
  1958. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/V1Mobile/index.tsx +0 -89
  1959. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/V1Mobile/useSend.ts +0 -104
  1960. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/useSend.ts +0 -321
  1961. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/ChatItem/Thread.tsx +0 -62
  1962. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/ChatItem/index.tsx +0 -91
  1963. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/Content.tsx +0 -43
  1964. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/AgentWelcome/OpeningQuestions.tsx +0 -75
  1965. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/GroupWelcome/GroupUsageSuggest.tsx +0 -164
  1966. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/index.tsx +0 -28
  1967. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatMinimap/index.tsx +0 -385
  1968. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ThreadHydration.tsx +0 -45
  1969. package/src/app/[variants]/(main)/chat/(workspace)/@topic/features/Topic/TopicListContent/TopicItem/TopicContent.tsx +0 -241
  1970. package/src/app/[variants]/(main)/chat/(workspace)/@topic/features/Topic/TopicListContent/TopicItem/index.tsx +0 -97
  1971. package/src/app/[variants]/(main)/chat/(workspace)/layout.ts +0 -11
  1972. package/src/app/[variants]/(main)/chat/(workspace)/page.tsx +0 -53
  1973. package/src/app/[variants]/(main)/chat/@session/_layout/Mobile/SessionHeader.tsx +0 -44
  1974. package/src/app/[variants]/(main)/chat/@session/default.tsx +0 -31
  1975. package/src/app/[variants]/(main)/chat/@session/features/SessionHydration.tsx +0 -45
  1976. package/src/app/[variants]/(main)/chat/@session/features/SessionListContent/Inbox/index.tsx +0 -63
  1977. package/src/app/[variants]/(main)/chat/@session/features/SessionListContent/List/Item/Actions.tsx +0 -204
  1978. package/src/app/[variants]/(main)/chat/@session/features/SessionListContent/List/Item/index.tsx +0 -158
  1979. package/src/app/[variants]/(main)/chat/@session/features/SessionListContent/List/index.tsx +0 -100
  1980. package/src/app/[variants]/(main)/chat/error.tsx +0 -3
  1981. package/src/app/[variants]/(main)/chat/layout.ts +0 -11
  1982. package/src/app/[variants]/(main)/chat/not-found.tsx +0 -1
  1983. package/src/app/[variants]/(main)/chat/settings/error.tsx +0 -3
  1984. package/src/app/[variants]/(main)/chat/settings/features/SubmitAgentButton/SubmitAgentModal.tsx +0 -98
  1985. package/src/app/[variants]/(main)/chat/settings/features/SubmitAgentButton/index.tsx +0 -35
  1986. package/src/app/[variants]/(main)/chat/settings/features/SubmitAgentButton/style.ts +0 -47
  1987. package/src/app/[variants]/(main)/chat/settings/layout.tsx +0 -21
  1988. package/src/app/[variants]/(main)/chat/settings/loading.tsx +0 -3
  1989. package/src/app/[variants]/(main)/chat/settings/not-found.tsx +0 -1
  1990. package/src/app/[variants]/(main)/chat/settings/page.tsx +0 -62
  1991. package/src/app/[variants]/(main)/discover/(detail)/_layout/Desktop.tsx +0 -30
  1992. package/src/app/[variants]/(main)/discover/(detail)/_layout/DetailLayout.tsx +0 -22
  1993. package/src/app/[variants]/(main)/discover/(detail)/assistant/AssistantDetailPage.tsx +0 -47
  1994. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/Client.tsx +0 -40
  1995. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Capabilities/Block.tsx +0 -27
  1996. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Capabilities/Plugins.tsx +0 -32
  1997. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Nav.tsx +0 -122
  1998. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Overview/TagList.tsx +0 -47
  1999. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Overview/index.tsx +0 -96
  2000. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Related/index.tsx +0 -31
  2001. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/SystemRole/TagList.tsx +0 -47
  2002. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/SystemRole/index.tsx +0 -54
  2003. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/index.tsx +0 -49
  2004. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Header.tsx +0 -177
  2005. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/ActionButton/AddAgent.tsx +0 -87
  2006. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/ActionButton/index.tsx +0 -31
  2007. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/Related/index.tsx +0 -43
  2008. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/TocList/index.tsx +0 -77
  2009. package/src/app/[variants]/(main)/discover/(detail)/mcp/McpDetailPage.tsx +0 -51
  2010. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/Client.tsx +0 -43
  2011. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Details/Related/index.tsx +0 -32
  2012. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Details/Versions/index.tsx +0 -76
  2013. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Details/index.tsx +0 -59
  2014. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/Related/index.tsx +0 -44
  2015. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/ServerConfig.tsx +0 -36
  2016. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/TocList/index.tsx +0 -98
  2017. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/loading.tsx +0 -1
  2018. package/src/app/[variants]/(main)/discover/(detail)/model/ModelDetailPage.tsx +0 -44
  2019. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/Client.tsx +0 -40
  2020. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/Overview/index.tsx +0 -22
  2021. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/Parameter/ParameterItem.tsx +0 -71
  2022. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/Related/index.tsx +0 -31
  2023. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/index.tsx +0 -47
  2024. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Header.tsx +0 -112
  2025. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/ActionButton/ChatWithModel.tsx +0 -92
  2026. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/ActionButton/index.tsx +0 -32
  2027. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/Related/index.tsx +0 -43
  2028. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/RelatedProviders/index.tsx +0 -34
  2029. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/loading.tsx +0 -1
  2030. package/src/app/[variants]/(main)/discover/(detail)/provider/ProviderDetailPage.tsx +0 -44
  2031. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/Client.tsx +0 -40
  2032. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Details/Related/index.tsx +0 -22
  2033. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Details/index.tsx +0 -47
  2034. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/ActionButton/ProviderConfig.tsx +0 -97
  2035. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/ActionButton/index.tsx +0 -45
  2036. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/Related/index.tsx +0 -34
  2037. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/RelatedModels/index.tsx +0 -43
  2038. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/loading.tsx +0 -1
  2039. package/src/app/[variants]/(main)/discover/(list)/(home)/HomePage.tsx +0 -45
  2040. package/src/app/[variants]/(main)/discover/(list)/_layout/ListLayout.tsx +0 -22
  2041. package/src/app/[variants]/(main)/discover/(list)/assistant/AssistantLayout.tsx +0 -21
  2042. package/src/app/[variants]/(main)/discover/(list)/assistant/AssistantPage.tsx +0 -44
  2043. package/src/app/[variants]/(main)/discover/(list)/mcp/Client.tsx +0 -44
  2044. package/src/app/[variants]/(main)/discover/(list)/mcp/McpLayout.tsx +0 -21
  2045. package/src/app/[variants]/(main)/discover/(list)/mcp/McpPage.tsx +0 -44
  2046. package/src/app/[variants]/(main)/discover/(list)/model/Client.tsx +0 -44
  2047. package/src/app/[variants]/(main)/discover/(list)/model/ModelLayout.tsx +0 -21
  2048. package/src/app/[variants]/(main)/discover/(list)/model/ModelPage.tsx +0 -44
  2049. package/src/app/[variants]/(main)/discover/(list)/provider/Client.tsx +0 -43
  2050. package/src/app/[variants]/(main)/discover/(list)/provider/ProviderPage.tsx +0 -43
  2051. package/src/app/[variants]/(main)/discover/DiscoverRouter.tsx +0 -170
  2052. package/src/app/[variants]/(main)/discover/[[...path]]/page.tsx +0 -12
  2053. package/src/app/[variants]/(main)/discover/_layout/DiscoverLayout.tsx +0 -22
  2054. package/src/app/[variants]/(main)/discover/error.tsx +0 -3
  2055. package/src/app/[variants]/(main)/discover/not-found.tsx +0 -1
  2056. package/src/app/[variants]/(main)/error.tsx +0 -3
  2057. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ModelSelect.tsx +0 -161
  2058. package/src/app/[variants]/(main)/image/layout.tsx +0 -19
  2059. package/src/app/[variants]/(main)/image/page.tsx +0 -45
  2060. package/src/app/[variants]/(main)/knowledge/KnowledgeRouter.tsx +0 -73
  2061. package/src/app/[variants]/(main)/knowledge/[[...path]]/page.tsx +0 -12
  2062. package/src/app/[variants]/(main)/knowledge/components/modal/page.tsx +0 -13
  2063. package/src/app/[variants]/(main)/knowledge/layout.tsx +0 -12
  2064. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/MenuItems.tsx +0 -35
  2065. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/menu/FileMenu.tsx +0 -75
  2066. package/src/app/[variants]/(main)/labs/page.tsx +0 -86
  2067. package/src/app/[variants]/(main)/layout.tsx +0 -10
  2068. package/src/app/[variants]/(main)/not-found.tsx +0 -1
  2069. package/src/app/[variants]/(main)/profile/(home)/[[...slugs]]/page.tsx +0 -40
  2070. package/src/app/[variants]/(main)/profile/apikey/page.tsx +0 -32
  2071. package/src/app/[variants]/(main)/profile/error.tsx +0 -3
  2072. package/src/app/[variants]/(main)/profile/layout.tsx +0 -11
  2073. package/src/app/[variants]/(main)/profile/loading.tsx +0 -3
  2074. package/src/app/[variants]/(main)/profile/not-found.tsx +0 -1
  2075. package/src/app/[variants]/(main)/profile/security/page.tsx +0 -28
  2076. package/src/app/[variants]/(main)/profile/stats/page.tsx +0 -23
  2077. package/src/app/[variants]/(main)/settings/error.tsx +0 -3
  2078. package/src/app/[variants]/(main)/settings/loading.tsx +0 -3
  2079. package/src/app/[variants]/(main)/settings/not-found.tsx +0 -1
  2080. package/src/app/[variants]/(main)/settings/page.tsx +0 -42
  2081. package/src/app/[variants]/(main)/settings/storage/IndexedDBStorage.tsx +0 -55
  2082. package/src/app/[variants]/@modal/(.)changelog/modal/features/Cover.tsx +0 -48
  2083. package/src/app/[variants]/@modal/(.)changelog/modal/features/Hero.tsx +0 -29
  2084. package/src/app/[variants]/@modal/(.)changelog/modal/features/Post.tsx +0 -57
  2085. package/src/app/[variants]/@modal/(.)changelog/modal/features/PublishedTime.tsx +0 -50
  2086. package/src/app/[variants]/@modal/(.)changelog/modal/features/ReadDetail.tsx +0 -72
  2087. package/src/app/[variants]/@modal/(.)changelog/modal/features/VersionTag.tsx +0 -26
  2088. package/src/app/[variants]/@modal/(.)changelog/modal/layout.tsx +0 -41
  2089. package/src/app/[variants]/@modal/(.)changelog/modal/loading.tsx +0 -10
  2090. package/src/app/[variants]/@modal/(.)changelog/modal/page.tsx +0 -38
  2091. package/src/app/[variants]/@modal/_layout/ModalLayout.tsx +0 -63
  2092. package/src/app/[variants]/@modal/_layout/SettingModalLayout.tsx +0 -71
  2093. package/src/app/[variants]/@modal/default.tsx +0 -3
  2094. package/src/app/[variants]/@modal/error.tsx +0 -3
  2095. package/src/app/[variants]/@modal/layout.tsx +0 -7
  2096. package/src/app/[variants]/@modal/loading.tsx +0 -5
  2097. package/src/app/[variants]/oauth/consent/[uid]/Consent.tsx +0 -189
  2098. package/src/features/ChatInput/ActionBar/Upload/ClientMode.tsx +0 -62
  2099. package/src/features/Conversation/Error/AccessCodeForm.tsx +0 -63
  2100. package/src/features/Conversation/Error/ChatInvalidApiKey.tsx +0 -39
  2101. package/src/features/Conversation/Error/ClerkLogin/index.tsx +0 -47
  2102. package/src/features/Conversation/Error/InvalidAccessCode.tsx +0 -79
  2103. package/src/features/Conversation/Error/OAuthForm.tsx +0 -97
  2104. package/src/features/Conversation/Error/index.tsx +0 -149
  2105. package/src/features/Conversation/MarkdownElements/LobeThinking/Render.tsx +0 -30
  2106. package/src/features/Conversation/MarkdownElements/Thinking/Render.tsx +0 -42
  2107. package/src/features/Conversation/MarkdownElements/remarkPlugins/__snapshots__/createRemarkSelfClosingTagPlugin.test.ts.snap +0 -260
  2108. package/src/features/Conversation/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.test.ts +0 -204
  2109. package/src/features/Conversation/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.ts +0 -133
  2110. package/src/features/Conversation/MarkdownElements/remarkPlugins/getNodeContent.test.ts +0 -503
  2111. package/src/features/Conversation/Messages/Assistant/Actions/index.tsx +0 -202
  2112. package/src/features/Conversation/Messages/Assistant/Extra/index.test.tsx +0 -91
  2113. package/src/features/Conversation/Messages/Assistant/Extra/index.tsx +0 -49
  2114. package/src/features/Conversation/Messages/Assistant/MessageContent.tsx +0 -91
  2115. package/src/features/Conversation/Messages/Assistant/Reasoning/index.tsx +0 -29
  2116. package/src/features/Conversation/Messages/Assistant/Tool/Inspector/PluginResult.tsx +0 -39
  2117. package/src/features/Conversation/Messages/Assistant/Tool/Inspector/PluginState.tsx +0 -23
  2118. package/src/features/Conversation/Messages/Assistant/Tool/Inspector/ToolTitle.tsx +0 -94
  2119. package/src/features/Conversation/Messages/Assistant/Tool/Inspector/index.tsx +0 -147
  2120. package/src/features/Conversation/Messages/Assistant/Tool/Render/CustomRender.tsx +0 -144
  2121. package/src/features/Conversation/Messages/Assistant/Tool/Render/LoadingPlaceholder/index.tsx +0 -29
  2122. package/src/features/Conversation/Messages/Assistant/Tool/Render/PluginSettings.tsx +0 -66
  2123. package/src/features/Conversation/Messages/Assistant/Tool/Render/index.tsx +0 -76
  2124. package/src/features/Conversation/Messages/Assistant/Tool/index.tsx +0 -76
  2125. package/src/features/Conversation/Messages/Assistant/index.tsx +0 -282
  2126. package/src/features/Conversation/Messages/Default.tsx +0 -27
  2127. package/src/features/Conversation/Messages/Supervisor/index.tsx +0 -185
  2128. package/src/features/Conversation/Messages/User/Actions.tsx +0 -158
  2129. package/src/features/Conversation/Messages/User/Extra.tsx +0 -39
  2130. package/src/features/Conversation/Messages/User/index.tsx +0 -188
  2131. package/src/features/Conversation/Messages/index.tsx +0 -164
  2132. package/src/features/Conversation/components/AutoScroll.tsx +0 -27
  2133. package/src/features/Conversation/components/Extras/TTS/InitPlayer.tsx +0 -93
  2134. package/src/features/Conversation/components/Extras/Usage/UsageDetail/index.tsx +0 -224
  2135. package/src/features/Conversation/components/Extras/Usage/UsageDetail/tokens.ts +0 -132
  2136. package/src/features/Conversation/components/Extras/Usage/index.tsx +0 -45
  2137. package/src/features/Conversation/components/ShareMessageModal/ShareImage/Preview.tsx +0 -90
  2138. package/src/features/Conversation/components/ShareMessageModal/index.tsx +0 -96
  2139. package/src/features/Conversation/components/SkeletonList.tsx +0 -58
  2140. package/src/features/Conversation/components/VirtualizedList/VirtuosoContext.ts +0 -92
  2141. package/src/features/Conversation/components/VirtualizedList/index.tsx +0 -128
  2142. package/src/features/Conversation/components/WideScreenContainer/index.tsx +0 -46
  2143. package/src/features/Conversation/hooks/useChatListActionsBar.tsx +0 -119
  2144. package/src/features/Conversation/hooks/useDoubleClickEdit.ts +0 -42
  2145. package/src/features/FileManager/FileList/FileListItem/index.tsx +0 -231
  2146. package/src/features/FileManager/FileList/MasonryFileItem/index.tsx +0 -582
  2147. package/src/features/FileManager/FileList/index.tsx +0 -266
  2148. package/src/features/FileManager/Header/FilesSearchBar.tsx +0 -45
  2149. package/src/features/FileManager/Header/TogglePanelButton.tsx +0 -42
  2150. package/src/features/FileManager/Header/index.tsx +0 -27
  2151. package/src/features/FileManager/index.tsx +0 -36
  2152. package/src/hooks/_header.ts +0 -23
  2153. package/src/server/globalConfig/_deprecated.test.ts +0 -92
  2154. package/src/server/globalConfig/_deprecated.ts +0 -41
  2155. package/src/services/__tests__/share.test.ts +0 -61
  2156. package/src/services/aiModel/server.test.ts +0 -122
  2157. package/src/services/aiModel/server.ts +0 -51
  2158. package/src/services/aiModel/type.ts +0 -32
  2159. package/src/services/aiProvider/server.ts +0 -43
  2160. package/src/services/aiProvider/type.ts +0 -27
  2161. package/src/services/chatGroup/server.ts +0 -67
  2162. package/src/services/chatGroup/type.ts +0 -22
  2163. package/src/services/export/server.ts +0 -9
  2164. package/src/services/export/type.ts +0 -5
  2165. package/src/services/file/ClientS3/index.test.ts +0 -115
  2166. package/src/services/file/ClientS3/index.ts +0 -59
  2167. package/src/services/file/server.ts +0 -53
  2168. package/src/services/file/type.ts +0 -13
  2169. package/src/services/import/server.ts +0 -133
  2170. package/src/services/import/type.ts +0 -17
  2171. package/src/services/message/__tests__/server.test.ts +0 -44
  2172. package/src/services/message/server.ts +0 -155
  2173. package/src/services/message/type.ts +0 -59
  2174. package/src/services/plugin/server.ts +0 -42
  2175. package/src/services/plugin/type.ts +0 -23
  2176. package/src/services/session/server.test.ts +0 -260
  2177. package/src/services/session/server.ts +0 -125
  2178. package/src/services/session/type.ts +0 -82
  2179. package/src/services/thread/server.ts +0 -32
  2180. package/src/services/thread/type.ts +0 -21
  2181. package/src/services/topic/server.ts +0 -57
  2182. package/src/services/topic/type.ts +0 -40
  2183. package/src/services/user/server.test.ts +0 -149
  2184. package/src/services/user/server.ts +0 -47
  2185. package/src/services/user/type.ts +0 -21
  2186. package/src/store/chat/slices/aiChat/actions/__tests__/generateAIChat.test.ts +0 -968
  2187. package/src/store/chat/slices/aiChat/actions/__tests__/generateAIChatV2.test.ts +0 -743
  2188. package/src/store/chat/slices/aiChat/actions/generateAIChat.ts +0 -712
  2189. package/src/store/chat/slices/aiChat/actions/generateAIChatV2.ts +0 -591
  2190. package/src/store/chat/slices/message/action.ts +0 -641
  2191. package/src/store/chat/slices/plugin/action.ts +0 -505
  2192. package/src/store/global/actions/clientDb.ts +0 -67
  2193. package/src/store/middleware/createHyperStorage/index.test.ts +0 -341
  2194. package/src/store/middleware/createHyperStorage/index.ts +0 -126
  2195. package/src/store/middleware/createHyperStorage/indexedDB.test.ts +0 -64
  2196. package/src/store/middleware/createHyperStorage/indexedDB.ts +0 -26
  2197. package/src/store/middleware/createHyperStorage/keyMapper.ts +0 -57
  2198. package/src/store/middleware/createHyperStorage/localStorage.ts +0 -18
  2199. package/src/store/middleware/createHyperStorage/type.ts +0 -25
  2200. package/src/store/middleware/createHyperStorage/urlStorage.test.ts +0 -84
  2201. package/src/store/middleware/createHyperStorage/urlStorage.ts +0 -81
  2202. package/src/store/user/slices/modelList/__snapshots__/action.test.ts.snap +0 -12
  2203. package/src/store/user/slices/modelList/action.test.ts +0 -359
  2204. package/src/store/user/slices/modelList/action.ts +0 -223
  2205. package/src/store/user/slices/modelList/initialState.ts +0 -15
  2206. package/src/store/user/slices/modelList/reducers/customModelCard.test.ts +0 -204
  2207. package/src/store/user/slices/modelList/reducers/customModelCard.ts +0 -64
  2208. package/src/store/user/slices/modelList/selectors/index.ts +0 -3
  2209. package/src/store/user/slices/modelList/selectors/keyVaults.test.ts +0 -201
  2210. package/src/store/user/slices/modelList/selectors/keyVaults.ts +0 -50
  2211. package/src/store/user/slices/modelList/selectors/modelConfig.test.ts +0 -219
  2212. package/src/store/user/slices/modelList/selectors/modelConfig.ts +0 -95
  2213. package/src/store/user/slices/modelList/selectors/modelProvider.test.ts +0 -138
  2214. package/src/store/user/slices/modelList/selectors/modelProvider.ts +0 -170
  2215. package/src/store/user/slices/preference/selectors.ts +0 -34
  2216. package/src/tools/local-system/Placeholder/index.tsx +0 -25
  2217. package/src/tools/local-system/Render/index.tsx +0 -40
  2218. package/src/tools/web-browsing/Placeholder/PageContent.tsx +0 -27
  2219. package/src/tools/web-browsing/Placeholder/index.tsx +0 -40
  2220. package/src/tools/web-browsing/Render/index.tsx +0 -57
  2221. /package/packages/{utils/src/fetch → fetch-sse/src}/index.ts +0 -0
  2222. /package/src/app/[variants]/{@modal/(.)changelog/modal → (main)/changelog}/features/Pagination.tsx +0 -0
  2223. /package/src/app/[variants]/{@modal/(.)changelog/modal → (main)/changelog}/features/UpdateChangelogStatus.tsx +0 -0
  2224. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/default.tsx +0 -0
  2225. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/Desktop/useSendMenuItems.tsx +0 -0
  2226. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/Mobile/MentionedUsers/MentionedUserItem.tsx +0 -0
  2227. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/Mobile/MentionedUsers/index.tsx +0 -0
  2228. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/Mobile/index.tsx +0 -0
  2229. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/ActionBar.tsx +0 -0
  2230. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/Files/index.tsx +0 -0
  2231. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/InputArea/Container.tsx +0 -0
  2232. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/InputArea/index.tsx +0 -0
  2233. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/Send.tsx +0 -0
  2234. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/index.tsx +0 -0
  2235. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/ChatItem/OrchestratorThinking.tsx +0 -0
  2236. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/ChatItem/ThreadItem.tsx +0 -0
  2237. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/AgentWelcome/AddButton.tsx +0 -0
  2238. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/AgentWelcome/index.tsx +0 -0
  2239. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/GroupWelcome/index.tsx +0 -0
  2240. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/GroupWelcome/useTemplateMatching.ts +0 -0
  2241. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/index.tsx +0 -0
  2242. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ZenModeToast/Toast.tsx +0 -0
  2243. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ZenModeToast/index.tsx +0 -0
  2244. /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/AgentSettings/index.tsx +0 -0
  2245. /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/AgentTeamSettings/index.tsx +0 -0
  2246. /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/ChangelogModal.tsx +0 -0
  2247. /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/SettingButton.tsx +0 -0
  2248. /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/ShareButton/index.tsx +0 -0
  2249. /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/TelemetryNotification.tsx +0 -0
  2250. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/HeaderAction.tsx +0 -0
  2251. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Main.tsx +0 -0
  2252. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/HistoryLimitTags.tsx +0 -0
  2253. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/KnowledgeTag.tsx +0 -0
  2254. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/MemberCountTag.tsx +0 -0
  2255. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/SearchTags.tsx +0 -0
  2256. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/index.tsx +0 -0
  2257. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/index.tsx +0 -0
  2258. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/Portal.tsx +0 -0
  2259. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/TopicPanel.tsx +0 -0
  2260. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/index.tsx +0 -0
  2261. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Mobile/ChatHeader/ChatHeaderTitle.tsx +0 -0
  2262. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Mobile/ChatHeader/index.tsx +0 -0
  2263. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Mobile/TopicModal.tsx +0 -0
  2264. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Mobile/index.tsx +0 -0
  2265. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/type.ts +0 -0
  2266. /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/_layout/Desktop.tsx +0 -0
  2267. /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/_layout/Mobile.tsx +0 -0
  2268. /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/default.tsx +0 -0
  2269. /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/error.tsx +0 -0
  2270. /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/features/Body.tsx +0 -0
  2271. /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/loading.tsx +0 -0
  2272. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/_layout/Desktop.tsx +0 -0
  2273. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/_layout/Mobile.tsx +0 -0
  2274. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/default.tsx +0 -0
  2275. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/AgentConfig/SystemRole.tsx +0 -0
  2276. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/AgentConfig/index.tsx +0 -0
  2277. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/ConfigLayout.tsx +0 -0
  2278. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/ConfigSwitcher.tsx +0 -0
  2279. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/GroupMember.tsx +0 -0
  2280. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/GroupMemberItem.tsx +0 -0
  2281. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/GroupRole.tsx +0 -0
  2282. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/index.tsx +0 -0
  2283. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/style.ts +0 -0
  2284. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/SkeletonList.tsx +0 -0
  2285. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/Header.tsx +0 -0
  2286. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ByTimeMode/GroupItem.tsx +0 -0
  2287. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ByTimeMode/index.tsx +0 -0
  2288. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/FlatMode/index.tsx +0 -0
  2289. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/SearchResult/index.tsx +0 -0
  2290. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ThreadItem/Content.tsx +0 -0
  2291. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ThreadItem/index.tsx +0 -0
  2292. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ThreadList/index.tsx +0 -0
  2293. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/TopicItem/DefaultContent.tsx +0 -0
  2294. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/index.tsx +0 -0
  2295. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicSearchBar/index.tsx +0 -0
  2296. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/index.tsx +0 -0
  2297. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/CollapseGroup/Actions.tsx +0 -0
  2298. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/CollapseGroup/index.tsx +0 -0
  2299. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/DefaultMode.tsx +0 -0
  2300. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/List/AddButton.tsx +0 -0
  2301. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/ListItem/index.tsx +0 -0
  2302. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/ConfigGroupModal/GroupItem.tsx +0 -0
  2303. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/ConfigGroupModal/index.tsx +0 -0
  2304. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/CreateGroupModal.tsx +0 -0
  2305. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/RenameGroupModal.tsx +0 -0
  2306. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/SearchMode.tsx +0 -0
  2307. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/index.tsx +0 -0
  2308. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionSearchBar.tsx +0 -0
  2309. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SkeletonList.tsx +0 -0
  2310. /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Desktop/PanelBody.tsx +0 -0
  2311. /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Desktop/SessionHeader.tsx +0 -0
  2312. /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Desktop/index.tsx +0 -0
  2313. /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Mobile/index.tsx +0 -0
  2314. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/DetailProvider.tsx +0 -0
  2315. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/Knowledge.tsx +0 -0
  2316. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/KnowledgeItem.tsx +0 -0
  2317. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/PluginItem.tsx +0 -0
  2318. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/index.tsx +0 -0
  2319. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Sidebar/Related/Item.tsx +0 -0
  2320. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Sidebar/Summary/index.tsx +0 -0
  2321. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Sidebar/index.tsx +0 -0
  2322. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/loading.tsx → loading.tsx} +0 -0
  2323. /package/src/app/[variants]/(main)/discover/(detail)/mcp/{[slug]/features → features}/Sidebar/ActionButton/index.tsx +0 -0
  2324. /package/src/app/[variants]/(main)/discover/(detail)/mcp/{[slug]/features → features}/Sidebar/ConnectionTypeAlert.tsx +0 -0
  2325. /package/src/app/[variants]/(main)/discover/(detail)/mcp/{[slug]/features → features}/Sidebar/Related/Item.tsx +0 -0
  2326. /package/src/app/[variants]/(main)/discover/(detail)/mcp/{[slug]/features → features}/Sidebar/index.tsx +0 -0
  2327. /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/DetailProvider.tsx +0 -0
  2328. /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Details/Nav.tsx +0 -0
  2329. /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Details/Overview/ProviderList/index.tsx +0 -0
  2330. /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Details/Parameter/index.tsx +0 -0
  2331. /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Sidebar/Related/Item.tsx +0 -0
  2332. /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Sidebar/RelatedProviders/Item.tsx +0 -0
  2333. /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Sidebar/index.tsx +0 -0
  2334. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/DetailProvider.tsx +0 -0
  2335. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Details/Guide/index.tsx +0 -0
  2336. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Details/Nav.tsx +0 -0
  2337. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Details/Overview/ModelList/index.tsx +0 -0
  2338. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Details/Overview/index.tsx +0 -0
  2339. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Header.tsx +0 -0
  2340. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Sidebar/Related/Item.tsx +0 -0
  2341. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Sidebar/RelatedModels/Item.tsx +0 -0
  2342. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Sidebar/index.tsx +0 -0
  2343. /package/src/app/[variants]/(main)/{_layout/Desktop → layouts/desktop}/RegisterHotkeys.tsx +0 -0
  2344. /package/src/app/[variants]/(main)/{_layout/Desktop → layouts/desktop}/SideBar/Avatar.test.tsx +0 -0
  2345. /package/src/app/[variants]/(main)/{_layout/Desktop → layouts/desktop}/SideBar/Avatar.tsx +0 -0
  2346. /package/src/app/[variants]/(main)/{_layout/Desktop → layouts/desktop}/SideBar/index.tsx +0 -0
  2347. /package/src/app/[variants]/(main)/settings/provider/detail/newapi/{page.tsx → index.tsx} +0 -0
  2348. /package/src/app/[variants]/{(main)/chat/loading.tsx → loading.tsx} +0 -0
  2349. /package/src/{app/[variants]/(main)/settings/provider/features/ProviderConfig → components/Skeleton}/SkeletonInput.tsx +0 -0
  2350. /package/src/features/{Conversation → ChatList}/Error/ErrorJsonViewer.tsx +0 -0
  2351. /package/src/features/{Conversation → ChatList}/Error/OllamaBizError/InvalidOllamaModel.tsx +0 -0
  2352. /package/src/features/{Conversation → ChatList}/Error/OllamaBizError/index.tsx +0 -0
  2353. /package/src/features/{Conversation → ChatList}/Error/style.tsx +0 -0
  2354. /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/Render/Icon.tsx +0 -0
  2355. /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/Render/index.tsx +0 -0
  2356. /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/index.ts +0 -0
  2357. /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/rehypePlugin.test.ts +0 -0
  2358. /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/rehypePlugin.ts +0 -0
  2359. /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeThinking/index.ts +0 -0
  2360. /package/src/features/{Conversation → ChatList}/MarkdownElements/LocalFile/Render/index.tsx +0 -0
  2361. /package/src/features/{Conversation → ChatList}/MarkdownElements/LocalFile/index.ts +0 -0
  2362. /package/src/features/{Conversation → ChatList}/MarkdownElements/Mention/Render.tsx +0 -0
  2363. /package/src/features/{Conversation → ChatList}/MarkdownElements/Mention/index.ts +0 -0
  2364. /package/src/features/{Conversation → ChatList}/MarkdownElements/Thinking/index.ts +0 -0
  2365. /package/src/features/{Conversation → ChatList}/MarkdownElements/index.ts +0 -0
  2366. /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/createRemarkCustomTagPlugin.ts +0 -0
  2367. /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/createRemarkCustomTagWithAttributesPlugin.ts +0 -0
  2368. /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/getNodeContent.ts +0 -0
  2369. /package/src/features/{Conversation → ChatList}/MarkdownElements/type.ts +0 -0
  2370. /package/src/features/{Conversation → ChatList}/MarkdownElements/utils.ts +0 -0
  2371. /package/src/features/{Conversation → ChatList}/Messages/Assistant/Actions/Error.tsx +0 -0
  2372. /package/src/features/{Conversation → ChatList}/Messages/Assistant/FileChunks/Item/index.tsx +0 -0
  2373. /package/src/features/{Conversation → ChatList}/Messages/Assistant/FileChunks/Item/style.ts +0 -0
  2374. /package/src/features/{Conversation → ChatList}/Messages/Assistant/FileChunks/index.tsx +0 -0
  2375. /package/src/features/{Conversation → ChatList}/Messages/Assistant/IntentUnderstanding.tsx +0 -0
  2376. /package/src/features/{Conversation → ChatList}/Messages/Assistant/SearchGrounding.tsx +0 -0
  2377. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages/Group}/Tool/Inspector/Settings.tsx +0 -0
  2378. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages/Group}/Tool/Render/Arguments/ObjectEntity.tsx +0 -0
  2379. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages/Group}/Tool/Render/Arguments/ValueCell.tsx +0 -0
  2380. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages/Group}/Tool/Render/ErrorResponse.tsx +0 -0
  2381. /package/src/features/{Conversation → ChatList}/Messages/Supervisor/TodoList.tsx +0 -0
  2382. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages}/Tool/Inspector/BuiltinPluginTitle.tsx +0 -0
  2383. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages}/Tool/Inspector/Debug.tsx +0 -0
  2384. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages}/Tool/Render/Arguments/index.tsx +0 -0
  2385. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages}/Tool/Render/KeyValueEditor.tsx +0 -0
  2386. /package/src/features/{Conversation → ChatList}/Messages/User/BelowMessage.tsx +0 -0
  2387. /package/src/features/{Conversation → ChatList}/Messages/User/FileListViewer/Item.tsx +0 -0
  2388. /package/src/features/{Conversation → ChatList}/Messages/User/FileListViewer/index.tsx +0 -0
  2389. /package/src/features/{Conversation → ChatList}/Messages/User/ImageFileListViewer.tsx +0 -0
  2390. /package/src/features/{Conversation → ChatList}/Messages/User/MarkdownRender/ContentPreview.tsx +0 -0
  2391. /package/src/features/{Conversation → ChatList}/Messages/User/MarkdownRender/index.tsx +0 -0
  2392. /package/src/features/{Conversation → ChatList}/Messages/User/MessageContent.tsx +0 -0
  2393. /package/src/features/{Conversation → ChatList}/Messages/User/VideoFileListViewer.tsx +0 -0
  2394. /package/src/features/{Conversation → ChatList}/components/BackBottom/index.tsx +0 -0
  2395. /package/src/features/{Conversation → ChatList}/components/BackBottom/style.ts +0 -0
  2396. /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/PdfPreview.tsx +0 -0
  2397. /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/index.tsx +0 -0
  2398. /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/style.ts +0 -0
  2399. /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/template.ts +0 -0
  2400. /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/usePdfGeneration.ts +0 -0
  2401. /package/src/features/{Conversation → ChatList}/components/Extras/ExtraContainer.tsx +0 -0
  2402. /package/src/features/{Conversation → ChatList}/components/Extras/TTS/FilePlayer.tsx +0 -0
  2403. /package/src/features/{Conversation → ChatList}/components/Extras/TTS/Player.tsx +0 -0
  2404. /package/src/features/{Conversation → ChatList}/components/Extras/TTS/index.tsx +0 -0
  2405. /package/src/features/{Conversation → ChatList}/components/Extras/Translate.tsx +0 -0
  2406. /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/ModelCard.tsx +0 -0
  2407. /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/TokenProgress.tsx +0 -0
  2408. /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/pricing.ts +0 -0
  2409. /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/tokens.test.ts +0 -0
  2410. /package/src/features/{Conversation → ChatList}/components/History/HistoryDivider.tsx +0 -0
  2411. /package/src/features/{Conversation → ChatList}/components/History/index.tsx +0 -0
  2412. /package/src/features/{Conversation → ChatList}/components/OTPInput.tsx +0 -0
  2413. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareImage/index.tsx +0 -0
  2414. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareImage/style.ts +0 -0
  2415. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareImage/type.ts +0 -0
  2416. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/Preview.tsx +0 -0
  2417. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/index.tsx +0 -0
  2418. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/template.test.ts +0 -0
  2419. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/template.ts +0 -0
  2420. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/type.ts +0 -0
  2421. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/style.ts +0 -0
  2422. /package/src/features/{Conversation → ChatList}/components/ThreadDivider/index.tsx +0 -0
  2423. /package/src/features/{Conversation → ChatList}/context/InPortalThreadContext.ts +0 -0
  2424. /package/src/features/{Conversation → ChatList}/index.ts +0 -0
  2425. /package/src/features/{Conversation → ChatList}/types/index.ts +0 -0
  2426. /package/src/features/{Conversation → ChatList}/utils/markdown.test.ts +0 -0
  2427. /package/src/features/{Conversation → ChatList}/utils/markdown.ts +0 -0
  2428. /package/src/features/{FileManager/FileList/ToolBar → KnowledgeBaseModal/AssignKnowledgeBase}/ViewSwitcher.tsx +0 -0
  2429. /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/ChunkList/ChunkItem.tsx +0 -0
  2430. /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/ChunkList/index.tsx +0 -0
  2431. /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/Content.tsx +0 -0
  2432. /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/Loading/index.tsx +0 -0
  2433. /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/SimilaritySearchList/Item.tsx +0 -0
  2434. /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/SimilaritySearchList/index.tsx +0 -0
  2435. /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/index.tsx +0 -0
  2436. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/EmptyStatus.tsx +0 -0
  2437. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/FileListItem/ChunkTag.tsx +0 -0
  2438. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/FileListItem/DropdownMenu.tsx +0 -0
  2439. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/FileSkeleton.tsx +0 -0
  2440. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/MasonryFileItem/MasonryItemWrapper.tsx +0 -0
  2441. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/MasonrySkeleton.tsx +0 -0
  2442. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/ToolBar/Config.tsx +0 -0
  2443. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/ToolBar/MultiSelectActions.tsx +0 -0
  2444. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/ToolBar/index.tsx +0 -0
  2445. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/useCheckTaskStatus.ts +0 -0
  2446. /package/src/features/{FileManager → KnowledgeManager}/Header/UploadFileButton.tsx +0 -0
  2447. /package/src/features/{FileManager → KnowledgeManager}/UploadDock/Item.tsx +0 -0
  2448. /package/src/features/{FileManager → KnowledgeManager}/UploadDock/index.tsx +0 -0
  2449. /package/{packages/utils/src → src/utils/server}/__snapshots__/parseModels.test.ts.snap +0 -0
  2450. /package/{packages/utils/src → src/utils/server}/parseModels.test.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -2,6 +2,3202 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ## [Version 2.0.0-next.141](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.140...v2.0.0-next.141)
6
+
7
+ <sup>Released on **2025-12-01**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **misc**: Drop user.phoneNumber and reuse user.phone.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **misc**: Drop user.phoneNumber and reuse user.phone, closes [#10531](https://github.com/lobehub/lobe-chat/issues/10531) ([2ab88c5](https://github.com/lobehub/lobe-chat/commit/2ab88c5))
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.140](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.139...v2.0.0-next.140)
31
+
32
+ <sup>Released on **2025-12-01**</sup>
33
+
34
+ #### ✨ Features
35
+
36
+ - **misc**: Integrate better-auth admin plugin.
37
+
38
+ <br/>
39
+
40
+ <details>
41
+ <summary><kbd>Improvements and Fixes</kbd></summary>
42
+
43
+ #### What's improved
44
+
45
+ - **misc**: Integrate better-auth admin plugin, closes [#10512](https://github.com/lobehub/lobe-chat/issues/10512) ([3be78f0](https://github.com/lobehub/lobe-chat/commit/3be78f0))
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
+
55
+ ## [Version 2.0.0-next.139](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.138...v2.0.0-next.139)
56
+
57
+ <sup>Released on **2025-12-01**</sup>
58
+
59
+ #### 💄 Styles
60
+
61
+ - **misc**: Update i18n.
62
+
63
+ <br/>
64
+
65
+ <details>
66
+ <summary><kbd>Improvements and Fixes</kbd></summary>
67
+
68
+ #### Styles
69
+
70
+ - **misc**: Update i18n, closes [#10519](https://github.com/lobehub/lobe-chat/issues/10519) ([bd9a38c](https://github.com/lobehub/lobe-chat/commit/bd9a38c))
71
+
72
+ </details>
73
+
74
+ <div align="right">
75
+
76
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
77
+
78
+ </div>
79
+
80
+ ## [Version 2.0.0-next.138](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.137...v2.0.0-next.138)
81
+
82
+ <sup>Released on **2025-11-30**</sup>
83
+
84
+ #### 🐛 Bug Fixes
85
+
86
+ - **conversation-flow**: Support optimistic update for activeBranchIndex.
87
+
88
+ <br/>
89
+
90
+ <details>
91
+ <summary><kbd>Improvements and Fixes</kbd></summary>
92
+
93
+ #### What's fixed
94
+
95
+ - **conversation-flow**: Support optimistic update for activeBranchIndex, closes [#10517](https://github.com/lobehub/lobe-chat/issues/10517) ([9b5b234](https://github.com/lobehub/lobe-chat/commit/9b5b234))
96
+
97
+ </details>
98
+
99
+ <div align="right">
100
+
101
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
102
+
103
+ </div>
104
+
105
+ ## [Version 2.0.0-next.137](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.136...v2.0.0-next.137)
106
+
107
+ <sup>Released on **2025-11-30**</sup>
108
+
109
+ #### 🐛 Bug Fixes
110
+
111
+ - **misc**: Update apiMode handling in ChatService to prioritize user preferences.
112
+
113
+ <br/>
114
+
115
+ <details>
116
+ <summary><kbd>Improvements and Fixes</kbd></summary>
117
+
118
+ #### What's fixed
119
+
120
+ - **misc**: Update apiMode handling in ChatService to prioritize user preferences, closes [#10487](https://github.com/lobehub/lobe-chat/issues/10487) ([5483d91](https://github.com/lobehub/lobe-chat/commit/5483d91))
121
+
122
+ </details>
123
+
124
+ <div align="right">
125
+
126
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
127
+
128
+ </div>
129
+
130
+ ## [Version 2.0.0-next.136](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.135...v2.0.0-next.136)
131
+
132
+ <sup>Released on **2025-11-30**</sup>
133
+
134
+ #### 🐛 Bug Fixes
135
+
136
+ - **misc**: Refresh custom AI provider on selection.
137
+
138
+ <br/>
139
+
140
+ <details>
141
+ <summary><kbd>Improvements and Fixes</kbd></summary>
142
+
143
+ #### What's fixed
144
+
145
+ - **misc**: Refresh custom AI provider on selection, closes [#10506](https://github.com/lobehub/lobe-chat/issues/10506) ([d7db99e](https://github.com/lobehub/lobe-chat/commit/d7db99e))
146
+
147
+ </details>
148
+
149
+ <div align="right">
150
+
151
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
152
+
153
+ </div>
154
+
155
+ ## [Version 2.0.0-next.135](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.134...v2.0.0-next.135)
156
+
157
+ <sup>Released on **2025-11-30**</sup>
158
+
159
+ #### 🐛 Bug Fixes
160
+
161
+ - **misc**: Fix BetterAuth `Unable to link account - untrusted provider`.
162
+
163
+ <br/>
164
+
165
+ <details>
166
+ <summary><kbd>Improvements and Fixes</kbd></summary>
167
+
168
+ #### What's fixed
169
+
170
+ - **misc**: Fix BetterAuth `Unable to link account - untrusted provider`, closes [#10505](https://github.com/lobehub/lobe-chat/issues/10505) ([d845451](https://github.com/lobehub/lobe-chat/commit/d845451))
171
+
172
+ </details>
173
+
174
+ <div align="right">
175
+
176
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
177
+
178
+ </div>
179
+
180
+ ## [Version 2.0.0-next.134](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.133...v2.0.0-next.134)
181
+
182
+ <sup>Released on **2025-11-29**</sup>
183
+
184
+ #### 🐛 Bug Fixes
185
+
186
+ - **misc**: Betterauth public url auto detect from VERCEL_URL.
187
+
188
+ <br/>
189
+
190
+ <details>
191
+ <summary><kbd>Improvements and Fixes</kbd></summary>
192
+
193
+ #### What's fixed
194
+
195
+ - **misc**: Betterauth public url auto detect from VERCEL_URL, closes [#10493](https://github.com/lobehub/lobe-chat/issues/10493) ([b5bf8ad](https://github.com/lobehub/lobe-chat/commit/b5bf8ad))
196
+
197
+ </details>
198
+
199
+ <div align="right">
200
+
201
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
202
+
203
+ </div>
204
+
205
+ ## [Version 2.0.0-next.133](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.132...v2.0.0-next.133)
206
+
207
+ <sup>Released on **2025-11-29**</sup>
208
+
209
+ #### 🐛 Bug Fixes
210
+
211
+ - **misc**: Betterauth name should mapped to fullName.
212
+
213
+ <br/>
214
+
215
+ <details>
216
+ <summary><kbd>Improvements and Fixes</kbd></summary>
217
+
218
+ #### What's fixed
219
+
220
+ - **misc**: Betterauth name should mapped to fullName, closes [#10490](https://github.com/lobehub/lobe-chat/issues/10490) ([7babdc1](https://github.com/lobehub/lobe-chat/commit/7babdc1))
221
+
222
+ </details>
223
+
224
+ <div align="right">
225
+
226
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
227
+
228
+ </div>
229
+
230
+ ## [Version 2.0.0-next.132](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.131...v2.0.0-next.132)
231
+
232
+ <sup>Released on **2025-11-29**</sup>
233
+
234
+ #### 🐛 Bug Fixes
235
+
236
+ - **misc**: Unable to switch to default topic.
237
+
238
+ <br/>
239
+
240
+ <details>
241
+ <summary><kbd>Improvements and Fixes</kbd></summary>
242
+
243
+ #### What's fixed
244
+
245
+ - **misc**: Unable to switch to default topic, closes [#10472](https://github.com/lobehub/lobe-chat/issues/10472) ([d181f71](https://github.com/lobehub/lobe-chat/commit/d181f71))
246
+
247
+ </details>
248
+
249
+ <div align="right">
250
+
251
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
252
+
253
+ </div>
254
+
255
+ ## [Version 2.0.0-next.131](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.130...v2.0.0-next.131)
256
+
257
+ <sup>Released on **2025-11-28**</sup>
258
+
259
+ #### 🐛 Bug Fixes
260
+
261
+ - **misc**: Implement uniform callback URL for SSO providers.
262
+
263
+ <br/>
264
+
265
+ <details>
266
+ <summary><kbd>Improvements and Fixes</kbd></summary>
267
+
268
+ #### What's fixed
269
+
270
+ - **misc**: Implement uniform callback URL for SSO providers, closes [#10479](https://github.com/lobehub/lobe-chat/issues/10479) ([74554c6](https://github.com/lobehub/lobe-chat/commit/74554c6))
271
+
272
+ </details>
273
+
274
+ <div align="right">
275
+
276
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
277
+
278
+ </div>
279
+
280
+ ## [Version 2.0.0-next.130](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.129...v2.0.0-next.130)
281
+
282
+ <sup>Released on **2025-11-28**</sup>
283
+
284
+ #### 🐛 Bug Fixes
285
+
286
+ - **misc**: Add handling for `content_part` and `reasoning_part` events in fetchSSE.
287
+
288
+ <br/>
289
+
290
+ <details>
291
+ <summary><kbd>Improvements and Fixes</kbd></summary>
292
+
293
+ #### What's fixed
294
+
295
+ - **misc**: Add handling for `content_part` and `reasoning_part` events in fetchSSE, closes [#10470](https://github.com/lobehub/lobe-chat/issues/10470) ([8aff3ab](https://github.com/lobehub/lobe-chat/commit/8aff3ab))
296
+
297
+ </details>
298
+
299
+ <div align="right">
300
+
301
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
302
+
303
+ </div>
304
+
305
+ ## [Version 2.0.0-next.129](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.128...v2.0.0-next.129)
306
+
307
+ <sup>Released on **2025-11-28**</sup>
308
+
309
+ #### 🐛 Bug Fixes
310
+
311
+ - **misc**: Filter out file with `sourceType` = `file`.
312
+
313
+ <br/>
314
+
315
+ <details>
316
+ <summary><kbd>Improvements and Fixes</kbd></summary>
317
+
318
+ #### What's fixed
319
+
320
+ - **misc**: Filter out file with `sourceType` = `file`, closes [#10474](https://github.com/lobehub/lobe-chat/issues/10474) ([e1c99a0](https://github.com/lobehub/lobe-chat/commit/e1c99a0))
321
+
322
+ </details>
323
+
324
+ <div align="right">
325
+
326
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
327
+
328
+ </div>
329
+
330
+ ## [Version 2.0.0-next.128](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.127...v2.0.0-next.128)
331
+
332
+ <sup>Released on **2025-11-28**</sup>
333
+
334
+ #### 💄 Styles
335
+
336
+ - **misc**: Update i18n.
337
+
338
+ <br/>
339
+
340
+ <details>
341
+ <summary><kbd>Improvements and Fixes</kbd></summary>
342
+
343
+ #### Styles
344
+
345
+ - **misc**: Update i18n, closes [#10466](https://github.com/lobehub/lobe-chat/issues/10466) ([37bd67a](https://github.com/lobehub/lobe-chat/commit/37bd67a))
346
+
347
+ </details>
348
+
349
+ <div align="right">
350
+
351
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
352
+
353
+ </div>
354
+
355
+ ## [Version 2.0.0-next.127](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.126...v2.0.0-next.127)
356
+
357
+ <sup>Released on **2025-11-27**</sup>
358
+
359
+ #### 🐛 Bug Fixes
360
+
361
+ - **misc**: Better-auth fallback next-auth providers env.
362
+
363
+ <br/>
364
+
365
+ <details>
366
+ <summary><kbd>Improvements and Fixes</kbd></summary>
367
+
368
+ #### What's fixed
369
+
370
+ - **misc**: Better-auth fallback next-auth providers env, closes [#10459](https://github.com/lobehub/lobe-chat/issues/10459) ([e167075](https://github.com/lobehub/lobe-chat/commit/e167075))
371
+
372
+ </details>
373
+
374
+ <div align="right">
375
+
376
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
377
+
378
+ </div>
379
+
380
+ ## [Version 2.0.0-next.126](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.125...v2.0.0-next.126)
381
+
382
+ <sup>Released on **2025-11-27**</sup>
383
+
384
+ #### 🐛 Bug Fixes
385
+
386
+ - **misc**: Align docker auth defaults and better-auth docs.
387
+
388
+ <br/>
389
+
390
+ <details>
391
+ <summary><kbd>Improvements and Fixes</kbd></summary>
392
+
393
+ #### What's fixed
394
+
395
+ - **misc**: Align docker auth defaults and better-auth docs, closes [#10457](https://github.com/lobehub/lobe-chat/issues/10457) ([1375314](https://github.com/lobehub/lobe-chat/commit/1375314))
396
+
397
+ </details>
398
+
399
+ <div align="right">
400
+
401
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
402
+
403
+ </div>
404
+
405
+ ## [Version 2.0.0-next.125](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.124...v2.0.0-next.125)
406
+
407
+ <sup>Released on **2025-11-27**</sup>
408
+
409
+ #### ✨ Features
410
+
411
+ - **misc**: Support better-auth.
412
+
413
+ <br/>
414
+
415
+ <details>
416
+ <summary><kbd>Improvements and Fixes</kbd></summary>
417
+
418
+ #### What's improved
419
+
420
+ - **misc**: Support better-auth, closes [#10215](https://github.com/lobehub/lobe-chat/issues/10215) ([dc62cc9](https://github.com/lobehub/lobe-chat/commit/dc62cc9))
421
+
422
+ </details>
423
+
424
+ <div align="right">
425
+
426
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
427
+
428
+ </div>
429
+
430
+ ## [Version 2.0.0-next.124](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.123...v2.0.0-next.124)
431
+
432
+ <sup>Released on **2025-11-27**</sup>
433
+
434
+ #### 🐛 Bug Fixes
435
+
436
+ - **misc**: Fixed the agent settings plugins pages error problem, improve topic item interaction and editing behavior.
437
+
438
+ <br/>
439
+
440
+ <details>
441
+ <summary><kbd>Improvements and Fixes</kbd></summary>
442
+
443
+ #### What's fixed
444
+
445
+ - **misc**: Fixed the agent settings plugins pages error problem, closes [#10437](https://github.com/lobehub/lobe-chat/issues/10437) ([c58f37a](https://github.com/lobehub/lobe-chat/commit/c58f37a))
446
+ - **misc**: Improve topic item interaction and editing behavior, closes [#10409](https://github.com/lobehub/lobe-chat/issues/10409) ([85b45cb](https://github.com/lobehub/lobe-chat/commit/85b45cb))
447
+
448
+ </details>
449
+
450
+ <div align="right">
451
+
452
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
453
+
454
+ </div>
455
+
456
+ ## [Version 2.0.0-next.123](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.122...v2.0.0-next.123)
457
+
458
+ <sup>Released on **2025-11-27**</sup>
459
+
460
+ #### 💄 Styles
461
+
462
+ - **misc**: Update i18n.
463
+
464
+ <br/>
465
+
466
+ <details>
467
+ <summary><kbd>Improvements and Fixes</kbd></summary>
468
+
469
+ #### Styles
470
+
471
+ - **misc**: Update i18n, closes [#10445](https://github.com/lobehub/lobe-chat/issues/10445) ([4942bc9](https://github.com/lobehub/lobe-chat/commit/4942bc9))
472
+
473
+ </details>
474
+
475
+ <div align="right">
476
+
477
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
478
+
479
+ </div>
480
+
481
+ ## [Version 2.0.0-next.122](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.121...v2.0.0-next.122)
482
+
483
+ <sup>Released on **2025-11-26**</sup>
484
+
485
+ #### 🐛 Bug Fixes
486
+
487
+ - **misc**: Slove the publish to market the agent config error.
488
+
489
+ <br/>
490
+
491
+ <details>
492
+ <summary><kbd>Improvements and Fixes</kbd></summary>
493
+
494
+ #### What's fixed
495
+
496
+ - **misc**: Slove the publish to market the agent config error, closes [#10440](https://github.com/lobehub/lobe-chat/issues/10440) ([fda8119](https://github.com/lobehub/lobe-chat/commit/fda8119))
497
+
498
+ </details>
499
+
500
+ <div align="right">
501
+
502
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
503
+
504
+ </div>
505
+
506
+ ## [Version 2.0.0-next.121](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.120...v2.0.0-next.121)
507
+
508
+ <sup>Released on **2025-11-26**</sup>
509
+
510
+ #### 💄 Styles
511
+
512
+ - **misc**: Add image aspect ratio and resolution settings for Nano Banana Pro.
513
+
514
+ <br/>
515
+
516
+ <details>
517
+ <summary><kbd>Improvements and Fixes</kbd></summary>
518
+
519
+ #### Styles
520
+
521
+ - **misc**: Add image aspect ratio and resolution settings for Nano Banana Pro, closes [#10430](https://github.com/lobehub/lobe-chat/issues/10430) ([a197b4b](https://github.com/lobehub/lobe-chat/commit/a197b4b))
522
+
523
+ </details>
524
+
525
+ <div align="right">
526
+
527
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
528
+
529
+ </div>
530
+
531
+ ## [Version 2.0.0-next.120](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.119...v2.0.0-next.120)
532
+
533
+ <sup>Released on **2025-11-26**</sup>
534
+
535
+ #### 🐛 Bug Fixes
536
+
537
+ - **misc**: Try to fix “TypeError: Response body object should not be disturbed or locked”.
538
+
539
+ <br/>
540
+
541
+ <details>
542
+ <summary><kbd>Improvements and Fixes</kbd></summary>
543
+
544
+ #### What's fixed
545
+
546
+ - **misc**: Try to fix “TypeError: Response body object should not be disturbed or locked”, closes [#10321](https://github.com/lobehub/lobe-chat/issues/10321) ([a547e9e](https://github.com/lobehub/lobe-chat/commit/a547e9e))
547
+
548
+ </details>
549
+
550
+ <div align="right">
551
+
552
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
553
+
554
+ </div>
555
+
556
+ ## [Version 2.0.0-next.119](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.118...v2.0.0-next.119)
557
+
558
+ <sup>Released on **2025-11-26**</sup>
559
+
560
+ #### 💄 Styles
561
+
562
+ - **misc**: Update i18n.
563
+
564
+ <br/>
565
+
566
+ <details>
567
+ <summary><kbd>Improvements and Fixes</kbd></summary>
568
+
569
+ #### Styles
570
+
571
+ - **misc**: Update i18n, closes [#10405](https://github.com/lobehub/lobe-chat/issues/10405) ([fb8f977](https://github.com/lobehub/lobe-chat/commit/fb8f977))
572
+
573
+ </details>
574
+
575
+ <div align="right">
576
+
577
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
578
+
579
+ </div>
580
+
581
+ ## [Version 2.0.0-next.118](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.117...v2.0.0-next.118)
582
+
583
+ <sup>Released on **2025-11-26**</sup>
584
+
585
+ #### 🐛 Bug Fixes
586
+
587
+ - **misc**: Showing compatibility with both new and old versions of Plugins.
588
+
589
+ <br/>
590
+
591
+ <details>
592
+ <summary><kbd>Improvements and Fixes</kbd></summary>
593
+
594
+ #### What's fixed
595
+
596
+ - **misc**: Showing compatibility with both new and old versions of Plugins, closes [#10418](https://github.com/lobehub/lobe-chat/issues/10418) ([64af7b1](https://github.com/lobehub/lobe-chat/commit/64af7b1))
597
+
598
+ </details>
599
+
600
+ <div align="right">
601
+
602
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
603
+
604
+ </div>
605
+
606
+ ## [Version 2.0.0-next.117](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.116...v2.0.0-next.117)
607
+
608
+ <sup>Released on **2025-11-25**</sup>
609
+
610
+ #### ✨ Features
611
+
612
+ - **misc**: Bedrock claude model thinking support.
613
+
614
+ <br/>
615
+
616
+ <details>
617
+ <summary><kbd>Improvements and Fixes</kbd></summary>
618
+
619
+ #### What's improved
620
+
621
+ - **misc**: Bedrock claude model thinking support, closes [#10422](https://github.com/lobehub/lobe-chat/issues/10422) ([8b41638](https://github.com/lobehub/lobe-chat/commit/8b41638))
622
+
623
+ </details>
624
+
625
+ <div align="right">
626
+
627
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
628
+
629
+ </div>
630
+
631
+ ## [Version 2.0.0-next.116](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.115...v2.0.0-next.116)
632
+
633
+ <sup>Released on **2025-11-25**</sup>
634
+
635
+ #### ✨ Features
636
+
637
+ - **misc**: Support nano banana pro.
638
+
639
+ <br/>
640
+
641
+ <details>
642
+ <summary><kbd>Improvements and Fixes</kbd></summary>
643
+
644
+ #### What's improved
645
+
646
+ - **misc**: Support nano banana pro, closes [#10413](https://github.com/lobehub/lobe-chat/issues/10413) ([a93cfcd](https://github.com/lobehub/lobe-chat/commit/a93cfcd))
647
+
648
+ </details>
649
+
650
+ <div align="right">
651
+
652
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
653
+
654
+ </div>
655
+
656
+ ## [Version 2.0.0-next.115](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.114...v2.0.0-next.115)
657
+
658
+ <sup>Released on **2025-11-25**</sup>
659
+
660
+ #### ✨ Features
661
+
662
+ - **misc**: Add Claude Opus 4.5 model.
663
+
664
+ <br/>
665
+
666
+ <details>
667
+ <summary><kbd>Improvements and Fixes</kbd></summary>
668
+
669
+ #### What's improved
670
+
671
+ - **misc**: Add Claude Opus 4.5 model, closes [#10406](https://github.com/lobehub/lobe-chat/issues/10406) ([042005a](https://github.com/lobehub/lobe-chat/commit/042005a))
672
+
673
+ </details>
674
+
675
+ <div align="right">
676
+
677
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
678
+
679
+ </div>
680
+
681
+ ## [Version 2.0.0-next.114](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.113...v2.0.0-next.114)
682
+
683
+ <sup>Released on **2025-11-25**</sup>
684
+
685
+ #### 🐛 Bug Fixes
686
+
687
+ - **misc**: Fixed the topic link dropdown error.
688
+
689
+ <br/>
690
+
691
+ <details>
692
+ <summary><kbd>Improvements and Fixes</kbd></summary>
693
+
694
+ #### What's fixed
695
+
696
+ - **misc**: Fixed the topic link dropdown error, closes [#10408](https://github.com/lobehub/lobe-chat/issues/10408) ([864e3d5](https://github.com/lobehub/lobe-chat/commit/864e3d5))
697
+
698
+ </details>
699
+
700
+ <div align="right">
701
+
702
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
703
+
704
+ </div>
705
+
706
+ ## [Version 2.0.0-next.113](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.112...v2.0.0-next.113)
707
+
708
+ <sup>Released on **2025-11-25**</sup>
709
+
710
+ #### 🐛 Bug Fixes
711
+
712
+ - **misc**: Fixed when desktop userId was change manytimes the aimodel not right.
713
+
714
+ <br/>
715
+
716
+ <details>
717
+ <summary><kbd>Improvements and Fixes</kbd></summary>
718
+
719
+ #### What's fixed
720
+
721
+ - **misc**: Fixed when desktop userId was change manytimes the aimodel not right, closes [#10389](https://github.com/lobehub/lobe-chat/issues/10389) ([3ed8153](https://github.com/lobehub/lobe-chat/commit/3ed8153))
722
+
723
+ </details>
724
+
725
+ <div align="right">
726
+
727
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
728
+
729
+ </div>
730
+
731
+ ## [Version 2.0.0-next.112](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.111...v2.0.0-next.112)
732
+
733
+ <sup>Released on **2025-11-24**</sup>
734
+
735
+ #### ♻ Code Refactoring
736
+
737
+ - **misc**: Optimize files schema definition.
738
+
739
+ #### 💄 Styles
740
+
741
+ - **misc**: Add Kimi K2 Thinking to Qwen Provider.
742
+
743
+ <br/>
744
+
745
+ <details>
746
+ <summary><kbd>Improvements and Fixes</kbd></summary>
747
+
748
+ #### Code refactoring
749
+
750
+ - **misc**: Optimize files schema definition, closes [#10403](https://github.com/lobehub/lobe-chat/issues/10403) ([cf28c87](https://github.com/lobehub/lobe-chat/commit/cf28c87))
751
+
752
+ #### Styles
753
+
754
+ - **misc**: Add Kimi K2 Thinking to Qwen Provider, closes [#10287](https://github.com/lobehub/lobe-chat/issues/10287) ([bd2e838](https://github.com/lobehub/lobe-chat/commit/bd2e838))
755
+
756
+ </details>
757
+
758
+ <div align="right">
759
+
760
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
761
+
762
+ </div>
763
+
764
+ ## [Version 2.0.0-next.111](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.110...v2.0.0-next.111)
765
+
766
+ <sup>Released on **2025-11-24**</sup>
767
+
768
+ #### 🐛 Bug Fixes
769
+
770
+ - **misc**: Fix db migration snapshot not align with db schema, Separate agent file injection from knowledge base RAG search.
771
+
772
+ <br/>
773
+
774
+ <details>
775
+ <summary><kbd>Improvements and Fixes</kbd></summary>
776
+
777
+ #### What's fixed
778
+
779
+ - **misc**: Fix db migration snapshot not align with db schema, closes [#10399](https://github.com/lobehub/lobe-chat/issues/10399) ([760105a](https://github.com/lobehub/lobe-chat/commit/760105a))
780
+ - **misc**: Separate agent file injection from knowledge base RAG search, closes [#10398](https://github.com/lobehub/lobe-chat/issues/10398) ([e1c813a](https://github.com/lobehub/lobe-chat/commit/e1c813a))
781
+
782
+ </details>
783
+
784
+ <div align="right">
785
+
786
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
787
+
788
+ </div>
789
+
790
+ ## [Version 2.0.0-next.110](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.109...v2.0.0-next.110)
791
+
792
+ <sup>Released on **2025-11-24**</sup>
793
+
794
+ #### 💄 Styles
795
+
796
+ - **misc**: Add hyperlink to each topic & pinned agent, support ContextMenu on ChatItem.
797
+
798
+ <br/>
799
+
800
+ <details>
801
+ <summary><kbd>Improvements and Fixes</kbd></summary>
802
+
803
+ #### Styles
804
+
805
+ - **misc**: Add hyperlink to each topic & pinned agent, closes [#10367](https://github.com/lobehub/lobe-chat/issues/10367) ([63e4b3d](https://github.com/lobehub/lobe-chat/commit/63e4b3d))
806
+ - **misc**: Support ContextMenu on ChatItem, closes [#9034](https://github.com/lobehub/lobe-chat/issues/9034) ([27c1154](https://github.com/lobehub/lobe-chat/commit/27c1154))
807
+
808
+ </details>
809
+
810
+ <div align="right">
811
+
812
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
813
+
814
+ </div>
815
+
816
+ ## [Version 2.0.0-next.109](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.108...v2.0.0-next.109)
817
+
818
+ <sup>Released on **2025-11-24**</sup>
819
+
820
+ #### 🐛 Bug Fixes
821
+
822
+ - **misc**: Fixed the knowledge files cant open error.
823
+
824
+ #### 💄 Styles
825
+
826
+ - **misc**: Update i18n.
827
+
828
+ <br/>
829
+
830
+ <details>
831
+ <summary><kbd>Improvements and Fixes</kbd></summary>
832
+
833
+ #### What's fixed
834
+
835
+ - **misc**: Fixed the knowledge files cant open error, closes [#10386](https://github.com/lobehub/lobe-chat/issues/10386) ([8104c77](https://github.com/lobehub/lobe-chat/commit/8104c77))
836
+
837
+ #### Styles
838
+
839
+ - **misc**: Update i18n, closes [#10368](https://github.com/lobehub/lobe-chat/issues/10368) ([ed707af](https://github.com/lobehub/lobe-chat/commit/ed707af))
840
+
841
+ </details>
842
+
843
+ <div align="right">
844
+
845
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
846
+
847
+ </div>
848
+
849
+ ## [Version 2.0.0-next.108](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.107...v2.0.0-next.108)
850
+
851
+ <sup>Released on **2025-11-24**</sup>
852
+
853
+ #### 🐛 Bug Fixes
854
+
855
+ - **misc**: Fixed the pinned session not work.
856
+
857
+ <br/>
858
+
859
+ <details>
860
+ <summary><kbd>Improvements and Fixes</kbd></summary>
861
+
862
+ #### What's fixed
863
+
864
+ - **misc**: Fixed the pinned session not work, closes [#10323](https://github.com/lobehub/lobe-chat/issues/10323) ([224f999](https://github.com/lobehub/lobe-chat/commit/224f999))
865
+
866
+ </details>
867
+
868
+ <div align="right">
869
+
870
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
871
+
872
+ </div>
873
+
874
+ ## [Version 2.0.0-next.107](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.106...v2.0.0-next.107)
875
+
876
+ <sup>Released on **2025-11-23**</sup>
877
+
878
+ #### 💄 Styles
879
+
880
+ - **misc**: Optimize nana banana pro error message.
881
+
882
+ <br/>
883
+
884
+ <details>
885
+ <summary><kbd>Improvements and Fixes</kbd></summary>
886
+
887
+ #### Styles
888
+
889
+ - **misc**: Optimize nana banana pro error message, closes [#10378](https://github.com/lobehub/lobe-chat/issues/10378) ([cb34757](https://github.com/lobehub/lobe-chat/commit/cb34757))
890
+
891
+ </details>
892
+
893
+ <div align="right">
894
+
895
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
896
+
897
+ </div>
898
+
899
+ ## [Version 2.0.0-next.106](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.105...v2.0.0-next.106)
900
+
901
+ <sup>Released on **2025-11-23**</sup>
902
+
903
+ #### ✨ Features
904
+
905
+ - **misc**: Add nano-banana-pro model support and optimization.
906
+
907
+ <br/>
908
+
909
+ <details>
910
+ <summary><kbd>Improvements and Fixes</kbd></summary>
911
+
912
+ #### What's improved
913
+
914
+ - **misc**: Add nano-banana-pro model support and optimization, closes [#10376](https://github.com/lobehub/lobe-chat/issues/10376) ([5349bdc](https://github.com/lobehub/lobe-chat/commit/5349bdc))
915
+
916
+ </details>
917
+
918
+ <div align="right">
919
+
920
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
921
+
922
+ </div>
923
+
924
+ ## [Version 2.0.0-next.105](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.104...v2.0.0-next.105)
925
+
926
+ <sup>Released on **2025-11-23**</sup>
927
+
928
+ #### 🐛 Bug Fixes
929
+
930
+ - **operation**: Isolate loading state to current active topic.
931
+
932
+ <br/>
933
+
934
+ <details>
935
+ <summary><kbd>Improvements and Fixes</kbd></summary>
936
+
937
+ #### What's fixed
938
+
939
+ - **operation**: Isolate loading state to current active topic, closes [#10360](https://github.com/lobehub/lobe-chat/issues/10360) ([c568369](https://github.com/lobehub/lobe-chat/commit/c568369))
940
+
941
+ </details>
942
+
943
+ <div align="right">
944
+
945
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
946
+
947
+ </div>
948
+
949
+ ## [Version 2.0.0-next.104](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.103...v2.0.0-next.104)
950
+
951
+ <sup>Released on **2025-11-22**</sup>
952
+
953
+ #### 💄 Styles
954
+
955
+ - **misc**: Update i18n.
956
+
957
+ <br/>
958
+
959
+ <details>
960
+ <summary><kbd>Improvements and Fixes</kbd></summary>
961
+
962
+ #### Styles
963
+
964
+ - **misc**: Update i18n, closes [#10349](https://github.com/lobehub/lobe-chat/issues/10349) ([3482d38](https://github.com/lobehub/lobe-chat/commit/3482d38))
965
+
966
+ </details>
967
+
968
+ <div align="right">
969
+
970
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
971
+
972
+ </div>
973
+
974
+ ## [Version 2.0.0-next.103](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.102...v2.0.0-next.103)
975
+
976
+ <sup>Released on **2025-11-22**</sup>
977
+
978
+ #### 🐛 Bug Fixes
979
+
980
+ - **misc**: Hide ai image config item in settings category.
981
+
982
+ <br/>
983
+
984
+ <details>
985
+ <summary><kbd>Improvements and Fixes</kbd></summary>
986
+
987
+ #### What's fixed
988
+
989
+ - **misc**: Hide ai image config item in settings category, closes [#10066](https://github.com/lobehub/lobe-chat/issues/10066) ([90354eb](https://github.com/lobehub/lobe-chat/commit/90354eb))
990
+
991
+ </details>
992
+
993
+ <div align="right">
994
+
995
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
996
+
997
+ </div>
998
+
999
+ ## [Version 2.0.0-next.102](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.101...v2.0.0-next.102)
1000
+
1001
+ <sup>Released on **2025-11-22**</sup>
1002
+
1003
+ #### ✨ Features
1004
+
1005
+ - **misc**: Add new provider ZenMux & Gemini 3 Pro Image Preview.
1006
+
1007
+ <br/>
1008
+
1009
+ <details>
1010
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1011
+
1012
+ #### What's improved
1013
+
1014
+ - **misc**: Add new provider ZenMux & Gemini 3 Pro Image Preview, closes [#10310](https://github.com/lobehub/lobe-chat/issues/10310) ([f2291e4](https://github.com/lobehub/lobe-chat/commit/f2291e4))
1015
+
1016
+ </details>
1017
+
1018
+ <div align="right">
1019
+
1020
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1021
+
1022
+ </div>
1023
+
1024
+ ## [Version 2.0.0-next.101](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.100...v2.0.0-next.101)
1025
+
1026
+ <sup>Released on **2025-11-22**</sup>
1027
+
1028
+ #### ✨ Features
1029
+
1030
+ - **misc**: Support bedrok prompt cache and usage compute.
1031
+
1032
+ <br/>
1033
+
1034
+ <details>
1035
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1036
+
1037
+ #### What's improved
1038
+
1039
+ - **misc**: Support bedrok prompt cache and usage compute, closes [#10337](https://github.com/lobehub/lobe-chat/issues/10337) ([beb9471](https://github.com/lobehub/lobe-chat/commit/beb9471))
1040
+
1041
+ </details>
1042
+
1043
+ <div align="right">
1044
+
1045
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1046
+
1047
+ </div>
1048
+
1049
+ ## [Version 2.0.0-next.100](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.99...v2.0.0-next.100)
1050
+
1051
+ <sup>Released on **2025-11-21**</sup>
1052
+
1053
+ #### 🐛 Bug Fixes
1054
+
1055
+ - **misc**: Gemini 3 Pro does not display thought summaries.
1056
+
1057
+ <br/>
1058
+
1059
+ <details>
1060
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1061
+
1062
+ #### What's fixed
1063
+
1064
+ - **misc**: Gemini 3 Pro does not display thought summaries, closes [#10345](https://github.com/lobehub/lobe-chat/issues/10345) ([89e296a](https://github.com/lobehub/lobe-chat/commit/89e296a))
1065
+
1066
+ </details>
1067
+
1068
+ <div align="right">
1069
+
1070
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1071
+
1072
+ </div>
1073
+
1074
+ ## [Version 2.0.0-next.99](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.98...v2.0.0-next.99)
1075
+
1076
+ <sup>Released on **2025-11-21**</sup>
1077
+
1078
+ #### ✨ Features
1079
+
1080
+ - **misc**: Refactor to use kb search tool.
1081
+
1082
+ <br/>
1083
+
1084
+ <details>
1085
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1086
+
1087
+ #### What's improved
1088
+
1089
+ - **misc**: Refactor to use kb search tool, closes [#10340](https://github.com/lobehub/lobe-chat/issues/10340) ([291ff3c](https://github.com/lobehub/lobe-chat/commit/291ff3c))
1090
+
1091
+ </details>
1092
+
1093
+ <div align="right">
1094
+
1095
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1096
+
1097
+ </div>
1098
+
1099
+ ## [Version 2.0.0-next.98](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.97...v2.0.0-next.98)
1100
+
1101
+ <sup>Released on **2025-11-21**</sup>
1102
+
1103
+ #### 🐛 Bug Fixes
1104
+
1105
+ - **misc**: Fixed changelog pages and open again.
1106
+
1107
+ #### 💄 Styles
1108
+
1109
+ - **misc**: Fix some translations.
1110
+
1111
+ <br/>
1112
+
1113
+ <details>
1114
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1115
+
1116
+ #### What's fixed
1117
+
1118
+ - **misc**: Fixed changelog pages and open again, closes [#10285](https://github.com/lobehub/lobe-chat/issues/10285) ([871d141](https://github.com/lobehub/lobe-chat/commit/871d141))
1119
+
1120
+ #### Styles
1121
+
1122
+ - **misc**: Fix some translations, closes [#10343](https://github.com/lobehub/lobe-chat/issues/10343) ([ed193e0](https://github.com/lobehub/lobe-chat/commit/ed193e0))
1123
+
1124
+ </details>
1125
+
1126
+ <div align="right">
1127
+
1128
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1129
+
1130
+ </div>
1131
+
1132
+ ## [Version 2.0.0-next.97](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.96...v2.0.0-next.97)
1133
+
1134
+ <sup>Released on **2025-11-21**</sup>
1135
+
1136
+ #### ♻ Code Refactoring
1137
+
1138
+ - **misc**: Refactor Conversation to ChatList.
1139
+
1140
+ #### 💄 Styles
1141
+
1142
+ - **misc**: Update i18n.
1143
+
1144
+ <br/>
1145
+
1146
+ <details>
1147
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1148
+
1149
+ #### Code refactoring
1150
+
1151
+ - **misc**: Refactor Conversation to ChatList, closes [#10330](https://github.com/lobehub/lobe-chat/issues/10330) ([bca70e2](https://github.com/lobehub/lobe-chat/commit/bca70e2))
1152
+
1153
+ #### Styles
1154
+
1155
+ - **misc**: Update i18n, closes [#10338](https://github.com/lobehub/lobe-chat/issues/10338) ([9c8cf81](https://github.com/lobehub/lobe-chat/commit/9c8cf81))
1156
+
1157
+ </details>
1158
+
1159
+ <div align="right">
1160
+
1161
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1162
+
1163
+ </div>
1164
+
1165
+ ## [Version 2.0.0-next.96](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.95...v2.0.0-next.96)
1166
+
1167
+ <sup>Released on **2025-11-20**</sup>
1168
+
1169
+ #### ✨ Features
1170
+
1171
+ - **misc**: Support Command Menu (CMD + J).
1172
+
1173
+ <br/>
1174
+
1175
+ <details>
1176
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1177
+
1178
+ #### What's improved
1179
+
1180
+ - **misc**: Support Command Menu (CMD + J), closes [#10271](https://github.com/lobehub/lobe-chat/issues/10271) ([a9aed0b](https://github.com/lobehub/lobe-chat/commit/a9aed0b))
1181
+
1182
+ </details>
1183
+
1184
+ <div align="right">
1185
+
1186
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1187
+
1188
+ </div>
1189
+
1190
+ ## [Version 2.0.0-next.95](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.94...v2.0.0-next.95)
1191
+
1192
+ <sup>Released on **2025-11-20**</sup>
1193
+
1194
+ #### ✨ Features
1195
+
1196
+ - **misc**: Add Security Blacklist for agent runtime.
1197
+
1198
+ <br/>
1199
+
1200
+ <details>
1201
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1202
+
1203
+ #### What's improved
1204
+
1205
+ - **misc**: Add Security Blacklist for agent runtime, closes [#10325](https://github.com/lobehub/lobe-chat/issues/10325) ([deab4d0](https://github.com/lobehub/lobe-chat/commit/deab4d0))
1206
+
1207
+ </details>
1208
+
1209
+ <div align="right">
1210
+
1211
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1212
+
1213
+ </div>
1214
+
1215
+ ## [Version 2.0.0-next.94](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.93...v2.0.0-next.94)
1216
+
1217
+ <sup>Released on **2025-11-20**</sup>
1218
+
1219
+ #### 🐛 Bug Fixes
1220
+
1221
+ - **misc**: Provider settings button unable to redirect.
1222
+
1223
+ <br/>
1224
+
1225
+ <details>
1226
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1227
+
1228
+ #### What's fixed
1229
+
1230
+ - **misc**: Provider settings button unable to redirect, closes [#10319](https://github.com/lobehub/lobe-chat/issues/10319) ([e025fec](https://github.com/lobehub/lobe-chat/commit/e025fec))
1231
+
1232
+ </details>
1233
+
1234
+ <div align="right">
1235
+
1236
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1237
+
1238
+ </div>
1239
+
1240
+ ## [Version 2.0.0-next.93](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.92...v2.0.0-next.93)
1241
+
1242
+ <sup>Released on **2025-11-20**</sup>
1243
+
1244
+ #### 💄 Styles
1245
+
1246
+ - **misc**: Update i18n.
1247
+
1248
+ <br/>
1249
+
1250
+ <details>
1251
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1252
+
1253
+ #### Styles
1254
+
1255
+ - **misc**: Update i18n, closes [#10317](https://github.com/lobehub/lobe-chat/issues/10317) ([8fb9890](https://github.com/lobehub/lobe-chat/commit/8fb9890))
1256
+
1257
+ </details>
1258
+
1259
+ <div align="right">
1260
+
1261
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1262
+
1263
+ </div>
1264
+
1265
+ ## [Version 2.0.0-next.92](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.91...v2.0.0-next.92)
1266
+
1267
+ <sup>Released on **2025-11-19**</sup>
1268
+
1269
+ #### 💄 Styles
1270
+
1271
+ - **misc**: Remove debug console logs and add loading state.
1272
+
1273
+ <br/>
1274
+
1275
+ <details>
1276
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1277
+
1278
+ #### Styles
1279
+
1280
+ - **misc**: Remove debug console logs and add loading state, closes [#10314](https://github.com/lobehub/lobe-chat/issues/10314) ([094cdff](https://github.com/lobehub/lobe-chat/commit/094cdff))
1281
+
1282
+ </details>
1283
+
1284
+ <div align="right">
1285
+
1286
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1287
+
1288
+ </div>
1289
+
1290
+ ## [Version 2.0.0-next.91](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.90...v2.0.0-next.91)
1291
+
1292
+ <sup>Released on **2025-11-19**</sup>
1293
+
1294
+ #### 🐛 Bug Fixes
1295
+
1296
+ - **misc**: Fixed the hydrated false problem.
1297
+
1298
+ <br/>
1299
+
1300
+ <details>
1301
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1302
+
1303
+ #### What's fixed
1304
+
1305
+ - **misc**: Fixed the hydrated false problem, closes [#10308](https://github.com/lobehub/lobe-chat/issues/10308) ([340aa2a](https://github.com/lobehub/lobe-chat/commit/340aa2a))
1306
+
1307
+ </details>
1308
+
1309
+ <div align="right">
1310
+
1311
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1312
+
1313
+ </div>
1314
+
1315
+ ## [Version 2.0.0-next.90](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.89...v2.0.0-next.90)
1316
+
1317
+ <sup>Released on **2025-11-19**</sup>
1318
+
1319
+ #### 💄 Styles
1320
+
1321
+ - **misc**: Extract StatusIndicator component and improve tools display.
1322
+
1323
+ <br/>
1324
+
1325
+ <details>
1326
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1327
+
1328
+ #### Styles
1329
+
1330
+ - **misc**: Extract StatusIndicator component and improve tools display, closes [#10311](https://github.com/lobehub/lobe-chat/issues/10311) ([b5ae53a](https://github.com/lobehub/lobe-chat/commit/b5ae53a))
1331
+
1332
+ </details>
1333
+
1334
+ <div align="right">
1335
+
1336
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1337
+
1338
+ </div>
1339
+
1340
+ ## [Version 2.0.0-next.89](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.88...v2.0.0-next.89)
1341
+
1342
+ <sup>Released on **2025-11-19**</sup>
1343
+
1344
+ #### ✨ Features
1345
+
1346
+ - **misc**: Support gemini 3.0 tools calling.
1347
+
1348
+ <br/>
1349
+
1350
+ <details>
1351
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1352
+
1353
+ #### What's improved
1354
+
1355
+ - **misc**: Support gemini 3.0 tools calling, closes [#10301](https://github.com/lobehub/lobe-chat/issues/10301) ([7114fc1](https://github.com/lobehub/lobe-chat/commit/7114fc1))
1356
+
1357
+ </details>
1358
+
1359
+ <div align="right">
1360
+
1361
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1362
+
1363
+ </div>
1364
+
1365
+ ## [Version 2.0.0-next.88](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.87...v2.0.0-next.88)
1366
+
1367
+ <sup>Released on **2025-11-19**</sup>
1368
+
1369
+ #### 💄 Styles
1370
+
1371
+ - **misc**: Fully support Gemini 3.0 model.
1372
+
1373
+ <br/>
1374
+
1375
+ <details>
1376
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1377
+
1378
+ #### Styles
1379
+
1380
+ - **misc**: Fully support Gemini 3.0 model, closes [#10292](https://github.com/lobehub/lobe-chat/issues/10292) ([6545ef8](https://github.com/lobehub/lobe-chat/commit/6545ef8))
1381
+
1382
+ </details>
1383
+
1384
+ <div align="right">
1385
+
1386
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1387
+
1388
+ </div>
1389
+
1390
+ ## [Version 2.0.0-next.87](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.86...v2.0.0-next.87)
1391
+
1392
+ <sup>Released on **2025-11-19**</sup>
1393
+
1394
+ #### ♻ Code Refactoring
1395
+
1396
+ - **misc**: Refactor chat selectors.
1397
+
1398
+ <br/>
1399
+
1400
+ <details>
1401
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1402
+
1403
+ #### Code refactoring
1404
+
1405
+ - **misc**: Refactor chat selectors, closes [#10274](https://github.com/lobehub/lobe-chat/issues/10274) ([0a056f3](https://github.com/lobehub/lobe-chat/commit/0a056f3))
1406
+
1407
+ </details>
1408
+
1409
+ <div align="right">
1410
+
1411
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1412
+
1413
+ </div>
1414
+
1415
+ ## [Version 2.0.0-next.86](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.85...v2.0.0-next.86)
1416
+
1417
+ <sup>Released on **2025-11-19**</sup>
1418
+
1419
+ #### ✨ Features
1420
+
1421
+ - **misc**: Support user abort in the agent runtime.
1422
+
1423
+ <br/>
1424
+
1425
+ <details>
1426
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1427
+
1428
+ #### What's improved
1429
+
1430
+ - **misc**: Support user abort in the agent runtime, closes [#10289](https://github.com/lobehub/lobe-chat/issues/10289) ([0925069](https://github.com/lobehub/lobe-chat/commit/0925069))
1431
+
1432
+ </details>
1433
+
1434
+ <div align="right">
1435
+
1436
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1437
+
1438
+ </div>
1439
+
1440
+ ## [Version 2.0.0-next.85](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.84...v2.0.0-next.85)
1441
+
1442
+ <sup>Released on **2025-11-19**</sup>
1443
+
1444
+ #### 🐛 Bug Fixes
1445
+
1446
+ - **misc**: Slove discover pagination router.
1447
+
1448
+ <br/>
1449
+
1450
+ <details>
1451
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1452
+
1453
+ #### What's fixed
1454
+
1455
+ - **misc**: Slove discover pagination router, closes [#10294](https://github.com/lobehub/lobe-chat/issues/10294) ([fcda0b5](https://github.com/lobehub/lobe-chat/commit/fcda0b5))
1456
+
1457
+ </details>
1458
+
1459
+ <div align="right">
1460
+
1461
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1462
+
1463
+ </div>
1464
+
1465
+ ## [Version 2.0.0-next.84](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.83...v2.0.0-next.84)
1466
+
1467
+ <sup>Released on **2025-11-19**</sup>
1468
+
1469
+ #### 💄 Styles
1470
+
1471
+ - **misc**: Add Gemini 3.0 Pro Preview to Google Provider.
1472
+
1473
+ <br/>
1474
+
1475
+ <details>
1476
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1477
+
1478
+ #### Styles
1479
+
1480
+ - **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))
1481
+
1482
+ </details>
1483
+
1484
+ <div align="right">
1485
+
1486
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1487
+
1488
+ </div>
1489
+
1490
+ ## [Version 2.0.0-next.83](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.82...v2.0.0-next.83)
1491
+
1492
+ <sup>Released on **2025-11-19**</sup>
1493
+
1494
+ #### ✨ Features
1495
+
1496
+ - **misc**: New API support switch Responses API mode.
1497
+
1498
+ #### 💄 Styles
1499
+
1500
+ - **misc**: Update i18n.
1501
+
1502
+ <br/>
1503
+
1504
+ <details>
1505
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1506
+
1507
+ #### What's improved
1508
+
1509
+ - **misc**: New API support switch Responses API mode, closes [#9776](https://github.com/lobehub/lobe-chat/issues/9776) [#9916](https://github.com/lobehub/lobe-chat/issues/9916) [#9997](https://github.com/lobehub/lobe-chat/issues/9997) [#9916](https://github.com/lobehub/lobe-chat/issues/9916) ([d0ee3df](https://github.com/lobehub/lobe-chat/commit/d0ee3df))
1510
+
1511
+ #### Styles
1512
+
1513
+ - **misc**: Update i18n, closes [#10291](https://github.com/lobehub/lobe-chat/issues/10291) ([1c9f0d9](https://github.com/lobehub/lobe-chat/commit/1c9f0d9))
1514
+
1515
+ </details>
1516
+
1517
+ <div align="right">
1518
+
1519
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1520
+
1521
+ </div>
1522
+
1523
+ ## [Version 2.0.0-next.82](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.81...v2.0.0-next.82)
1524
+
1525
+ <sup>Released on **2025-11-18**</sup>
1526
+
1527
+ #### 🐛 Bug Fixes
1528
+
1529
+ - **misc**: Fix noisy error notification.
1530
+
1531
+ <br/>
1532
+
1533
+ <details>
1534
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1535
+
1536
+ #### What's fixed
1537
+
1538
+ - **misc**: Fix noisy error notification, closes [#10286](https://github.com/lobehub/lobe-chat/issues/10286) ([9ea680c](https://github.com/lobehub/lobe-chat/commit/9ea680c))
1539
+
1540
+ </details>
1541
+
1542
+ <div align="right">
1543
+
1544
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1545
+
1546
+ </div>
1547
+
1548
+ ## [Version 2.0.0-next.81](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.80...v2.0.0-next.81)
1549
+
1550
+ <sup>Released on **2025-11-18**</sup>
1551
+
1552
+ #### 🐛 Bug Fixes
1553
+
1554
+ - **misc**: Slove when logout always show loading.
1555
+
1556
+ <br/>
1557
+
1558
+ <details>
1559
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1560
+
1561
+ #### What's fixed
1562
+
1563
+ - **misc**: Slove when logout always show loading, closes [#10284](https://github.com/lobehub/lobe-chat/issues/10284) ([d91fb73](https://github.com/lobehub/lobe-chat/commit/d91fb73))
1564
+
1565
+ </details>
1566
+
1567
+ <div align="right">
1568
+
1569
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1570
+
1571
+ </div>
1572
+
1573
+ ## [Version 2.0.0-next.80](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.79...v2.0.0-next.80)
1574
+
1575
+ <sup>Released on **2025-11-18**</sup>
1576
+
1577
+ <br/>
1578
+
1579
+ <details>
1580
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1581
+
1582
+ </details>
1583
+
1584
+ <div align="right">
1585
+
1586
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1587
+
1588
+ </div>
1589
+
1590
+ ## [Version 2.0.0-next.79](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.78...v2.0.0-next.79)
1591
+
1592
+ <sup>Released on **2025-11-18**</sup>
1593
+
1594
+ #### 🐛 Bug Fixes
1595
+
1596
+ - **misc**: Fixed the discover page categray sider link error.
1597
+
1598
+ <br/>
1599
+
1600
+ <details>
1601
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1602
+
1603
+ #### What's fixed
1604
+
1605
+ - **misc**: Fixed the discover page categray sider link error, closes [#10282](https://github.com/lobehub/lobe-chat/issues/10282) ([39e8819](https://github.com/lobehub/lobe-chat/commit/39e8819))
1606
+
1607
+ </details>
1608
+
1609
+ <div align="right">
1610
+
1611
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1612
+
1613
+ </div>
1614
+
1615
+ ## [Version 2.0.0-next.78](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.77...v2.0.0-next.78)
1616
+
1617
+ <sup>Released on **2025-11-18**</sup>
1618
+
1619
+ <br/>
1620
+
1621
+ <details>
1622
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1623
+
1624
+ </details>
1625
+
1626
+ <div align="right">
1627
+
1628
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1629
+
1630
+ </div>
1631
+
1632
+ ## [Version 2.0.0-next.77](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.76...v2.0.0-next.77)
1633
+
1634
+ <sup>Released on **2025-11-18**</sup>
1635
+
1636
+ #### ♻ Code Refactoring
1637
+
1638
+ - **misc**: Delete /settings/newapi pages in nextjs build.
1639
+
1640
+ <br/>
1641
+
1642
+ <details>
1643
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1644
+
1645
+ #### Code refactoring
1646
+
1647
+ - **misc**: Delete /settings/newapi pages in nextjs build, closes [#10278](https://github.com/lobehub/lobe-chat/issues/10278) ([9d06753](https://github.com/lobehub/lobe-chat/commit/9d06753))
1648
+
1649
+ </details>
1650
+
1651
+ <div align="right">
1652
+
1653
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1654
+
1655
+ </div>
1656
+
1657
+ ## [Version 2.0.0-next.76](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.75...v2.0.0-next.76)
1658
+
1659
+ <sup>Released on **2025-11-18**</sup>
1660
+
1661
+ #### ✨ Features
1662
+
1663
+ - **misc**: Support Interleaved thinking in MiniMax.
1664
+
1665
+ <br/>
1666
+
1667
+ <details>
1668
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1669
+
1670
+ #### What's improved
1671
+
1672
+ - **misc**: Support Interleaved thinking in MiniMax, closes [#10255](https://github.com/lobehub/lobe-chat/issues/10255) ([13ca8e1](https://github.com/lobehub/lobe-chat/commit/13ca8e1))
1673
+
1674
+ </details>
1675
+
1676
+ <div align="right">
1677
+
1678
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1679
+
1680
+ </div>
1681
+
1682
+ ## [Version 2.0.0-next.75](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.74...v2.0.0-next.75)
1683
+
1684
+ <sup>Released on **2025-11-18**</sup>
1685
+
1686
+ #### 💄 Styles
1687
+
1688
+ - **misc**: Update i18n.
1689
+
1690
+ <br/>
1691
+
1692
+ <details>
1693
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1694
+
1695
+ #### Styles
1696
+
1697
+ - **misc**: Update i18n, closes [#10277](https://github.com/lobehub/lobe-chat/issues/10277) ([7563b62](https://github.com/lobehub/lobe-chat/commit/7563b62))
1698
+
1699
+ </details>
1700
+
1701
+ <div align="right">
1702
+
1703
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1704
+
1705
+ </div>
1706
+
1707
+ ## [Version 2.0.0-next.74](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.73...v2.0.0-next.74)
1708
+
1709
+ <sup>Released on **2025-11-17**</sup>
1710
+
1711
+ #### ✨ Features
1712
+
1713
+ - **misc**: Edit local file render & intervention.
1714
+
1715
+ <br/>
1716
+
1717
+ <details>
1718
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1719
+
1720
+ #### What's improved
1721
+
1722
+ - **misc**: Edit local file render & intervention, closes [#10269](https://github.com/lobehub/lobe-chat/issues/10269) ([3785a71](https://github.com/lobehub/lobe-chat/commit/3785a71))
1723
+
1724
+ </details>
1725
+
1726
+ <div align="right">
1727
+
1728
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1729
+
1730
+ </div>
1731
+
1732
+ ## [Version 2.0.0-next.73](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.72...v2.0.0-next.73)
1733
+
1734
+ <sup>Released on **2025-11-17**</sup>
1735
+
1736
+ #### ✨ Features
1737
+
1738
+ - **misc**: Support parallel topic agent runtime.
1739
+
1740
+ <br/>
1741
+
1742
+ <details>
1743
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1744
+
1745
+ #### What's improved
1746
+
1747
+ - **misc**: Support parallel topic agent runtime, closes [#10273](https://github.com/lobehub/lobe-chat/issues/10273) ([02eba3c](https://github.com/lobehub/lobe-chat/commit/02eba3c))
1748
+
1749
+ </details>
1750
+
1751
+ <div align="right">
1752
+
1753
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1754
+
1755
+ </div>
1756
+
1757
+ ## [Version 2.0.0-next.72](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.71...v2.0.0-next.72)
1758
+
1759
+ <sup>Released on **2025-11-17**</sup>
1760
+
1761
+ #### 💄 Styles
1762
+
1763
+ - **misc**: Add model information for the Qiniu provider.
1764
+
1765
+ <br/>
1766
+
1767
+ <details>
1768
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1769
+
1770
+ #### Styles
1771
+
1772
+ - **misc**: Add model information for the Qiniu provider, closes [#10270](https://github.com/lobehub/lobe-chat/issues/10270) ([06af793](https://github.com/lobehub/lobe-chat/commit/06af793))
1773
+
1774
+ </details>
1775
+
1776
+ <div align="right">
1777
+
1778
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1779
+
1780
+ </div>
1781
+
1782
+ ## [Version 2.0.0-next.71](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.70...v2.0.0-next.71)
1783
+
1784
+ <sup>Released on **2025-11-17**</sup>
1785
+
1786
+ #### 🐛 Bug Fixes
1787
+
1788
+ - **misc**: Fix desktop user panel.
1789
+
1790
+ <br/>
1791
+
1792
+ <details>
1793
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1794
+
1795
+ #### What's fixed
1796
+
1797
+ - **misc**: Fix desktop user panel, closes [#10272](https://github.com/lobehub/lobe-chat/issues/10272) ([6a374d2](https://github.com/lobehub/lobe-chat/commit/6a374d2))
1798
+
1799
+ </details>
1800
+
1801
+ <div align="right">
1802
+
1803
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1804
+
1805
+ </div>
1806
+
1807
+ ## [Version 2.0.0-next.70](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.69...v2.0.0-next.70)
1808
+
1809
+ <sup>Released on **2025-11-17**</sup>
1810
+
1811
+ <br/>
1812
+
1813
+ <details>
1814
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1815
+
1816
+ </details>
1817
+
1818
+ <div align="right">
1819
+
1820
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1821
+
1822
+ </div>
1823
+
1824
+ ## [Version 2.0.0-next.69](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.68...v2.0.0-next.69)
1825
+
1826
+ <sup>Released on **2025-11-17**</sup>
1827
+
1828
+ #### ♻ Code Refactoring
1829
+
1830
+ - **misc**: Remove `language_model_settings` and remove isDeprecatedEdition.
1831
+
1832
+ <br/>
1833
+
1834
+ <details>
1835
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1836
+
1837
+ #### Code refactoring
1838
+
1839
+ - **misc**: Remove `language_model_settings` and remove isDeprecatedEdition, closes [#10264](https://github.com/lobehub/lobe-chat/issues/10264) ([ae613c7](https://github.com/lobehub/lobe-chat/commit/ae613c7))
1840
+
1841
+ </details>
1842
+
1843
+ <div align="right">
1844
+
1845
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1846
+
1847
+ </div>
1848
+
1849
+ ## [Version 2.0.0-next.68](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.67...v2.0.0-next.68)
1850
+
1851
+ <sup>Released on **2025-11-16**</sup>
1852
+
1853
+ #### 🐛 Bug Fixes
1854
+
1855
+ - **misc**: The tool to fail execution on ollama when a message contains b….
1856
+
1857
+ <br/>
1858
+
1859
+ <details>
1860
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1861
+
1862
+ #### What's fixed
1863
+
1864
+ - **misc**: The tool to fail execution on ollama when a message contains b…, closes [#10259](https://github.com/lobehub/lobe-chat/issues/10259) ([1ad8080](https://github.com/lobehub/lobe-chat/commit/1ad8080))
1865
+
1866
+ </details>
1867
+
1868
+ <div align="right">
1869
+
1870
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1871
+
1872
+ </div>
1873
+
1874
+ ## [Version 2.0.0-next.67](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.66...v2.0.0-next.67)
1875
+
1876
+ <sup>Released on **2025-11-16**</sup>
1877
+
1878
+ #### ♻ Code Refactoring
1879
+
1880
+ - **misc**: Refactor to virtua.
1881
+
1882
+ <br/>
1883
+
1884
+ <details>
1885
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1886
+
1887
+ #### Code refactoring
1888
+
1889
+ - **misc**: Refactor to virtua, closes [#10151](https://github.com/lobehub/lobe-chat/issues/10151) ([9ffb689](https://github.com/lobehub/lobe-chat/commit/9ffb689))
1890
+
1891
+ </details>
1892
+
1893
+ <div align="right">
1894
+
1895
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1896
+
1897
+ </div>
1898
+
1899
+ ## [Version 2.0.0-next.66](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.65...v2.0.0-next.66)
1900
+
1901
+ <sup>Released on **2025-11-16**</sup>
1902
+
1903
+ #### ✨ Features
1904
+
1905
+ - **misc**: Support to collapse message.
1906
+
1907
+ <br/>
1908
+
1909
+ <details>
1910
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1911
+
1912
+ #### What's improved
1913
+
1914
+ - **misc**: Support to collapse message, closes [#10234](https://github.com/lobehub/lobe-chat/issues/10234) ([4cd6347](https://github.com/lobehub/lobe-chat/commit/4cd6347))
1915
+
1916
+ </details>
1917
+
1918
+ <div align="right">
1919
+
1920
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1921
+
1922
+ </div>
1923
+
1924
+ ## [Version 2.0.0-next.65](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.64...v2.0.0-next.65)
1925
+
1926
+ <sup>Released on **2025-11-16**</sup>
1927
+
1928
+ #### 💄 Styles
1929
+
1930
+ - **misc**: Update i18n.
1931
+
1932
+ <br/>
1933
+
1934
+ <details>
1935
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1936
+
1937
+ #### Styles
1938
+
1939
+ - **misc**: Update i18n, closes [#10235](https://github.com/lobehub/lobe-chat/issues/10235) ([a52c9e5](https://github.com/lobehub/lobe-chat/commit/a52c9e5))
1940
+
1941
+ </details>
1942
+
1943
+ <div align="right">
1944
+
1945
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1946
+
1947
+ </div>
1948
+
1949
+ ## [Version 2.0.0-next.64](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.63...v2.0.0-next.64)
1950
+
1951
+ <sup>Released on **2025-11-15**</sup>
1952
+
1953
+ #### ♻ Code Refactoring
1954
+
1955
+ - **misc**: Refactor package types.
1956
+
1957
+ <br/>
1958
+
1959
+ <details>
1960
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1961
+
1962
+ #### Code refactoring
1963
+
1964
+ - **misc**: Refactor package types, closes [#10233](https://github.com/lobehub/lobe-chat/issues/10233) ([9872409](https://github.com/lobehub/lobe-chat/commit/9872409))
1965
+
1966
+ </details>
1967
+
1968
+ <div align="right">
1969
+
1970
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1971
+
1972
+ </div>
1973
+
1974
+ ## [Version 2.0.0-next.63](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.62...v2.0.0-next.63)
1975
+
1976
+ <sup>Released on **2025-11-15**</sup>
1977
+
1978
+ #### ✨ Features
1979
+
1980
+ - **misc**: Show orphaned tool message and support delete tool message.
1981
+
1982
+ <br/>
1983
+
1984
+ <details>
1985
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1986
+
1987
+ #### What's improved
1988
+
1989
+ - **misc**: Show orphaned tool message and support delete tool message, closes [#10232](https://github.com/lobehub/lobe-chat/issues/10232) ([38cfd26](https://github.com/lobehub/lobe-chat/commit/38cfd26))
1990
+
1991
+ </details>
1992
+
1993
+ <div align="right">
1994
+
1995
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1996
+
1997
+ </div>
1998
+
1999
+ ## [Version 2.0.0-next.62](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.61...v2.0.0-next.62)
2000
+
2001
+ <sup>Released on **2025-11-15**</sup>
2002
+
2003
+ #### 🐛 Bug Fixes
2004
+
2005
+ - **next16**: Resolve 'Response body object should not be disturbed or locked' error.
2006
+
2007
+ <br/>
2008
+
2009
+ <details>
2010
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2011
+
2012
+ #### What's fixed
2013
+
2014
+ - **next16**: Resolve 'Response body object should not be disturbed or locked' error, closes [#10226](https://github.com/lobehub/lobe-chat/issues/10226) ([caa9c78](https://github.com/lobehub/lobe-chat/commit/caa9c78))
2015
+
2016
+ </details>
2017
+
2018
+ <div align="right">
2019
+
2020
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2021
+
2022
+ </div>
2023
+
2024
+ ## [Version 2.0.0-next.61](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.60...v2.0.0-next.61)
2025
+
2026
+ <sup>Released on **2025-11-15**</sup>
2027
+
2028
+ #### 💄 Styles
2029
+
2030
+ - **misc**: Update i18n.
2031
+
2032
+ <br/>
2033
+
2034
+ <details>
2035
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2036
+
2037
+ #### Styles
2038
+
2039
+ - **misc**: Update i18n, closes [#10224](https://github.com/lobehub/lobe-chat/issues/10224) ([ca7551f](https://github.com/lobehub/lobe-chat/commit/ca7551f))
2040
+
2041
+ </details>
2042
+
2043
+ <div align="right">
2044
+
2045
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2046
+
2047
+ </div>
2048
+
2049
+ ## [Version 2.0.0-next.60](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.59...v2.0.0-next.60)
2050
+
2051
+ <sup>Released on **2025-11-14**</sup>
2052
+
2053
+ #### 🐛 Bug Fixes
2054
+
2055
+ - **misc**: Reduce threshold.
2056
+
2057
+ <br/>
2058
+
2059
+ <details>
2060
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2061
+
2062
+ #### What's fixed
2063
+
2064
+ - **misc**: Reduce threshold, closes [#10222](https://github.com/lobehub/lobe-chat/issues/10222) ([abdfd06](https://github.com/lobehub/lobe-chat/commit/abdfd06))
2065
+
2066
+ </details>
2067
+
2068
+ <div align="right">
2069
+
2070
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2071
+
2072
+ </div>
2073
+
2074
+ ## [Version 2.0.0-next.59](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.58...v2.0.0-next.59)
2075
+
2076
+ <sup>Released on **2025-11-14**</sup>
2077
+
2078
+ #### 💄 Styles
2079
+
2080
+ - **misc**: Update i18n.
2081
+
2082
+ <br/>
2083
+
2084
+ <details>
2085
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2086
+
2087
+ #### Styles
2088
+
2089
+ - **misc**: Update i18n, closes [#10205](https://github.com/lobehub/lobe-chat/issues/10205) ([fc57d2a](https://github.com/lobehub/lobe-chat/commit/fc57d2a))
2090
+
2091
+ </details>
2092
+
2093
+ <div align="right">
2094
+
2095
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2096
+
2097
+ </div>
2098
+
2099
+ ## [Version 2.0.0-next.58](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.57...v2.0.0-next.58)
2100
+
2101
+ <sup>Released on **2025-11-14**</sup>
2102
+
2103
+ #### ✨ Features
2104
+
2105
+ - **misc**: Support DeepSeek Interleaved thinking.
2106
+
2107
+ <br/>
2108
+
2109
+ <details>
2110
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2111
+
2112
+ #### What's improved
2113
+
2114
+ - **misc**: Support DeepSeek Interleaved thinking, closes [#10219](https://github.com/lobehub/lobe-chat/issues/10219) ([3736a85](https://github.com/lobehub/lobe-chat/commit/3736a85))
2115
+
2116
+ </details>
2117
+
2118
+ <div align="right">
2119
+
2120
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2121
+
2122
+ </div>
2123
+
2124
+ ## [Version 2.0.0-next.57](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.56...v2.0.0-next.57)
2125
+
2126
+ <sup>Released on **2025-11-14**</sup>
2127
+
2128
+ #### 💄 Styles
2129
+
2130
+ - **misc**: Revert background style.
2131
+
2132
+ <br/>
2133
+
2134
+ <details>
2135
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2136
+
2137
+ #### Styles
2138
+
2139
+ - **misc**: Revert background style, closes [#10218](https://github.com/lobehub/lobe-chat/issues/10218) ([97b0413](https://github.com/lobehub/lobe-chat/commit/97b0413))
2140
+
2141
+ </details>
2142
+
2143
+ <div align="right">
2144
+
2145
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2146
+
2147
+ </div>
2148
+
2149
+ ## [Version 2.0.0-next.56](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.55...v2.0.0-next.56)
2150
+
2151
+ <sup>Released on **2025-11-14**</sup>
2152
+
2153
+ #### ✨ Features
2154
+
2155
+ - **misc**: Add folder creation UI and clean up debug code.
2156
+
2157
+ <br/>
2158
+
2159
+ <details>
2160
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2161
+
2162
+ #### What's improved
2163
+
2164
+ - **misc**: Add folder creation UI and clean up debug code ([d5ecd0a](https://github.com/lobehub/lobe-chat/commit/d5ecd0a))
2165
+
2166
+ </details>
2167
+
2168
+ <div align="right">
2169
+
2170
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2171
+
2172
+ </div>
2173
+
2174
+ ## [Version 2.0.0-next.55](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.54...v2.0.0-next.55)
2175
+
2176
+ <sup>Released on **2025-11-14**</sup>
2177
+
2178
+ #### ✨ Features
2179
+
2180
+ - **image**: Image model show price.
2181
+ - **misc**: Create Pages in Knowledge Base.
2182
+
2183
+ <br/>
2184
+
2185
+ <details>
2186
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2187
+
2188
+ #### What's improved
2189
+
2190
+ - **image**: Image model show price, closes [#10198](https://github.com/lobehub/lobe-chat/issues/10198) ([b87e0e4](https://github.com/lobehub/lobe-chat/commit/b87e0e4))
2191
+ - **misc**: Create Pages in Knowledge Base, closes [#9895](https://github.com/lobehub/lobe-chat/issues/9895) ([f46edeb](https://github.com/lobehub/lobe-chat/commit/f46edeb))
2192
+
2193
+ </details>
2194
+
2195
+ <div align="right">
2196
+
2197
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2198
+
2199
+ </div>
2200
+
2201
+ ## [Version 2.0.0-next.54](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.53...v2.0.0-next.54)
2202
+
2203
+ <sup>Released on **2025-11-14**</sup>
2204
+
2205
+ #### 💄 Styles
2206
+
2207
+ - **misc**: Refactor and support move locale file intervention.
2208
+
2209
+ <br/>
2210
+
2211
+ <details>
2212
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2213
+
2214
+ #### Styles
2215
+
2216
+ - **misc**: Refactor and support move locale file intervention, closes [#10213](https://github.com/lobehub/lobe-chat/issues/10213) ([63cac81](https://github.com/lobehub/lobe-chat/commit/63cac81))
2217
+
2218
+ </details>
2219
+
2220
+ <div align="right">
2221
+
2222
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2223
+
2224
+ </div>
2225
+
2226
+ ## [Version 2.0.0-next.53](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.52...v2.0.0-next.53)
2227
+
2228
+ <sup>Released on **2025-11-14**</sup>
2229
+
2230
+ #### ✨ Features
2231
+
2232
+ - **misc**: Add GPT-5.1 models.
2233
+
2234
+ #### 💄 Styles
2235
+
2236
+ - **misc**: Fix approving render and improve Conversation style.
2237
+
2238
+ <br/>
2239
+
2240
+ <details>
2241
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2242
+
2243
+ #### What's improved
2244
+
2245
+ - **misc**: Add GPT-5.1 models, closes [#10206](https://github.com/lobehub/lobe-chat/issues/10206) ([afd3a47](https://github.com/lobehub/lobe-chat/commit/afd3a47))
2246
+
2247
+ #### Styles
2248
+
2249
+ - **misc**: Fix approving render and improve Conversation style, closes [#10210](https://github.com/lobehub/lobe-chat/issues/10210) ([841b7f1](https://github.com/lobehub/lobe-chat/commit/841b7f1))
2250
+
2251
+ </details>
2252
+
2253
+ <div align="right">
2254
+
2255
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2256
+
2257
+ </div>
2258
+
2259
+ ## [Version 2.0.0-next.52](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.51...v2.0.0-next.52)
2260
+
2261
+ <sup>Released on **2025-11-13**</sup>
2262
+
2263
+ #### 🐛 Bug Fixes
2264
+
2265
+ - **misc**: Filter out reasoning fields from messages in ChatCompletion API.
2266
+
2267
+ <br/>
2268
+
2269
+ <details>
2270
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2271
+
2272
+ #### What's fixed
2273
+
2274
+ - **misc**: Filter out reasoning fields from messages in ChatCompletion API, closes [#10203](https://github.com/lobehub/lobe-chat/issues/10203) [#10193](https://github.com/lobehub/lobe-chat/issues/10193) ([5f28b2c](https://github.com/lobehub/lobe-chat/commit/5f28b2c))
2275
+
2276
+ </details>
2277
+
2278
+ <div align="right">
2279
+
2280
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2281
+
2282
+ </div>
2283
+
2284
+ ## [Version 2.0.0-next.51](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.50...v2.0.0-next.51)
2285
+
2286
+ <sup>Released on **2025-11-13**</sup>
2287
+
2288
+ #### 💄 Styles
2289
+
2290
+ - **misc**: Update ERNIE-5.0-Thinking-Preview model.
2291
+
2292
+ <br/>
2293
+
2294
+ <details>
2295
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2296
+
2297
+ #### Styles
2298
+
2299
+ - **misc**: Update ERNIE-5.0-Thinking-Preview model, closes [#10196](https://github.com/lobehub/lobe-chat/issues/10196) ([89f3eed](https://github.com/lobehub/lobe-chat/commit/89f3eed))
2300
+
2301
+ </details>
2302
+
2303
+ <div align="right">
2304
+
2305
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2306
+
2307
+ </div>
2308
+
2309
+ ## [Version 2.0.0-next.50](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.49...v2.0.0-next.50)
2310
+
2311
+ <sup>Released on **2025-11-13**</sup>
2312
+
2313
+ #### 🐛 Bug Fixes
2314
+
2315
+ - **misc**: Fix oidc accountId mismatch.
2316
+
2317
+ <br/>
2318
+
2319
+ <details>
2320
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2321
+
2322
+ #### What's fixed
2323
+
2324
+ - **misc**: Fix oidc accountId mismatch, closes [#10058](https://github.com/lobehub/lobe-chat/issues/10058) ([0692ba7](https://github.com/lobehub/lobe-chat/commit/0692ba7))
2325
+
2326
+ </details>
2327
+
2328
+ <div align="right">
2329
+
2330
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2331
+
2332
+ </div>
2333
+
2334
+ ## [Version 2.0.0-next.49](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.48...v2.0.0-next.49)
2335
+
2336
+ <sup>Released on **2025-11-13**</sup>
2337
+
2338
+ #### ✨ Features
2339
+
2340
+ - **misc**: Support tool invention.
2341
+
2342
+ #### 🐛 Bug Fixes
2343
+
2344
+ - **misc**: Update lost i18n files.
2345
+
2346
+ <br/>
2347
+
2348
+ <details>
2349
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2350
+
2351
+ #### What's improved
2352
+
2353
+ - **misc**: Support tool invention, closes [#10182](https://github.com/lobehub/lobe-chat/issues/10182) ([4dca708](https://github.com/lobehub/lobe-chat/commit/4dca708))
2354
+
2355
+ #### What's fixed
2356
+
2357
+ - **misc**: Update lost i18n files, closes [#10179](https://github.com/lobehub/lobe-chat/issues/10179) ([b69c7ff](https://github.com/lobehub/lobe-chat/commit/b69c7ff))
2358
+
2359
+ </details>
2360
+
2361
+ <div align="right">
2362
+
2363
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2364
+
2365
+ </div>
2366
+
2367
+ ## [Version 2.0.0-next.48](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.47...v2.0.0-next.48)
2368
+
2369
+ <sup>Released on **2025-11-12**</sup>
2370
+
2371
+ <br/>
2372
+
2373
+ <details>
2374
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2375
+
2376
+ </details>
2377
+
2378
+ <div align="right">
2379
+
2380
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2381
+
2382
+ </div>
2383
+
2384
+ ## [Version 2.0.0-next.47](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.46...v2.0.0-next.47)
2385
+
2386
+ <sup>Released on **2025-11-11**</sup>
2387
+
2388
+ #### 🐛 Bug Fixes
2389
+
2390
+ - **misc**: Fix mcp server return image error.
2391
+
2392
+ <br/>
2393
+
2394
+ <details>
2395
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2396
+
2397
+ #### What's fixed
2398
+
2399
+ - **misc**: Fix mcp server return image error, closes [#10113](https://github.com/lobehub/lobe-chat/issues/10113) ([e5640d4](https://github.com/lobehub/lobe-chat/commit/e5640d4))
2400
+
2401
+ </details>
2402
+
2403
+ <div align="right">
2404
+
2405
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2406
+
2407
+ </div>
2408
+
2409
+ ## [Version 2.0.0-next.46](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.45...v2.0.0-next.46)
2410
+
2411
+ <sup>Released on **2025-11-11**</sup>
2412
+
2413
+ #### ♻ Code Refactoring
2414
+
2415
+ - **misc**: Fix thread display.
2416
+
2417
+ <br/>
2418
+
2419
+ <details>
2420
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2421
+
2422
+ #### Code refactoring
2423
+
2424
+ - **misc**: Fix thread display, closes [#10153](https://github.com/lobehub/lobe-chat/issues/10153) ([8fda83e](https://github.com/lobehub/lobe-chat/commit/8fda83e))
2425
+
2426
+ </details>
2427
+
2428
+ <div align="right">
2429
+
2430
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2431
+
2432
+ </div>
2433
+
2434
+ ## [Version 2.0.0-next.45](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.44...v2.0.0-next.45)
2435
+
2436
+ <sup>Released on **2025-11-10**</sup>
2437
+
2438
+ #### ♻ Code Refactoring
2439
+
2440
+ - **misc**: Edge to node runtime.
2441
+
2442
+ <br/>
2443
+
2444
+ <details>
2445
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2446
+
2447
+ #### Code refactoring
2448
+
2449
+ - **misc**: Edge to node runtime, closes [#10149](https://github.com/lobehub/lobe-chat/issues/10149) ([2f4c25d](https://github.com/lobehub/lobe-chat/commit/2f4c25d))
2450
+
2451
+ </details>
2452
+
2453
+ <div align="right">
2454
+
2455
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2456
+
2457
+ </div>
2458
+
2459
+ ## [Version 2.0.0-next.44](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.43...v2.0.0-next.44)
2460
+
2461
+ <sup>Released on **2025-11-10**</sup>
2462
+
2463
+ #### 🐛 Bug Fixes
2464
+
2465
+ - **misc**: Fix reasoning issue with claude and Response API thinking.
2466
+
2467
+ <br/>
2468
+
2469
+ <details>
2470
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2471
+
2472
+ #### What's fixed
2473
+
2474
+ - **misc**: Fix reasoning issue with claude and Response API thinking, closes [#10147](https://github.com/lobehub/lobe-chat/issues/10147) ([cf6bd53](https://github.com/lobehub/lobe-chat/commit/cf6bd53))
2475
+
2476
+ </details>
2477
+
2478
+ <div align="right">
2479
+
2480
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2481
+
2482
+ </div>
2483
+
2484
+ ## [Version 2.0.0-next.43](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.42...v2.0.0-next.43)
2485
+
2486
+ <sup>Released on **2025-11-09**</sup>
2487
+
2488
+ #### 🐛 Bug Fixes
2489
+
2490
+ - **misc**: Abnormal animation of tokens.
2491
+
2492
+ <br/>
2493
+
2494
+ <details>
2495
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2496
+
2497
+ #### What's fixed
2498
+
2499
+ - **misc**: Abnormal animation of tokens, closes [#10106](https://github.com/lobehub/lobe-chat/issues/10106) ([129df7b](https://github.com/lobehub/lobe-chat/commit/129df7b))
2500
+
2501
+ </details>
2502
+
2503
+ <div align="right">
2504
+
2505
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2506
+
2507
+ </div>
2508
+
2509
+ ## [Version 2.0.0-next.42](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.41...v2.0.0-next.42)
2510
+
2511
+ <sup>Released on **2025-11-09**</sup>
2512
+
2513
+ #### 🐛 Bug Fixes
2514
+
2515
+ - **misc**: Fix missing messages when finish runtime.
2516
+
2517
+ <br/>
2518
+
2519
+ <details>
2520
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2521
+
2522
+ #### What's fixed
2523
+
2524
+ - **misc**: Fix missing messages when finish runtime, closes [#10138](https://github.com/lobehub/lobe-chat/issues/10138) ([b94d477](https://github.com/lobehub/lobe-chat/commit/b94d477))
2525
+
2526
+ </details>
2527
+
2528
+ <div align="right">
2529
+
2530
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2531
+
2532
+ </div>
2533
+
2534
+ ## [Version 2.0.0-next.41](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.40...v2.0.0-next.41)
2535
+
2536
+ <sup>Released on **2025-11-09**</sup>
2537
+
2538
+ #### 💄 Styles
2539
+
2540
+ - **misc**: Update i18n.
2541
+
2542
+ <br/>
2543
+
2544
+ <details>
2545
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2546
+
2547
+ #### Styles
2548
+
2549
+ - **misc**: Update i18n, closes [#10116](https://github.com/lobehub/lobe-chat/issues/10116) ([766772e](https://github.com/lobehub/lobe-chat/commit/766772e))
2550
+
2551
+ </details>
2552
+
2553
+ <div align="right">
2554
+
2555
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2556
+
2557
+ </div>
2558
+
2559
+ ## [Version 2.0.0-next.40](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.39...v2.0.0-next.40)
2560
+
2561
+ <sup>Released on **2025-11-08**</sup>
2562
+
2563
+ #### 🐛 Bug Fixes
2564
+
2565
+ - **database**: Fix deleteMessagesBySession incorrectly deleting all messages.
2566
+
2567
+ <br/>
2568
+
2569
+ <details>
2570
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2571
+
2572
+ #### What's fixed
2573
+
2574
+ - **database**: Fix deleteMessagesBySession incorrectly deleting all messages, closes [#10110](https://github.com/lobehub/lobe-chat/issues/10110) ([1d7f67d](https://github.com/lobehub/lobe-chat/commit/1d7f67d))
2575
+
2576
+ </details>
2577
+
2578
+ <div align="right">
2579
+
2580
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2581
+
2582
+ </div>
2583
+
2584
+ ## [Version 2.0.0-next.39](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.38...v2.0.0-next.39)
2585
+
2586
+ <sup>Released on **2025-11-08**</sup>
2587
+
2588
+ <br/>
2589
+
2590
+ <details>
2591
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2592
+
2593
+ </details>
2594
+
2595
+ <div align="right">
2596
+
2597
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2598
+
2599
+ </div>
2600
+
2601
+ ## [Version 2.0.0-next.38](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.37...v2.0.0-next.38)
2602
+
2603
+ <sup>Released on **2025-11-08**</sup>
2604
+
2605
+ #### 🐛 Bug Fixes
2606
+
2607
+ - **TokenUsage**: Prevent animation when toggling between token and credit display.
2608
+
2609
+ #### 💄 Styles
2610
+
2611
+ - **misc**: Update i18n.
2612
+
2613
+ <br/>
2614
+
2615
+ <details>
2616
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2617
+
2618
+ #### What's fixed
2619
+
2620
+ - **TokenUsage**: Prevent animation when toggling between token and credit display, closes [#10098](https://github.com/lobehub/lobe-chat/issues/10098) ([f20a910](https://github.com/lobehub/lobe-chat/commit/f20a910))
2621
+
2622
+ #### Styles
2623
+
2624
+ - **misc**: Update i18n, closes [#10100](https://github.com/lobehub/lobe-chat/issues/10100) ([deb6b5e](https://github.com/lobehub/lobe-chat/commit/deb6b5e))
2625
+
2626
+ </details>
2627
+
2628
+ <div align="right">
2629
+
2630
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2631
+
2632
+ </div>
2633
+
2634
+ ## [Version 2.0.0-next.37](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.36...v2.0.0-next.37)
2635
+
2636
+ <sup>Released on **2025-11-07**</sup>
2637
+
2638
+ #### 🐛 Bug Fixes
2639
+
2640
+ - **misc**: Don't include runtimeProvider in JWT for non-image operations.
2641
+
2642
+ <br/>
2643
+
2644
+ <details>
2645
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2646
+
2647
+ #### What's fixed
2648
+
2649
+ - **misc**: Don't include runtimeProvider in JWT for non-image operations, closes [#9959](https://github.com/lobehub/lobe-chat/issues/9959) [#9569](https://github.com/lobehub/lobe-chat/issues/9569) ([b8f25de](https://github.com/lobehub/lobe-chat/commit/b8f25de))
2650
+
2651
+ </details>
2652
+
2653
+ <div align="right">
2654
+
2655
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2656
+
2657
+ </div>
2658
+
2659
+ ## [Version 2.0.0-next.36](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.35...v2.0.0-next.36)
2660
+
2661
+ <sup>Released on **2025-11-07**</sup>
2662
+
2663
+ #### ✨ Features
2664
+
2665
+ - **misc**: Refactor to use agent runtime as the generation core and support branch mode.
2666
+
2667
+ <br/>
2668
+
2669
+ <details>
2670
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2671
+
2672
+ #### What's improved
2673
+
2674
+ - **misc**: Refactor to use agent runtime as the generation core and support branch mode, closes [#10080](https://github.com/lobehub/lobe-chat/issues/10080) ([b95e741](https://github.com/lobehub/lobe-chat/commit/b95e741))
2675
+
2676
+ </details>
2677
+
2678
+ <div align="right">
2679
+
2680
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2681
+
2682
+ </div>
2683
+
2684
+ ## [Version 2.0.0-next.35](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.34...v2.0.0-next.35)
2685
+
2686
+ <sup>Released on **2025-11-07**</sup>
2687
+
2688
+ #### ♻ Code Refactoring
2689
+
2690
+ - **misc**: Use react-router-dom change /chat page to spa mode.
2691
+
2692
+ <br/>
2693
+
2694
+ <details>
2695
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2696
+
2697
+ #### Code refactoring
2698
+
2699
+ - **misc**: Use react-router-dom change /chat page to spa mode, closes [#10077](https://github.com/lobehub/lobe-chat/issues/10077) ([9154606](https://github.com/lobehub/lobe-chat/commit/9154606))
2700
+
2701
+ </details>
2702
+
2703
+ <div align="right">
2704
+
2705
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2706
+
2707
+ </div>
2708
+
2709
+ ## [Version 2.0.0-next.34](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.33...v2.0.0-next.34)
2710
+
2711
+ <sup>Released on **2025-11-07**</sup>
2712
+
2713
+ #### 💄 Styles
2714
+
2715
+ - **misc**: Add sorting functionality for disabled models and model providers with tooltip support.
2716
+
2717
+ <br/>
2718
+
2719
+ <details>
2720
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2721
+
2722
+ #### Styles
2723
+
2724
+ - **misc**: Add sorting functionality for disabled models and model providers with tooltip support, closes [#10000](https://github.com/lobehub/lobe-chat/issues/10000) ([68e98b1](https://github.com/lobehub/lobe-chat/commit/68e98b1))
2725
+
2726
+ </details>
2727
+
2728
+ <div align="right">
2729
+
2730
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2731
+
2732
+ </div>
2733
+
2734
+ ## [Version 2.0.0-next.33](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.32...v2.0.0-next.33)
2735
+
2736
+ <sup>Released on **2025-11-06**</sup>
2737
+
2738
+ #### ♻ Code Refactoring
2739
+
2740
+ - **misc**: Refactor message create name.
2741
+
2742
+ #### 🐛 Bug Fixes
2743
+
2744
+ - **misc**: Model name display in the assistant panel disappears.
2745
+
2746
+ <br/>
2747
+
2748
+ <details>
2749
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2750
+
2751
+ #### Code refactoring
2752
+
2753
+ - **misc**: Refactor message create name, closes [#10074](https://github.com/lobehub/lobe-chat/issues/10074) ([08ec29f](https://github.com/lobehub/lobe-chat/commit/08ec29f))
2754
+
2755
+ #### What's fixed
2756
+
2757
+ - **misc**: Model name display in the assistant panel disappears, closes [#9830](https://github.com/lobehub/lobe-chat/issues/9830) ([54f4e18](https://github.com/lobehub/lobe-chat/commit/54f4e18))
2758
+
2759
+ </details>
2760
+
2761
+ <div align="right">
2762
+
2763
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2764
+
2765
+ </div>
2766
+
2767
+ ## [Version 2.0.0-next.32](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.31...v2.0.0-next.32)
2768
+
2769
+ <sup>Released on **2025-11-05**</sup>
2770
+
2771
+ #### 🐛 Bug Fixes
2772
+
2773
+ - **misc**: Should install new version after quit this instance.
2774
+
2775
+ <br/>
2776
+
2777
+ <details>
2778
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2779
+
2780
+ #### What's fixed
2781
+
2782
+ - **misc**: Should install new version after quit this instance, closes [#10064](https://github.com/lobehub/lobe-chat/issues/10064) ([9ab77b2](https://github.com/lobehub/lobe-chat/commit/9ab77b2))
2783
+
2784
+ </details>
2785
+
2786
+ <div align="right">
2787
+
2788
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2789
+
2790
+ </div>
2791
+
2792
+ ## [Version 2.0.0-next.31](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.30...v2.0.0-next.31)
2793
+
2794
+ <sup>Released on **2025-11-05**</sup>
2795
+
2796
+ <br/>
2797
+
2798
+ <details>
2799
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2800
+
2801
+ </details>
2802
+
2803
+ <div align="right">
2804
+
2805
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2806
+
2807
+ </div>
2808
+
2809
+ ## [Version 2.0.0-next.30](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.29...v2.0.0-next.30)
2810
+
2811
+ <sup>Released on **2025-11-05**</sup>
2812
+
2813
+ #### ♻ Code Refactoring
2814
+
2815
+ - **misc**: Enhance message router with service layer and comprehensive tests.
2816
+
2817
+ <br/>
2818
+
2819
+ <details>
2820
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2821
+
2822
+ #### Code refactoring
2823
+
2824
+ - **misc**: Enhance message router with service layer and comprehensive tests, closes [#10056](https://github.com/lobehub/lobe-chat/issues/10056) ([62110e0](https://github.com/lobehub/lobe-chat/commit/62110e0))
2825
+
2826
+ </details>
2827
+
2828
+ <div align="right">
2829
+
2830
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2831
+
2832
+ </div>
2833
+
2834
+ ## [Version 2.0.0-next.29](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.28...v2.0.0-next.29)
2835
+
2836
+ <sup>Released on **2025-11-04**</sup>
2837
+
2838
+ #### ♻ Code Refactoring
2839
+
2840
+ - **misc**: Refactor chat message model to speed up.
2841
+
2842
+ <br/>
2843
+
2844
+ <details>
2845
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2846
+
2847
+ #### Code refactoring
2848
+
2849
+ - **misc**: Refactor chat message model to speed up, closes [#10053](https://github.com/lobehub/lobe-chat/issues/10053) ([035994f](https://github.com/lobehub/lobe-chat/commit/035994f))
2850
+
2851
+ </details>
2852
+
2853
+ <div align="right">
2854
+
2855
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2856
+
2857
+ </div>
2858
+
2859
+ ## [Version 2.0.0-next.28](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.27...v2.0.0-next.28)
2860
+
2861
+ <sup>Released on **2025-11-04**</sup>
2862
+
2863
+ #### ✨ Features
2864
+
2865
+ - **misc**: Support install sreamable http mcp server on web.
2866
+
2867
+ <br/>
2868
+
2869
+ <details>
2870
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2871
+
2872
+ #### What's improved
2873
+
2874
+ - **misc**: Support install sreamable http mcp server on web, closes [#10044](https://github.com/lobehub/lobe-chat/issues/10044) [#9916](https://github.com/lobehub/lobe-chat/issues/9916) ([85454c5](https://github.com/lobehub/lobe-chat/commit/85454c5))
2875
+
2876
+ </details>
2877
+
2878
+ <div align="right">
2879
+
2880
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2881
+
2882
+ </div>
2883
+
2884
+ ## [Version 2.0.0-next.27](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.26...v2.0.0-next.27)
2885
+
2886
+ <sup>Released on **2025-11-04**</sup>
2887
+
2888
+ #### ♻ Code Refactoring
2889
+
2890
+ - **misc**: Refactor services to a more clean structure.
2891
+
2892
+ <br/>
2893
+
2894
+ <details>
2895
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2896
+
2897
+ #### Code refactoring
2898
+
2899
+ - **misc**: Refactor services to a more clean structure, closes [#10050](https://github.com/lobehub/lobe-chat/issues/10050) ([de61dfa](https://github.com/lobehub/lobe-chat/commit/de61dfa))
2900
+
2901
+ </details>
2902
+
2903
+ <div align="right">
2904
+
2905
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2906
+
2907
+ </div>
2908
+
2909
+ ## [Version 2.0.0-next.26](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.25...v2.0.0-next.26)
2910
+
2911
+ <sup>Released on **2025-11-04**</sup>
2912
+
2913
+ #### ♻ Code Refactoring
2914
+
2915
+ - **misc**: Add settings (jsonb) column to `ai_models` table.
2916
+
2917
+ <br/>
2918
+
2919
+ <details>
2920
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2921
+
2922
+ #### Code refactoring
2923
+
2924
+ - **misc**: Add settings (jsonb) column to `ai_models` table, closes [#10042](https://github.com/lobehub/lobe-chat/issues/10042) ([7e1dd02](https://github.com/lobehub/lobe-chat/commit/7e1dd02))
2925
+
2926
+ </details>
2927
+
2928
+ <div align="right">
2929
+
2930
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2931
+
2932
+ </div>
2933
+
2934
+ ## [Version 2.0.0-next.25](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.24...v2.0.0-next.25)
2935
+
2936
+ <sup>Released on **2025-11-04**</sup>
2937
+
2938
+ #### ✨ Features
2939
+
2940
+ - **misc**: Display assistant message in group.
2941
+
2942
+ <br/>
2943
+
2944
+ <details>
2945
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2946
+
2947
+ #### What's improved
2948
+
2949
+ - **misc**: Display assistant message in group, closes [#9941](https://github.com/lobehub/lobe-chat/issues/9941) ([59b6ac3](https://github.com/lobehub/lobe-chat/commit/59b6ac3))
2950
+
2951
+ </details>
2952
+
2953
+ <div align="right">
2954
+
2955
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2956
+
2957
+ </div>
2958
+
2959
+ ## [Version 2.0.0-next.24](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.23...v2.0.0-next.24)
2960
+
2961
+ <sup>Released on **2025-11-04**</sup>
2962
+
2963
+ #### 💄 Styles
2964
+
2965
+ - **misc**: Improve lab style.
2966
+
2967
+ <br/>
2968
+
2969
+ <details>
2970
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2971
+
2972
+ #### Styles
2973
+
2974
+ - **misc**: Improve lab style, closes [#10040](https://github.com/lobehub/lobe-chat/issues/10040) ([bbf1c0b](https://github.com/lobehub/lobe-chat/commit/bbf1c0b))
2975
+
2976
+ </details>
2977
+
2978
+ <div align="right">
2979
+
2980
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2981
+
2982
+ </div>
2983
+
2984
+ ## [Version 2.0.0-next.23](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.22...v2.0.0-next.23)
2985
+
2986
+ <sup>Released on **2025-11-04**</sup>
2987
+
2988
+ #### 🐛 Bug Fixes
2989
+
2990
+ - **misc**: Fix send message.
2991
+
2992
+ <br/>
2993
+
2994
+ <details>
2995
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2996
+
2997
+ #### What's fixed
2998
+
2999
+ - **misc**: Fix send message, closes [#10041](https://github.com/lobehub/lobe-chat/issues/10041) [#9984](https://github.com/lobehub/lobe-chat/issues/9984) ([7cca60f](https://github.com/lobehub/lobe-chat/commit/7cca60f))
3000
+
3001
+ </details>
3002
+
3003
+ <div align="right">
3004
+
3005
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
3006
+
3007
+ </div>
3008
+
3009
+ ## [Version 2.0.0-next.22](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.21...v2.0.0-next.22)
3010
+
3011
+ <sup>Released on **2025-11-04**</sup>
3012
+
3013
+ <br/>
3014
+
3015
+ <details>
3016
+ <summary><kbd>Improvements and Fixes</kbd></summary>
3017
+
3018
+ </details>
3019
+
3020
+ <div align="right">
3021
+
3022
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
3023
+
3024
+ </div>
3025
+
3026
+ ## [Version 2.0.0-next.21](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.20...v2.0.0-next.21)
3027
+
3028
+ <sup>Released on **2025-11-04**</sup>
3029
+
3030
+ #### 🐛 Bug Fixes
3031
+
3032
+ - **misc**: Fix oidc auth timeout issue on the desktop.
3033
+
3034
+ <br/>
3035
+
3036
+ <details>
3037
+ <summary><kbd>Improvements and Fixes</kbd></summary>
3038
+
3039
+ #### What's fixed
3040
+
3041
+ - **misc**: Fix oidc auth timeout issue on the desktop, closes [#10025](https://github.com/lobehub/lobe-chat/issues/10025) ([20666db](https://github.com/lobehub/lobe-chat/commit/20666db))
3042
+
3043
+ </details>
3044
+
3045
+ <div align="right">
3046
+
3047
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
3048
+
3049
+ </div>
3050
+
3051
+ ## [Version 2.0.0-next.20](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.19...v2.0.0-next.20)
3052
+
3053
+ <sup>Released on **2025-11-03**</sup>
3054
+
3055
+ #### 💄 Styles
3056
+
3057
+ - **misc**: Improve oidc layout style.
3058
+
3059
+ <br/>
3060
+
3061
+ <details>
3062
+ <summary><kbd>Improvements and Fixes</kbd></summary>
3063
+
3064
+ #### Styles
3065
+
3066
+ - **misc**: Improve oidc layout style, closes [#10023](https://github.com/lobehub/lobe-chat/issues/10023) ([5008be7](https://github.com/lobehub/lobe-chat/commit/5008be7))
3067
+
3068
+ </details>
3069
+
3070
+ <div align="right">
3071
+
3072
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
3073
+
3074
+ </div>
3075
+
3076
+ ## [Version 2.0.0-next.19](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.18...v2.0.0-next.19)
3077
+
3078
+ <sup>Released on **2025-11-03**</sup>
3079
+
3080
+ #### ♻ Code Refactoring
3081
+
3082
+ - **misc**: Remove `NEXT_PUBLIC_SERVICE_MODE` env and use server by default.
3083
+
3084
+ <br/>
3085
+
3086
+ <details>
3087
+ <summary><kbd>Improvements and Fixes</kbd></summary>
3088
+
3089
+ #### Code refactoring
3090
+
3091
+ - **misc**: Remove `NEXT_PUBLIC_SERVICE_MODE` env and use server by default, closes [#10017](https://github.com/lobehub/lobe-chat/issues/10017) ([f2ab2fc](https://github.com/lobehub/lobe-chat/commit/f2ab2fc))
3092
+
3093
+ </details>
3094
+
3095
+ <div align="right">
3096
+
3097
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
3098
+
3099
+ </div>
3100
+
3101
+ ## [Version 2.0.0-next.18](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.17...v2.0.0-next.18)
3102
+
3103
+ <sup>Released on **2025-11-03**</sup>
3104
+
3105
+ #### ♻ Code Refactoring
3106
+
3107
+ - **misc**: Refactor trpc request to use zod schema.
3108
+
3109
+ #### 💄 Styles
3110
+
3111
+ - **misc**: Improve built-in client OIDC user flow.
3112
+
3113
+ <br/>
3114
+
3115
+ <details>
3116
+ <summary><kbd>Improvements and Fixes</kbd></summary>
3117
+
3118
+ #### Code refactoring
3119
+
3120
+ - **misc**: Refactor trpc request to use zod schema, closes [#10016](https://github.com/lobehub/lobe-chat/issues/10016) ([1a84f2c](https://github.com/lobehub/lobe-chat/commit/1a84f2c))
3121
+
3122
+ #### Styles
3123
+
3124
+ - **misc**: Improve built-in client OIDC user flow, closes [#10020](https://github.com/lobehub/lobe-chat/issues/10020) ([80202ed](https://github.com/lobehub/lobe-chat/commit/80202ed))
3125
+
3126
+ </details>
3127
+
3128
+ <div align="right">
3129
+
3130
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
3131
+
3132
+ </div>
3133
+
3134
+ ## [Version 2.0.0-next.17](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.16...v2.0.0-next.17)
3135
+
3136
+ <sup>Released on **2025-11-03**</sup>
3137
+
3138
+ #### 🐛 Bug Fixes
3139
+
3140
+ - **misc**: Fix regex ReDoS.
3141
+
3142
+ <br/>
3143
+
3144
+ <details>
3145
+ <summary><kbd>Improvements and Fixes</kbd></summary>
3146
+
3147
+ #### What's fixed
3148
+
3149
+ - **misc**: Fix regex ReDoS, closes [#10012](https://github.com/lobehub/lobe-chat/issues/10012) ([1d8d5cd](https://github.com/lobehub/lobe-chat/commit/1d8d5cd))
3150
+
3151
+ </details>
3152
+
3153
+ <div align="right">
3154
+
3155
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
3156
+
3157
+ </div>
3158
+
3159
+ ## [Version 2.0.0-next.16](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.15...v2.0.0-next.16)
3160
+
3161
+ <sup>Released on **2025-11-03**</sup>
3162
+
3163
+ #### ♻ Code Refactoring
3164
+
3165
+ - **misc**: Remove deperated code.
3166
+
3167
+ <br/>
3168
+
3169
+ <details>
3170
+ <summary><kbd>Improvements and Fixes</kbd></summary>
3171
+
3172
+ #### Code refactoring
3173
+
3174
+ - **misc**: Remove deperated code, closes [#10001](https://github.com/lobehub/lobe-chat/issues/10001) ([4ee4590](https://github.com/lobehub/lobe-chat/commit/4ee4590))
3175
+
3176
+ </details>
3177
+
3178
+ <div align="right">
3179
+
3180
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
3181
+
3182
+ </div>
3183
+
3184
+ ## [Version 2.0.0-next.15](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.14...v2.0.0-next.15)
3185
+
3186
+ <sup>Released on **2025-11-03**</sup>
3187
+
3188
+ <br/>
3189
+
3190
+ <details>
3191
+ <summary><kbd>Improvements and Fixes</kbd></summary>
3192
+
3193
+ </details>
3194
+
3195
+ <div align="right">
3196
+
3197
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
3198
+
3199
+ </div>
3200
+
5
3201
  ## [Version 2.0.0-next.14](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.13...v2.0.0-next.14)
6
3202
 
7
3203
  <sup>Released on **2025-11-02**</sup>