@lobehub/lobehub 2.0.0-next.11 → 2.0.0-next.111

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 (2463) hide show
  1. package/.console-log-whitelist.json +14 -0
  2. package/.env.desktop +1 -2
  3. package/.env.example +11 -3
  4. package/.env.example.development +0 -2
  5. package/.github/workflows/check-console-log.yml +117 -0
  6. package/.github/workflows/claude-auto-testing.yml +73 -0
  7. package/.github/workflows/claude-translate-comments.yml +67 -0
  8. package/.github/workflows/claude-translator.yml +1 -0
  9. package/.github/workflows/desktop-pr-build.yml +13 -9
  10. package/.github/workflows/e2e.yml +14 -0
  11. package/.github/workflows/issue-auto-comments.yml +0 -19
  12. package/.github/workflows/release-desktop-beta.yml +4 -4
  13. package/.github/workflows/release.yml +2 -4
  14. package/.github/workflows/test.yml +44 -8
  15. package/.nvmrc +1 -1
  16. package/AGENTS.md +1 -0
  17. package/CHANGELOG.md +2512 -0
  18. package/CLAUDE.md +1 -0
  19. package/Dockerfile +1 -3
  20. package/README.md +8 -51
  21. package/README.zh-CN.md +8 -51
  22. package/apps/desktop/package.json +19 -18
  23. package/apps/desktop/src/common/routes.ts +0 -6
  24. package/apps/desktop/src/main/appBrowsers.ts +0 -13
  25. package/apps/desktop/src/main/controllers/AuthCtr.ts +78 -39
  26. package/apps/desktop/src/main/controllers/BrowserWindowsCtr.ts +29 -48
  27. package/apps/desktop/src/main/controllers/LocalFileCtr.ts +80 -16
  28. package/apps/desktop/src/main/controllers/MenuCtr.ts +5 -5
  29. package/apps/desktop/src/main/controllers/NotificationCtr.ts +29 -29
  30. package/apps/desktop/src/main/controllers/RemoteServerConfigCtr.ts +16 -16
  31. package/apps/desktop/src/main/controllers/ShellCommandCtr.ts +242 -0
  32. package/apps/desktop/src/main/controllers/ShortcutCtr.ts +2 -2
  33. package/apps/desktop/src/main/controllers/TrayMenuCtr.ts +18 -18
  34. package/apps/desktop/src/main/controllers/UpdaterCtr.ts +4 -4
  35. package/apps/desktop/src/main/controllers/__tests__/AuthCtr.test.ts +706 -0
  36. package/apps/desktop/src/main/controllers/__tests__/BrowserWindowsCtr.test.ts +21 -72
  37. package/apps/desktop/src/main/controllers/__tests__/LocalFileCtr.test.ts +157 -1
  38. package/apps/desktop/src/main/controllers/__tests__/ShellCommandCtr.test.ts +499 -0
  39. package/apps/desktop/src/main/controllers/__tests__/TrayMenuCtr.test.ts +5 -5
  40. package/apps/desktop/src/main/controllers/index.ts +4 -4
  41. package/apps/desktop/src/main/core/browser/Browser.ts +1 -0
  42. package/apps/desktop/src/main/core/browser/BrowserManager.ts +1 -56
  43. package/apps/desktop/src/main/core/infrastructure/ProtocolManager.ts +9 -4
  44. package/apps/desktop/src/main/core/infrastructure/UpdaterManager.ts +23 -2
  45. package/apps/desktop/src/main/menus/impls/macOS.ts +9 -3
  46. package/apps/desktop/src/main/modules/fileSearch/__tests__/macOS.integration.test.ts +357 -0
  47. package/apps/desktop/src/main/modules/fileSearch/impl/macOS.ts +30 -22
  48. package/apps/desktop/src/main/modules/networkProxy/__tests__/dispatcher.test.ts +401 -0
  49. package/apps/desktop/src/main/modules/networkProxy/__tests__/tester.test.ts +531 -0
  50. package/apps/desktop/src/main/modules/networkProxy/__tests__/urlBuilder.test.ts +349 -0
  51. package/apps/desktop/src/main/modules/networkProxy/__tests__/validator.test.ts +492 -0
  52. package/apps/desktop/src/main/modules/networkProxy/dispatcher.ts +16 -16
  53. package/apps/desktop/src/main/modules/networkProxy/tester.ts +11 -11
  54. package/apps/desktop/src/main/modules/networkProxy/urlBuilder.ts +3 -3
  55. package/apps/desktop/src/main/modules/networkProxy/validator.ts +10 -10
  56. package/apps/desktop/src/main/services/__tests__/fileSrv.test.ts +603 -0
  57. package/apps/desktop/src/preload/index.ts +2 -2
  58. package/apps/desktop/src/preload/invoke.ts +1 -1
  59. package/apps/desktop/src/preload/routeInterceptor.ts +41 -41
  60. package/apps/desktop/tsconfig.json +0 -1
  61. package/changelog/v1.json +874 -0
  62. package/codecov.yml +1 -0
  63. package/docker-compose/local/.env.example +3 -0
  64. package/docs/development/database-schema.dbml +24 -14
  65. package/docs/self-hosting/advanced/feature-flags.mdx +0 -1
  66. package/docs/self-hosting/advanced/feature-flags.zh-CN.mdx +0 -1
  67. package/docs/self-hosting/environment-variables/basic.mdx +49 -3
  68. package/docs/self-hosting/environment-variables/basic.zh-CN.mdx +49 -4
  69. package/docs/self-hosting/server-database/docker-compose.mdx +29 -0
  70. package/docs/self-hosting/server-database/docker-compose.zh-CN.mdx +29 -0
  71. package/docs/usage/providers/comfyui.mdx +1 -1
  72. package/docs/usage/providers/comfyui.zh-CN.mdx +1 -1
  73. package/e2e/package.json +2 -2
  74. package/e2e/src/features/discover/detail-pages.feature +95 -0
  75. package/e2e/src/features/discover/interactions.feature +113 -0
  76. package/e2e/src/features/discover/smoke.feature +34 -1
  77. package/e2e/src/steps/discover/detail-pages.steps.ts +295 -0
  78. package/e2e/src/steps/discover/interactions.steps.ts +451 -0
  79. package/e2e/src/steps/discover/smoke.steps.ts +116 -4
  80. package/e2e/tsconfig.json +0 -1
  81. package/locales/ar/auth.json +45 -1
  82. package/locales/ar/chat.json +36 -0
  83. package/locales/ar/common.json +24 -0
  84. package/locales/ar/components.json +6 -0
  85. package/locales/ar/discover.json +45 -0
  86. package/locales/ar/error.json +2 -2
  87. package/locales/ar/file.json +88 -5
  88. package/locales/ar/hotkey.json +4 -0
  89. package/locales/ar/image.json +8 -0
  90. package/locales/ar/labs.json +4 -0
  91. package/locales/ar/marketAuth.json +42 -0
  92. package/locales/ar/modelProvider.json +14 -2
  93. package/locales/ar/models.json +395 -122
  94. package/locales/ar/oauth.json +1 -0
  95. package/locales/ar/plugin.json +36 -16
  96. package/locales/ar/providers.json +3 -0
  97. package/locales/ar/setting.json +101 -2
  98. package/locales/ar/tool.json +28 -1
  99. package/locales/ar/topic.json +1 -0
  100. package/locales/bg-BG/auth.json +45 -1
  101. package/locales/bg-BG/chat.json +36 -0
  102. package/locales/bg-BG/common.json +24 -0
  103. package/locales/bg-BG/components.json +6 -0
  104. package/locales/bg-BG/discover.json +45 -0
  105. package/locales/bg-BG/error.json +2 -2
  106. package/locales/bg-BG/file.json +88 -5
  107. package/locales/bg-BG/hotkey.json +4 -0
  108. package/locales/bg-BG/image.json +8 -0
  109. package/locales/bg-BG/labs.json +4 -0
  110. package/locales/bg-BG/marketAuth.json +42 -0
  111. package/locales/bg-BG/modelProvider.json +14 -2
  112. package/locales/bg-BG/models.json +395 -122
  113. package/locales/bg-BG/oauth.json +1 -0
  114. package/locales/bg-BG/plugin.json +36 -16
  115. package/locales/bg-BG/providers.json +3 -0
  116. package/locales/bg-BG/setting.json +101 -2
  117. package/locales/bg-BG/tool.json +28 -1
  118. package/locales/bg-BG/topic.json +1 -0
  119. package/locales/de-DE/auth.json +45 -1
  120. package/locales/de-DE/chat.json +36 -0
  121. package/locales/de-DE/common.json +24 -0
  122. package/locales/de-DE/components.json +6 -0
  123. package/locales/de-DE/discover.json +45 -0
  124. package/locales/de-DE/error.json +2 -2
  125. package/locales/de-DE/file.json +88 -5
  126. package/locales/de-DE/hotkey.json +4 -0
  127. package/locales/de-DE/image.json +8 -0
  128. package/locales/de-DE/labs.json +4 -0
  129. package/locales/de-DE/marketAuth.json +42 -0
  130. package/locales/de-DE/modelProvider.json +14 -2
  131. package/locales/de-DE/models.json +395 -122
  132. package/locales/de-DE/oauth.json +1 -0
  133. package/locales/de-DE/plugin.json +36 -16
  134. package/locales/de-DE/providers.json +3 -0
  135. package/locales/de-DE/setting.json +101 -2
  136. package/locales/de-DE/tool.json +28 -1
  137. package/locales/de-DE/topic.json +1 -0
  138. package/locales/en-US/auth.json +45 -1
  139. package/locales/en-US/chat.json +36 -0
  140. package/locales/en-US/common.json +24 -0
  141. package/locales/en-US/components.json +6 -0
  142. package/locales/en-US/discover.json +45 -0
  143. package/locales/en-US/error.json +2 -2
  144. package/locales/en-US/file.json +88 -5
  145. package/locales/en-US/hotkey.json +4 -0
  146. package/locales/en-US/image.json +8 -0
  147. package/locales/en-US/labs.json +4 -0
  148. package/locales/en-US/marketAuth.json +42 -0
  149. package/locales/en-US/modelProvider.json +14 -2
  150. package/locales/en-US/models.json +395 -122
  151. package/locales/en-US/oauth.json +1 -0
  152. package/locales/en-US/plugin.json +36 -16
  153. package/locales/en-US/providers.json +3 -0
  154. package/locales/en-US/setting.json +101 -2
  155. package/locales/en-US/tool.json +28 -1
  156. package/locales/en-US/topic.json +1 -0
  157. package/locales/es-ES/auth.json +45 -1
  158. package/locales/es-ES/chat.json +36 -0
  159. package/locales/es-ES/common.json +24 -0
  160. package/locales/es-ES/components.json +6 -0
  161. package/locales/es-ES/discover.json +45 -0
  162. package/locales/es-ES/error.json +2 -2
  163. package/locales/es-ES/file.json +88 -5
  164. package/locales/es-ES/hotkey.json +4 -0
  165. package/locales/es-ES/image.json +8 -0
  166. package/locales/es-ES/labs.json +4 -0
  167. package/locales/es-ES/marketAuth.json +42 -0
  168. package/locales/es-ES/modelProvider.json +14 -2
  169. package/locales/es-ES/models.json +395 -122
  170. package/locales/es-ES/oauth.json +1 -0
  171. package/locales/es-ES/plugin.json +36 -16
  172. package/locales/es-ES/providers.json +3 -0
  173. package/locales/es-ES/setting.json +101 -2
  174. package/locales/es-ES/tool.json +28 -1
  175. package/locales/es-ES/topic.json +1 -0
  176. package/locales/fa-IR/auth.json +45 -1
  177. package/locales/fa-IR/chat.json +36 -0
  178. package/locales/fa-IR/common.json +24 -0
  179. package/locales/fa-IR/components.json +6 -0
  180. package/locales/fa-IR/discover.json +45 -0
  181. package/locales/fa-IR/error.json +2 -2
  182. package/locales/fa-IR/file.json +88 -5
  183. package/locales/fa-IR/hotkey.json +4 -0
  184. package/locales/fa-IR/image.json +8 -0
  185. package/locales/fa-IR/labs.json +4 -0
  186. package/locales/fa-IR/marketAuth.json +42 -0
  187. package/locales/fa-IR/modelProvider.json +14 -2
  188. package/locales/fa-IR/models.json +395 -122
  189. package/locales/fa-IR/oauth.json +1 -0
  190. package/locales/fa-IR/plugin.json +36 -16
  191. package/locales/fa-IR/providers.json +3 -0
  192. package/locales/fa-IR/setting.json +101 -2
  193. package/locales/fa-IR/tool.json +28 -1
  194. package/locales/fa-IR/topic.json +1 -0
  195. package/locales/fr-FR/auth.json +45 -1
  196. package/locales/fr-FR/chat.json +36 -0
  197. package/locales/fr-FR/common.json +24 -0
  198. package/locales/fr-FR/components.json +6 -0
  199. package/locales/fr-FR/discover.json +45 -0
  200. package/locales/fr-FR/error.json +2 -2
  201. package/locales/fr-FR/file.json +88 -5
  202. package/locales/fr-FR/hotkey.json +4 -0
  203. package/locales/fr-FR/image.json +8 -0
  204. package/locales/fr-FR/labs.json +4 -0
  205. package/locales/fr-FR/marketAuth.json +42 -0
  206. package/locales/fr-FR/modelProvider.json +14 -2
  207. package/locales/fr-FR/models.json +395 -122
  208. package/locales/fr-FR/oauth.json +1 -0
  209. package/locales/fr-FR/plugin.json +36 -16
  210. package/locales/fr-FR/providers.json +3 -0
  211. package/locales/fr-FR/setting.json +101 -2
  212. package/locales/fr-FR/tool.json +28 -1
  213. package/locales/fr-FR/topic.json +1 -0
  214. package/locales/it-IT/auth.json +45 -1
  215. package/locales/it-IT/chat.json +36 -0
  216. package/locales/it-IT/common.json +24 -0
  217. package/locales/it-IT/components.json +6 -0
  218. package/locales/it-IT/discover.json +45 -0
  219. package/locales/it-IT/error.json +2 -2
  220. package/locales/it-IT/file.json +88 -5
  221. package/locales/it-IT/hotkey.json +4 -0
  222. package/locales/it-IT/image.json +8 -0
  223. package/locales/it-IT/labs.json +4 -0
  224. package/locales/it-IT/marketAuth.json +42 -0
  225. package/locales/it-IT/modelProvider.json +14 -2
  226. package/locales/it-IT/models.json +395 -122
  227. package/locales/it-IT/oauth.json +1 -0
  228. package/locales/it-IT/plugin.json +36 -16
  229. package/locales/it-IT/providers.json +3 -0
  230. package/locales/it-IT/setting.json +101 -2
  231. package/locales/it-IT/tool.json +28 -1
  232. package/locales/it-IT/topic.json +1 -0
  233. package/locales/ja-JP/auth.json +45 -1
  234. package/locales/ja-JP/chat.json +36 -0
  235. package/locales/ja-JP/common.json +24 -0
  236. package/locales/ja-JP/components.json +6 -0
  237. package/locales/ja-JP/discover.json +45 -0
  238. package/locales/ja-JP/error.json +2 -2
  239. package/locales/ja-JP/file.json +88 -5
  240. package/locales/ja-JP/hotkey.json +4 -0
  241. package/locales/ja-JP/image.json +8 -0
  242. package/locales/ja-JP/labs.json +4 -0
  243. package/locales/ja-JP/marketAuth.json +42 -0
  244. package/locales/ja-JP/modelProvider.json +14 -2
  245. package/locales/ja-JP/models.json +395 -122
  246. package/locales/ja-JP/oauth.json +1 -0
  247. package/locales/ja-JP/plugin.json +36 -16
  248. package/locales/ja-JP/providers.json +3 -0
  249. package/locales/ja-JP/setting.json +101 -2
  250. package/locales/ja-JP/tool.json +28 -1
  251. package/locales/ja-JP/topic.json +1 -0
  252. package/locales/ko-KR/auth.json +45 -1
  253. package/locales/ko-KR/chat.json +36 -0
  254. package/locales/ko-KR/common.json +24 -0
  255. package/locales/ko-KR/components.json +6 -0
  256. package/locales/ko-KR/discover.json +45 -0
  257. package/locales/ko-KR/error.json +2 -2
  258. package/locales/ko-KR/file.json +88 -5
  259. package/locales/ko-KR/hotkey.json +4 -0
  260. package/locales/ko-KR/image.json +8 -0
  261. package/locales/ko-KR/labs.json +4 -0
  262. package/locales/ko-KR/marketAuth.json +42 -0
  263. package/locales/ko-KR/modelProvider.json +14 -2
  264. package/locales/ko-KR/models.json +395 -122
  265. package/locales/ko-KR/oauth.json +1 -0
  266. package/locales/ko-KR/plugin.json +36 -16
  267. package/locales/ko-KR/providers.json +3 -0
  268. package/locales/ko-KR/setting.json +101 -2
  269. package/locales/ko-KR/tool.json +28 -1
  270. package/locales/ko-KR/topic.json +1 -0
  271. package/locales/nl-NL/auth.json +45 -1
  272. package/locales/nl-NL/chat.json +36 -0
  273. package/locales/nl-NL/common.json +24 -0
  274. package/locales/nl-NL/components.json +6 -0
  275. package/locales/nl-NL/discover.json +45 -0
  276. package/locales/nl-NL/error.json +2 -2
  277. package/locales/nl-NL/file.json +88 -5
  278. package/locales/nl-NL/hotkey.json +4 -0
  279. package/locales/nl-NL/image.json +8 -0
  280. package/locales/nl-NL/labs.json +4 -0
  281. package/locales/nl-NL/marketAuth.json +42 -0
  282. package/locales/nl-NL/modelProvider.json +14 -2
  283. package/locales/nl-NL/models.json +395 -122
  284. package/locales/nl-NL/oauth.json +1 -0
  285. package/locales/nl-NL/plugin.json +36 -16
  286. package/locales/nl-NL/providers.json +3 -0
  287. package/locales/nl-NL/setting.json +101 -2
  288. package/locales/nl-NL/tool.json +28 -1
  289. package/locales/nl-NL/topic.json +1 -0
  290. package/locales/pl-PL/auth.json +45 -1
  291. package/locales/pl-PL/chat.json +36 -0
  292. package/locales/pl-PL/common.json +24 -0
  293. package/locales/pl-PL/components.json +6 -0
  294. package/locales/pl-PL/discover.json +45 -0
  295. package/locales/pl-PL/error.json +2 -2
  296. package/locales/pl-PL/file.json +88 -5
  297. package/locales/pl-PL/hotkey.json +4 -0
  298. package/locales/pl-PL/image.json +8 -0
  299. package/locales/pl-PL/labs.json +4 -0
  300. package/locales/pl-PL/marketAuth.json +42 -0
  301. package/locales/pl-PL/modelProvider.json +14 -2
  302. package/locales/pl-PL/models.json +395 -122
  303. package/locales/pl-PL/oauth.json +1 -0
  304. package/locales/pl-PL/plugin.json +36 -16
  305. package/locales/pl-PL/providers.json +3 -0
  306. package/locales/pl-PL/setting.json +101 -2
  307. package/locales/pl-PL/tool.json +28 -1
  308. package/locales/pl-PL/topic.json +1 -0
  309. package/locales/pt-BR/auth.json +45 -1
  310. package/locales/pt-BR/chat.json +36 -0
  311. package/locales/pt-BR/common.json +24 -0
  312. package/locales/pt-BR/components.json +6 -0
  313. package/locales/pt-BR/discover.json +45 -0
  314. package/locales/pt-BR/error.json +2 -2
  315. package/locales/pt-BR/file.json +88 -5
  316. package/locales/pt-BR/hotkey.json +4 -0
  317. package/locales/pt-BR/image.json +8 -0
  318. package/locales/pt-BR/labs.json +4 -0
  319. package/locales/pt-BR/marketAuth.json +42 -0
  320. package/locales/pt-BR/modelProvider.json +14 -2
  321. package/locales/pt-BR/models.json +395 -122
  322. package/locales/pt-BR/oauth.json +1 -0
  323. package/locales/pt-BR/plugin.json +36 -16
  324. package/locales/pt-BR/providers.json +3 -0
  325. package/locales/pt-BR/setting.json +101 -2
  326. package/locales/pt-BR/tool.json +28 -1
  327. package/locales/pt-BR/topic.json +1 -0
  328. package/locales/ru-RU/auth.json +45 -1
  329. package/locales/ru-RU/chat.json +36 -0
  330. package/locales/ru-RU/common.json +24 -0
  331. package/locales/ru-RU/components.json +6 -0
  332. package/locales/ru-RU/discover.json +45 -0
  333. package/locales/ru-RU/error.json +2 -2
  334. package/locales/ru-RU/file.json +88 -5
  335. package/locales/ru-RU/hotkey.json +4 -0
  336. package/locales/ru-RU/image.json +8 -0
  337. package/locales/ru-RU/labs.json +4 -0
  338. package/locales/ru-RU/marketAuth.json +42 -0
  339. package/locales/ru-RU/modelProvider.json +14 -2
  340. package/locales/ru-RU/models.json +395 -122
  341. package/locales/ru-RU/oauth.json +1 -0
  342. package/locales/ru-RU/plugin.json +36 -16
  343. package/locales/ru-RU/providers.json +3 -0
  344. package/locales/ru-RU/setting.json +101 -2
  345. package/locales/ru-RU/tool.json +28 -1
  346. package/locales/ru-RU/topic.json +1 -0
  347. package/locales/tr-TR/auth.json +45 -1
  348. package/locales/tr-TR/chat.json +36 -0
  349. package/locales/tr-TR/common.json +24 -0
  350. package/locales/tr-TR/components.json +6 -0
  351. package/locales/tr-TR/discover.json +45 -0
  352. package/locales/tr-TR/error.json +2 -2
  353. package/locales/tr-TR/file.json +88 -5
  354. package/locales/tr-TR/hotkey.json +4 -0
  355. package/locales/tr-TR/image.json +8 -0
  356. package/locales/tr-TR/labs.json +4 -0
  357. package/locales/tr-TR/marketAuth.json +42 -0
  358. package/locales/tr-TR/modelProvider.json +14 -2
  359. package/locales/tr-TR/models.json +395 -122
  360. package/locales/tr-TR/oauth.json +1 -0
  361. package/locales/tr-TR/plugin.json +36 -16
  362. package/locales/tr-TR/providers.json +3 -0
  363. package/locales/tr-TR/setting.json +101 -2
  364. package/locales/tr-TR/tool.json +28 -1
  365. package/locales/tr-TR/topic.json +1 -0
  366. package/locales/vi-VN/auth.json +45 -1
  367. package/locales/vi-VN/chat.json +36 -0
  368. package/locales/vi-VN/common.json +24 -0
  369. package/locales/vi-VN/components.json +6 -0
  370. package/locales/vi-VN/discover.json +45 -0
  371. package/locales/vi-VN/error.json +2 -2
  372. package/locales/vi-VN/file.json +88 -5
  373. package/locales/vi-VN/hotkey.json +4 -0
  374. package/locales/vi-VN/image.json +8 -0
  375. package/locales/vi-VN/labs.json +4 -0
  376. package/locales/vi-VN/marketAuth.json +42 -0
  377. package/locales/vi-VN/modelProvider.json +14 -2
  378. package/locales/vi-VN/models.json +395 -122
  379. package/locales/vi-VN/oauth.json +1 -0
  380. package/locales/vi-VN/plugin.json +36 -16
  381. package/locales/vi-VN/providers.json +3 -0
  382. package/locales/vi-VN/setting.json +101 -2
  383. package/locales/vi-VN/tool.json +28 -1
  384. package/locales/vi-VN/topic.json +1 -0
  385. package/locales/zh-CN/auth.json +45 -1
  386. package/locales/zh-CN/chat.json +36 -0
  387. package/locales/zh-CN/common.json +24 -0
  388. package/locales/zh-CN/components.json +6 -0
  389. package/locales/zh-CN/discover.json +45 -0
  390. package/locales/zh-CN/error.json +2 -2
  391. package/locales/zh-CN/file.json +88 -5
  392. package/locales/zh-CN/hotkey.json +4 -0
  393. package/locales/zh-CN/image.json +8 -0
  394. package/locales/zh-CN/labs.json +4 -0
  395. package/locales/zh-CN/marketAuth.json +42 -0
  396. package/locales/zh-CN/modelProvider.json +14 -2
  397. package/locales/zh-CN/models.json +395 -122
  398. package/locales/zh-CN/oauth.json +1 -0
  399. package/locales/zh-CN/plugin.json +36 -16
  400. package/locales/zh-CN/providers.json +3 -0
  401. package/locales/zh-CN/setting.json +100 -1
  402. package/locales/zh-CN/tool.json +28 -1
  403. package/locales/zh-CN/topic.json +1 -0
  404. package/locales/zh-TW/auth.json +45 -1
  405. package/locales/zh-TW/chat.json +36 -0
  406. package/locales/zh-TW/common.json +24 -0
  407. package/locales/zh-TW/components.json +6 -0
  408. package/locales/zh-TW/discover.json +45 -0
  409. package/locales/zh-TW/error.json +2 -2
  410. package/locales/zh-TW/file.json +88 -5
  411. package/locales/zh-TW/hotkey.json +4 -0
  412. package/locales/zh-TW/image.json +8 -0
  413. package/locales/zh-TW/labs.json +4 -0
  414. package/locales/zh-TW/marketAuth.json +42 -0
  415. package/locales/zh-TW/modelProvider.json +14 -2
  416. package/locales/zh-TW/models.json +395 -122
  417. package/locales/zh-TW/oauth.json +1 -0
  418. package/locales/zh-TW/plugin.json +36 -16
  419. package/locales/zh-TW/providers.json +3 -0
  420. package/locales/zh-TW/setting.json +101 -2
  421. package/locales/zh-TW/tool.json +28 -1
  422. package/locales/zh-TW/topic.json +1 -0
  423. package/next.config.ts +10 -12
  424. package/package.json +91 -82
  425. package/packages/agent-runtime/package.json +1 -1
  426. package/packages/agent-runtime/src/core/InterventionChecker.ts +88 -14
  427. package/packages/agent-runtime/src/core/__tests__/InterventionChecker.test.ts +504 -87
  428. package/packages/agent-runtime/src/core/__tests__/runtime.test.ts +141 -87
  429. package/packages/agent-runtime/src/core/defaultSecurityBlacklist.ts +335 -0
  430. package/packages/agent-runtime/src/core/index.ts +1 -0
  431. package/packages/agent-runtime/src/core/runtime.ts +104 -20
  432. package/packages/agent-runtime/src/types/event.ts +4 -1
  433. package/packages/agent-runtime/src/types/generalAgent.ts +72 -0
  434. package/packages/agent-runtime/src/types/index.ts +1 -0
  435. package/packages/agent-runtime/src/types/instruction.ts +50 -7
  436. package/packages/agent-runtime/src/types/runtime.ts +7 -0
  437. package/packages/agent-runtime/src/types/state.ts +18 -1
  438. package/packages/const/package.json +1 -1
  439. package/packages/const/src/hotkeys.ts +9 -3
  440. package/packages/const/src/models.ts +4 -2
  441. package/packages/const/src/settings/common.ts +1 -0
  442. package/packages/const/src/settings/tool.ts +1 -5
  443. package/packages/const/src/url.ts +1 -0
  444. package/packages/const/src/user.ts +4 -2
  445. package/packages/const/src/utils/merge.ts +3 -3
  446. package/packages/const/src/version.ts +0 -5
  447. package/packages/context-engine/package.json +2 -2
  448. package/packages/context-engine/src/base/BaseProcessor.ts +13 -13
  449. package/packages/context-engine/src/base/BaseProvider.ts +2 -2
  450. package/packages/context-engine/src/base/__tests__/BaseProcessor.test.ts +5 -5
  451. package/packages/context-engine/src/index.ts +1 -1
  452. package/packages/context-engine/src/processors/GroupMessageFlatten.ts +8 -6
  453. package/packages/context-engine/src/processors/MessageCleanup.ts +7 -6
  454. package/packages/context-engine/src/processors/MessageContent.ts +17 -17
  455. package/packages/context-engine/src/processors/PlaceholderVariables.ts +4 -4
  456. package/packages/context-engine/src/processors/ToolCall.ts +19 -18
  457. package/packages/context-engine/src/processors/ToolMessageReorder.ts +10 -10
  458. package/packages/context-engine/src/processors/__tests__/GroupMessageFlatten.test.ts +12 -12
  459. package/packages/context-engine/src/processors/__tests__/MessageCleanup.test.ts +28 -0
  460. package/packages/context-engine/src/processors/__tests__/ToolCall.test.ts +59 -0
  461. package/packages/context-engine/src/providers/HistorySummary.ts +6 -6
  462. package/packages/context-engine/src/providers/KnowledgeInjector.ts +78 -0
  463. package/packages/context-engine/src/providers/ToolSystemRole.ts +7 -7
  464. package/packages/context-engine/src/providers/index.ts +2 -0
  465. package/packages/context-engine/src/tools/ToolNameResolver.ts +1 -0
  466. package/packages/context-engine/src/tools/ToolsEngine.ts +8 -8
  467. package/packages/context-engine/src/tools/__tests__/ToolNameResolver.test.ts +57 -0
  468. package/packages/context-engine/src/types.ts +36 -35
  469. package/packages/conversation-flow/package.json +13 -0
  470. package/packages/conversation-flow/src/__tests__/fixtures/index.ts +44 -0
  471. package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistant-chain-with-followup.json +56 -0
  472. package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistantGroup/assistant-with-tools.json +145 -0
  473. package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistantGroup/index.ts +8 -0
  474. package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistantGroup/tools-with-branches.json +107 -0
  475. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/active-index-1.json +131 -0
  476. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/assistant-branch.json +96 -0
  477. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/assistant-group-branches.json +249 -0
  478. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/assistant-user-branch.json +123 -0
  479. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/conversation.json +128 -0
  480. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/index.ts +18 -0
  481. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/multi-assistant-group.json +260 -0
  482. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/nested.json +179 -0
  483. package/packages/conversation-flow/src/__tests__/fixtures/inputs/compare/index.ts +8 -0
  484. package/packages/conversation-flow/src/__tests__/fixtures/inputs/compare/simple.json +85 -0
  485. package/packages/conversation-flow/src/__tests__/fixtures/inputs/compare/with-tools.json +169 -0
  486. package/packages/conversation-flow/src/__tests__/fixtures/inputs/index.ts +12 -0
  487. package/packages/conversation-flow/src/__tests__/fixtures/inputs/linear-conversation.json +59 -0
  488. package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistant-chain-with-followup.json +135 -0
  489. package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistantGroup/assistant-with-tools.json +340 -0
  490. package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistantGroup/index.ts +8 -0
  491. package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistantGroup/tools-with-branches.json +261 -0
  492. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/active-index-1.json +246 -0
  493. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/assistant-branch.json +208 -0
  494. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/assistant-group-branches.json +481 -0
  495. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/assistant-user-branch.json +254 -0
  496. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/conversation.json +264 -0
  497. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/index.ts +18 -0
  498. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/multi-assistant-group.json +407 -0
  499. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/nested.json +405 -0
  500. package/packages/conversation-flow/src/__tests__/fixtures/outputs/compare/index.ts +8 -0
  501. package/packages/conversation-flow/src/__tests__/fixtures/outputs/compare/simple.json +224 -0
  502. package/packages/conversation-flow/src/__tests__/fixtures/outputs/compare/with-tools.json +418 -0
  503. package/packages/conversation-flow/src/__tests__/fixtures/outputs/linear-conversation.json +138 -0
  504. package/packages/conversation-flow/src/__tests__/indexing.test.ts +513 -0
  505. package/packages/conversation-flow/src/__tests__/parse.test.ts +132 -0
  506. package/packages/conversation-flow/src/__tests__/structuring.test.ts +600 -0
  507. package/packages/conversation-flow/src/index.ts +17 -0
  508. package/packages/conversation-flow/src/indexing.ts +58 -0
  509. package/packages/conversation-flow/src/parse.ts +97 -0
  510. package/packages/conversation-flow/src/structuring.ts +38 -0
  511. package/packages/conversation-flow/src/transformation/BranchResolver.ts +66 -0
  512. package/packages/conversation-flow/src/transformation/ContextTreeBuilder.ts +292 -0
  513. package/packages/conversation-flow/src/transformation/FlatListBuilder.ts +566 -0
  514. package/packages/conversation-flow/src/transformation/MessageCollector.ts +166 -0
  515. package/packages/conversation-flow/src/transformation/MessageTransformer.ts +177 -0
  516. package/packages/conversation-flow/src/transformation/__tests__/BranchResolver.test.ts +151 -0
  517. package/packages/conversation-flow/src/transformation/__tests__/ContextTreeBuilder.test.ts +385 -0
  518. package/packages/conversation-flow/src/transformation/__tests__/FlatListBuilder.test.ts +511 -0
  519. package/packages/conversation-flow/src/transformation/__tests__/MessageCollector.test.ts +220 -0
  520. package/packages/conversation-flow/src/transformation/__tests__/MessageTransformer.test.ts +286 -0
  521. package/packages/conversation-flow/src/transformation/index.ts +78 -0
  522. package/packages/conversation-flow/src/types/contextTree.ts +65 -0
  523. package/packages/conversation-flow/src/types/flatMessageList.ts +54 -0
  524. package/packages/conversation-flow/src/types/index.ts +25 -0
  525. package/packages/conversation-flow/src/types/shared.ts +63 -0
  526. package/packages/conversation-flow/vitest.config.mts +10 -0
  527. package/packages/database/migrations/0042_improve_agent_index.sql +1 -0
  528. package/packages/database/migrations/0043_add_ai_model_settings.sql +1 -0
  529. package/packages/database/migrations/0044_high_toxin.sql +1 -0
  530. package/packages/database/migrations/0045_add_tool_intervention.sql +1 -0
  531. package/packages/database/migrations/0046_add_parent_id.sql +15 -0
  532. package/packages/database/migrations/0047_add_slug_document.sql +2 -0
  533. package/packages/database/migrations/meta/0039_snapshot.json +1 -1
  534. package/packages/database/migrations/meta/0042_snapshot.json +7800 -0
  535. package/packages/database/migrations/meta/0043_snapshot.json +8419 -0
  536. package/packages/database/migrations/meta/0044_snapshot.json +7813 -0
  537. package/packages/database/migrations/meta/0045_snapshot.json +8431 -0
  538. package/packages/database/migrations/meta/0046_snapshot.json +7879 -0
  539. package/packages/database/migrations/meta/0047_snapshot.json +7907 -0
  540. package/packages/database/migrations/meta/_journal.json +42 -0
  541. package/packages/database/package.json +3 -3
  542. package/packages/database/src/client/db.test.ts +1 -2
  543. package/packages/database/src/client/db.ts +18 -18
  544. package/packages/database/src/client/pglite.ts +1 -1
  545. package/packages/database/src/core/db-adaptor.ts +4 -4
  546. package/packages/database/src/core/electron.ts +1 -1
  547. package/packages/database/src/core/migrations.json +51 -0
  548. package/packages/database/src/core/web-server.ts +2 -1
  549. package/packages/database/src/models/__tests__/agent.test.ts +172 -3
  550. package/packages/database/src/models/__tests__/apiKey.test.ts +444 -0
  551. package/packages/database/src/models/__tests__/asyncTask.test.ts +1 -2
  552. package/packages/database/src/models/__tests__/chunk.test.ts +38 -0
  553. package/packages/database/src/models/__tests__/document.test.ts +149 -0
  554. package/packages/database/src/models/__tests__/file.test.ts +95 -31
  555. package/packages/database/src/models/__tests__/generation.test.ts +1 -2
  556. package/packages/database/src/models/__tests__/generationBatch.test.ts +1 -2
  557. package/packages/database/src/models/__tests__/messages/message.create.test.ts +549 -0
  558. package/packages/database/src/models/__tests__/messages/message.delete.test.ts +481 -0
  559. package/packages/database/src/models/__tests__/messages/message.query.test.ts +1187 -0
  560. package/packages/database/src/models/__tests__/messages/message.stats.test.ts +633 -0
  561. package/packages/database/src/models/__tests__/messages/message.update.test.ts +757 -0
  562. package/packages/database/src/models/__tests__/userMemories.test.ts +1382 -0
  563. package/packages/database/src/models/agent.ts +33 -13
  564. package/packages/database/src/models/aiModel.ts +1 -0
  565. package/packages/database/src/models/aiProvider.ts +7 -7
  566. package/packages/database/src/models/apiKey.ts +2 -2
  567. package/packages/database/src/models/chunk.ts +4 -2
  568. package/packages/database/src/models/document.ts +15 -10
  569. package/packages/database/src/models/drizzleMigration.ts +1 -1
  570. package/packages/database/src/models/file.ts +67 -42
  571. package/packages/database/src/models/message.ts +21 -93
  572. package/packages/database/src/models/oauthHandoff.ts +19 -19
  573. package/packages/database/src/models/session.ts +72 -20
  574. package/packages/database/src/models/topic.ts +10 -10
  575. package/packages/database/src/models/user.ts +2 -1
  576. package/packages/database/src/models/userMemory.ts +993 -0
  577. package/packages/database/src/repositories/aiInfra/index.test.ts +205 -7
  578. package/packages/database/src/repositories/aiInfra/index.ts +9 -8
  579. package/packages/database/src/repositories/dataExporter/index.test.ts +1 -1
  580. package/packages/database/src/repositories/dataImporter/__tests__/index.test.ts +1 -2
  581. package/packages/database/src/repositories/dataImporter/deprecated/__tests__/index.test.ts +3 -2
  582. package/packages/database/src/repositories/dataImporter/deprecated/index.ts +8 -2
  583. package/packages/database/src/repositories/dataImporter/index.ts +11 -12
  584. package/packages/database/src/repositories/knowledge/index.test.ts +300 -0
  585. package/packages/database/src/repositories/knowledge/index.ts +417 -0
  586. package/packages/database/src/repositories/tableViewer/index.test.ts +1 -1
  587. package/packages/database/src/repositories/tableViewer/index.ts +4 -5
  588. package/packages/database/src/schemas/agent.ts +6 -3
  589. package/packages/database/src/schemas/aiInfra.ts +3 -2
  590. package/packages/database/src/schemas/file.ts +85 -0
  591. package/packages/database/src/schemas/index.ts +0 -1
  592. package/packages/database/src/schemas/message.ts +9 -12
  593. package/packages/database/src/schemas/rag.ts +32 -2
  594. package/packages/database/src/schemas/relations.ts +2 -3
  595. package/packages/database/src/schemas/topic.ts +3 -4
  596. package/packages/database/src/schemas/user.ts +1 -1
  597. package/packages/database/src/schemas/userMemories.ts +22 -5
  598. package/packages/database/src/server/models/__tests__/user.test.ts +1 -1
  599. package/packages/database/src/server/models/ragEval/evaluation.ts +1 -1
  600. package/packages/database/src/utils/genWhere.test.ts +243 -0
  601. package/packages/electron-client-ipc/package.json +1 -1
  602. package/packages/electron-client-ipc/src/events/index.ts +6 -1
  603. package/packages/electron-client-ipc/src/events/remoteServer.ts +8 -0
  604. package/packages/electron-client-ipc/src/types/localSystem.ts +30 -2
  605. package/packages/electron-server-ipc/package.json +2 -2
  606. package/packages/electron-server-ipc/src/ipcClient.ts +31 -31
  607. package/packages/electron-server-ipc/src/ipcServer.ts +15 -15
  608. package/packages/fetch-sse/package.json +29 -0
  609. package/packages/fetch-sse/src/__tests__/fetchSSE.test.ts +579 -0
  610. package/packages/fetch-sse/src/__tests__/parseError.test.ts +91 -0
  611. package/packages/fetch-sse/src/fetchSSE.ts +487 -0
  612. package/packages/fetch-sse/src/headers.ts +27 -0
  613. package/packages/fetch-sse/src/parseError.ts +24 -0
  614. package/packages/fetch-sse/src/request.ts +28 -0
  615. package/packages/file-loaders/package.json +3 -3
  616. package/packages/file-loaders/src/loaders/docx/index.ts +1 -1
  617. package/packages/memory-extract/package.json +4 -4
  618. package/packages/model-bank/package.json +1 -0
  619. package/packages/model-bank/src/aiModels/aihubmix.ts +196 -3
  620. package/packages/model-bank/src/aiModels/cometapi.ts +8 -8
  621. package/packages/model-bank/src/aiModels/fal.ts +2 -2
  622. package/packages/model-bank/src/aiModels/google.ts +148 -93
  623. package/packages/model-bank/src/aiModels/index.ts +3 -0
  624. package/packages/model-bank/src/aiModels/infiniai.ts +5 -22
  625. package/packages/model-bank/src/aiModels/mistral.ts +2 -1
  626. package/packages/model-bank/src/aiModels/moonshot.ts +46 -0
  627. package/packages/model-bank/src/aiModels/nebius.ts +1 -1
  628. package/packages/model-bank/src/aiModels/newapi.ts +3 -3
  629. package/packages/model-bank/src/aiModels/novita.ts +3 -2
  630. package/packages/model-bank/src/aiModels/nvidia.ts +14 -0
  631. package/packages/model-bank/src/aiModels/ollamacloud.ts +38 -4
  632. package/packages/model-bank/src/aiModels/openai.ts +113 -42
  633. package/packages/model-bank/src/aiModels/openrouter.ts +1 -0
  634. package/packages/model-bank/src/aiModels/qiniu.ts +126 -0
  635. package/packages/model-bank/src/aiModels/qwen.ts +169 -10
  636. package/packages/model-bank/src/aiModels/siliconcloud.ts +20 -61
  637. package/packages/model-bank/src/aiModels/stepfun.ts +1 -1
  638. package/packages/model-bank/src/aiModels/vercelaigateway.ts +1 -18
  639. package/packages/model-bank/src/aiModels/vertexai.ts +92 -1
  640. package/packages/model-bank/src/aiModels/volcengine.ts +4 -4
  641. package/packages/model-bank/src/aiModels/wenxin.ts +1348 -291
  642. package/packages/model-bank/src/aiModels/xai.ts +85 -6
  643. package/packages/model-bank/src/aiModels/zenmux.ts +1426 -0
  644. package/packages/model-bank/src/aiModels/zhipu.ts +1 -1
  645. package/packages/model-bank/src/const/modelProvider.ts +1 -0
  646. package/packages/model-bank/src/standard-parameters/index.ts +9 -0
  647. package/packages/model-bank/src/types/aiModel.ts +27 -10
  648. package/packages/model-runtime/package.json +3 -3
  649. package/packages/model-runtime/src/core/RouterRuntime/createRuntime.ts +42 -18
  650. package/packages/model-runtime/src/core/contextBuilders/anthropic.test.ts +17 -11
  651. package/packages/model-runtime/src/core/contextBuilders/anthropic.ts +1 -1
  652. package/packages/model-runtime/src/core/contextBuilders/google.test.ts +480 -1
  653. package/packages/model-runtime/src/core/contextBuilders/google.ts +47 -7
  654. package/packages/model-runtime/src/core/contextBuilders/openai.test.ts +93 -7
  655. package/packages/model-runtime/src/core/contextBuilders/openai.ts +47 -14
  656. package/packages/model-runtime/src/core/openaiCompatibleFactory/createImage.test.ts +1 -1
  657. package/packages/model-runtime/src/core/openaiCompatibleFactory/createImage.ts +1 -1
  658. package/packages/model-runtime/src/core/openaiCompatibleFactory/index.test.ts +113 -72
  659. package/packages/model-runtime/src/core/openaiCompatibleFactory/index.ts +132 -106
  660. package/packages/model-runtime/src/core/streams/bedrock/claude.ts +17 -3
  661. package/packages/model-runtime/src/core/streams/google/google-ai.test.ts +1175 -813
  662. package/packages/model-runtime/src/core/streams/google/index.ts +26 -7
  663. package/packages/model-runtime/src/core/streams/ollama.test.ts +67 -0
  664. package/packages/model-runtime/src/core/streams/ollama.ts +5 -5
  665. package/packages/model-runtime/src/core/streams/openai/__snapshots__/responsesStream.test.ts.snap +1007 -0
  666. package/packages/model-runtime/src/core/streams/openai/openai.test.ts +310 -0
  667. package/packages/model-runtime/src/core/streams/openai/openai.ts +67 -0
  668. package/packages/model-runtime/src/core/streams/openai/responsesStream.test.ts +1 -1
  669. package/packages/model-runtime/src/core/streams/protocol.ts +1 -0
  670. package/packages/model-runtime/src/core/streams/vertex-ai.ts +1 -2
  671. package/packages/model-runtime/src/core/usageConverters/index.ts +1 -0
  672. package/packages/model-runtime/src/core/usageConverters/utils/resolveImageSinglePrice.ts +34 -0
  673. package/packages/model-runtime/src/helpers/mergeChatMethodOptions.ts +2 -1
  674. package/packages/model-runtime/src/index.ts +1 -1
  675. package/packages/model-runtime/src/providers/aihubmix/index.test.ts +1 -1
  676. package/packages/model-runtime/src/providers/anthropic/generateObject.test.ts +1 -1
  677. package/packages/model-runtime/src/providers/anthropic/index.test.ts +1 -1
  678. package/packages/model-runtime/src/providers/anthropic/index.ts +1 -38
  679. package/packages/model-runtime/src/providers/anthropic/resolveCacheTTL.ts +44 -0
  680. package/packages/model-runtime/src/providers/azureai/index.ts +34 -2
  681. package/packages/model-runtime/src/providers/baichuan/index.test.ts +1 -1
  682. package/packages/model-runtime/src/providers/bedrock/index.test.ts +128 -12
  683. package/packages/model-runtime/src/providers/bedrock/index.ts +47 -13
  684. package/packages/model-runtime/src/providers/bfl/createImage.test.ts +4 -4
  685. package/packages/model-runtime/src/providers/bfl/createImage.ts +1 -1
  686. package/packages/model-runtime/src/providers/cloudflare/index.test.ts +1 -1
  687. package/packages/model-runtime/src/providers/cohere/index.test.ts +1 -1
  688. package/packages/model-runtime/src/providers/comfyui/__tests__/index.test.ts +1 -2
  689. package/packages/model-runtime/src/providers/comfyui/auth/AuthManager.ts +1 -2
  690. package/packages/model-runtime/src/providers/comfyui/index.ts +2 -7
  691. package/packages/model-runtime/src/providers/deepseek/index.test.ts +86 -0
  692. package/packages/model-runtime/src/providers/deepseek/index.ts +24 -0
  693. package/packages/model-runtime/src/providers/google/createImage.test.ts +8 -7
  694. package/packages/model-runtime/src/providers/google/createImage.ts +14 -9
  695. package/packages/model-runtime/src/providers/google/generateObject.test.ts +1 -1
  696. package/packages/model-runtime/src/providers/google/index.test.ts +98 -5
  697. package/packages/model-runtime/src/providers/google/index.ts +29 -11
  698. package/packages/model-runtime/src/providers/groq/index.test.ts +1 -1
  699. package/packages/model-runtime/src/providers/hunyuan/index.test.ts +1 -1
  700. package/packages/model-runtime/src/providers/minimax/createImage.test.ts +1 -1
  701. package/packages/model-runtime/src/providers/minimax/index.ts +36 -6
  702. package/packages/model-runtime/src/providers/mistral/index.test.ts +1 -1
  703. package/packages/model-runtime/src/providers/moonshot/index.test.ts +1 -1
  704. package/packages/model-runtime/src/providers/moonshot/index.ts +17 -4
  705. package/packages/model-runtime/src/providers/newapi/index.test.ts +3 -75
  706. package/packages/model-runtime/src/providers/newapi/index.ts +1 -14
  707. package/packages/model-runtime/src/providers/novita/__snapshots__/index.test.ts.snap +584 -0
  708. package/packages/model-runtime/src/providers/novita/index.test.ts +1 -1
  709. package/packages/model-runtime/src/providers/ollama/index.test.ts +43 -32
  710. package/packages/model-runtime/src/providers/ollama/index.ts +31 -7
  711. package/packages/model-runtime/src/providers/openai/__snapshots__/index.test.ts.snap +517 -0
  712. package/packages/model-runtime/src/providers/openai/index.test.ts +44 -0
  713. package/packages/model-runtime/src/providers/openrouter/index.test.ts +4 -3
  714. package/packages/model-runtime/src/providers/openrouter/index.ts +1 -1
  715. package/packages/model-runtime/src/providers/perplexity/index.test.ts +1 -1
  716. package/packages/model-runtime/src/providers/ppio/__snapshots__/index.test.ts.snap +27 -0
  717. package/packages/model-runtime/src/providers/ppio/index.test.ts +1 -1
  718. package/packages/model-runtime/src/providers/qwen/createImage.test.ts +1 -1
  719. package/packages/model-runtime/src/providers/search1api/index.test.ts +1 -1
  720. package/packages/model-runtime/src/providers/siliconcloud/createImage.ts +1 -1
  721. package/packages/model-runtime/src/providers/taichu/index.test.ts +1 -1
  722. package/packages/model-runtime/src/providers/wenxin/index.test.ts +1 -1
  723. package/packages/model-runtime/src/providers/wenxin/index.ts +22 -1
  724. package/packages/model-runtime/src/providers/zenmux/index.test.ts +320 -0
  725. package/packages/model-runtime/src/providers/zenmux/index.ts +84 -0
  726. package/packages/model-runtime/src/providers/zhipu/index.test.ts +1 -1
  727. package/packages/model-runtime/src/runtimeMap.ts +2 -0
  728. package/packages/model-runtime/src/types/chat.ts +8 -0
  729. package/packages/model-runtime/src/types/error.ts +11 -8
  730. package/packages/model-runtime/src/types/toolsCalling.ts +3 -1
  731. package/packages/model-runtime/src/utils/errorResponse.test.ts +1 -1
  732. package/packages/model-runtime/src/utils/googleErrorParser.test.ts +125 -0
  733. package/packages/model-runtime/src/utils/googleErrorParser.ts +108 -77
  734. package/packages/model-runtime/src/utils/modelParse.ts +6 -0
  735. package/packages/model-runtime/src/utils/postProcessModelList.ts +15 -13
  736. package/packages/obervability-otel/package.json +15 -15
  737. package/packages/obervability-otel/src/api.ts +2 -0
  738. package/packages/obervability-otel/src/node.ts +17 -7
  739. package/packages/obervability-otel/src/trpc/convention.ts +16 -0
  740. package/packages/obervability-otel/src/trpc/index.test.ts +38 -0
  741. package/packages/obervability-otel/src/trpc/index.ts +62 -0
  742. package/packages/obervability-otel/src/trpc/metrics.ts +31 -0
  743. package/packages/prompts/package.json +1 -1
  744. package/packages/prompts/src/prompts/files/__snapshots__/knowledgeBase.test.ts.snap +103 -0
  745. package/packages/prompts/src/prompts/files/index.ts +3 -0
  746. package/packages/prompts/src/prompts/files/knowledgeBase.test.ts +167 -0
  747. package/packages/prompts/src/prompts/files/knowledgeBase.ts +85 -0
  748. package/packages/prompts/src/prompts/knowledgeBaseQA/__snapshots__/formatFileContents.test.ts.snap +75 -0
  749. package/packages/prompts/src/prompts/knowledgeBaseQA/__snapshots__/formatNoSearchResults.test.ts.snap +45 -0
  750. package/packages/prompts/src/prompts/knowledgeBaseQA/__snapshots__/formatSearchResults.test.ts.snap +82 -0
  751. package/packages/prompts/src/prompts/knowledgeBaseQA/formatFileContents.test.ts +118 -0
  752. package/packages/prompts/src/prompts/knowledgeBaseQA/formatFileContents.ts +31 -0
  753. package/packages/prompts/src/prompts/knowledgeBaseQA/formatNoSearchResults.test.ts +25 -0
  754. package/packages/prompts/src/prompts/knowledgeBaseQA/formatNoSearchResults.ts +13 -0
  755. package/packages/prompts/src/prompts/knowledgeBaseQA/formatSearchResults.test.ts +191 -0
  756. package/packages/prompts/src/prompts/knowledgeBaseQA/formatSearchResults.ts +50 -0
  757. package/packages/prompts/src/prompts/knowledgeBaseQA/index.ts +6 -0
  758. package/packages/ssrf-safe-fetch/index.browser.ts +14 -0
  759. package/packages/ssrf-safe-fetch/package.json +9 -2
  760. package/packages/types/src/agent/chatConfig.ts +19 -8
  761. package/packages/types/src/aiChat.ts +2 -0
  762. package/packages/types/src/aiProvider.ts +1 -1
  763. package/packages/types/src/discover/assistants.ts +16 -0
  764. package/packages/types/src/discover/mcp.ts +6 -0
  765. package/packages/types/src/document/index.ts +50 -38
  766. package/packages/types/src/exportConfig.ts +15 -15
  767. package/packages/types/src/fetch.ts +9 -9
  768. package/packages/types/src/files/index.ts +3 -0
  769. package/packages/types/src/files/list.ts +11 -1
  770. package/packages/types/src/files/upload.ts +1 -1
  771. package/packages/types/src/generation/index.ts +5 -5
  772. package/packages/types/src/hotkey.ts +6 -5
  773. package/packages/types/src/importer.ts +6 -6
  774. package/packages/types/src/index.ts +6 -1
  775. package/packages/types/src/knowledgeBase/index.ts +1 -0
  776. package/packages/types/src/llm.ts +1 -1
  777. package/packages/types/src/message/common/base.ts +2 -2
  778. package/packages/types/src/message/common/metadata.ts +22 -2
  779. package/packages/types/src/message/common/tools.ts +20 -1
  780. package/packages/types/src/message/db/item.ts +15 -1
  781. package/packages/types/src/message/ui/chat.ts +25 -2
  782. package/packages/types/src/message/ui/extra.ts +2 -2
  783. package/packages/types/src/message/ui/params.ts +66 -7
  784. package/packages/types/src/meta.ts +7 -3
  785. package/packages/types/src/openai/chat.ts +15 -15
  786. package/packages/types/src/openai/image.ts +1 -1
  787. package/packages/types/src/plugins/mcp.ts +33 -30
  788. package/packages/types/src/plugins/protocol.ts +43 -43
  789. package/packages/types/src/rag.ts +13 -4
  790. package/packages/types/src/search.ts +4 -4
  791. package/packages/types/src/serverConfig.ts +2 -6
  792. package/packages/types/src/session/agentSession.ts +2 -0
  793. package/packages/types/src/tool/builtin.ts +15 -4
  794. package/packages/types/src/tool/intervention.ts +70 -3
  795. package/packages/types/src/tool/plugin.ts +3 -3
  796. package/packages/types/src/tool/search/index.ts +8 -2
  797. package/packages/types/src/topic/topic.ts +16 -2
  798. package/packages/types/src/usage/usageRecord.ts +54 -0
  799. package/packages/types/src/user/index.ts +2 -76
  800. package/packages/types/src/user/preference.ts +101 -0
  801. package/packages/types/src/user/settings/general.ts +3 -0
  802. package/packages/types/src/user/settings/hotkey.ts +1 -1
  803. package/packages/types/src/user/settings/index.ts +22 -0
  804. package/packages/types/src/user/settings/keyVaults.ts +0 -67
  805. package/packages/types/src/user/settings/tool.ts +2 -39
  806. package/packages/types/src/userMemory/index.ts +3 -0
  807. package/packages/types/src/userMemory/layers.ts +54 -0
  808. package/packages/types/src/userMemory/shared.ts +64 -0
  809. package/packages/types/src/userMemory/tools.ts +240 -0
  810. package/packages/utils/package.json +2 -2
  811. package/packages/utils/src/apiKey.test.ts +139 -0
  812. package/packages/utils/src/client/clipboard.ts +2 -2
  813. package/packages/utils/src/client/exportFile.ts +10 -10
  814. package/packages/utils/src/client/parserPlaceholder.ts +19 -19
  815. package/packages/utils/src/client/topic.ts +10 -10
  816. package/packages/utils/src/client/xor-obfuscation.ts +11 -11
  817. package/packages/utils/src/clientIP.ts +6 -6
  818. package/packages/utils/src/colorUtils.test.ts +167 -0
  819. package/packages/utils/src/compass.ts +11 -11
  820. package/packages/utils/src/compressImage.ts +3 -3
  821. package/packages/utils/src/format.ts +2 -2
  822. package/packages/utils/src/imageToBase64.ts +17 -10
  823. package/packages/utils/src/index.ts +1 -1
  824. package/packages/utils/src/merge.ts +3 -3
  825. package/packages/utils/src/object.ts +3 -3
  826. package/packages/utils/src/sanitizeUTF8.ts +4 -4
  827. package/packages/utils/src/server/__tests__/response.test.ts +79 -0
  828. package/packages/utils/src/server/auth.ts +6 -6
  829. package/packages/utils/src/server/geo.ts +9 -9
  830. package/packages/utils/src/server/index.ts +1 -0
  831. package/packages/utils/src/server/response.ts +110 -0
  832. package/packages/utils/src/server/validateRedirectHost.test.ts +352 -0
  833. package/packages/utils/src/server/xor.ts +7 -7
  834. package/packages/utils/src/time.ts +4 -0
  835. package/packages/utils/src/tokenizer/index.ts +3 -11
  836. package/packages/utils/src/toolManifest.ts +4 -4
  837. package/packages/utils/src/trace.test.ts +359 -0
  838. package/packages/utils/src/uriParser.ts +4 -4
  839. package/packages/web-crawler/package.json +2 -2
  840. package/packages/web-crawler/src/crawImpl/browserless.ts +1 -1
  841. package/packages/web-crawler/src/crawImpl/naive.ts +9 -9
  842. package/packages/web-crawler/src/crawler.ts +5 -5
  843. package/packages/web-crawler/src/type.ts +4 -4
  844. package/packages/web-crawler/src/urlRules.ts +13 -13
  845. package/packages/web-crawler/src/utils/appUrlRules.ts +5 -5
  846. package/packages/web-crawler/tsconfig.json +0 -1
  847. package/renovate.json +40 -1
  848. package/scripts/checkConsoleLog.mts +148 -0
  849. package/scripts/migrateServerDB/errorHint.js +1 -7
  850. package/scripts/prebuild.mts +20 -10
  851. package/src/app/(backend)/api/webhooks/clerk/route.ts +1 -2
  852. package/src/app/(backend)/f/[id]/route.ts +55 -0
  853. package/src/app/(backend)/market/agent/[[...segments]]/route.ts +153 -0
  854. package/src/app/(backend)/market/oidc/[[...segments]]/route.ts +207 -0
  855. package/src/app/(backend)/middleware/auth/index.ts +8 -4
  856. package/src/app/(backend)/trpc/async/[trpc]/route.ts +9 -3
  857. package/src/app/(backend)/trpc/desktop/[trpc]/route.ts +15 -9
  858. package/src/app/(backend)/trpc/lambda/[trpc]/route.ts +9 -3
  859. package/src/app/(backend)/trpc/mobile/[trpc]/route.ts +9 -3
  860. package/src/app/(backend)/trpc/tools/[trpc]/route.ts +9 -3
  861. package/src/app/(backend)/webapi/chat/[provider]/route.ts +1 -1
  862. package/src/app/(backend)/webapi/models/[provider]/pull/route.ts +1 -1
  863. package/src/app/(backend)/webapi/models/[provider]/route.ts +1 -1
  864. package/src/app/(backend)/webapi/stt/openai/route.ts +0 -2
  865. package/src/app/(backend)/webapi/text-to-image/[provider]/route.ts +1 -1
  866. package/src/app/(backend)/webapi/tts/edge/route.ts +8 -2
  867. package/src/app/(backend)/webapi/tts/microsoft/route.ts +8 -2
  868. package/src/app/(backend)/webapi/tts/openai/route.ts +15 -3
  869. package/src/app/[variants]/(auth)/signup/[[...signup]]/page.tsx +1 -8
  870. package/src/app/[variants]/(main)/(mobile)/me/(home)/__tests__/UserBanner.test.tsx +7 -4
  871. package/src/app/[variants]/(main)/(mobile)/me/(home)/__tests__/useCategory.test.tsx +13 -24
  872. package/src/app/[variants]/(main)/(mobile)/me/(home)/features/UserBanner.tsx +7 -11
  873. package/src/app/[variants]/(main)/(mobile)/me/(home)/features/useCategory.tsx +9 -41
  874. package/src/app/[variants]/(main)/(mobile)/me/(home)/index.tsx +25 -0
  875. package/src/app/[variants]/(main)/(mobile)/me/(home)/layout.tsx +13 -18
  876. package/src/app/[variants]/(main)/(mobile)/me/profile/features/Category.tsx +22 -27
  877. package/src/app/[variants]/(main)/(mobile)/me/profile/features/Header.tsx +3 -3
  878. package/src/app/[variants]/(main)/(mobile)/me/profile/index.tsx +16 -0
  879. package/src/app/[variants]/(main)/(mobile)/me/profile/layout.tsx +9 -11
  880. package/src/app/[variants]/(main)/(mobile)/me/settings/features/Header.tsx +3 -3
  881. package/src/app/[variants]/(main)/(mobile)/me/settings/features/useCategory.tsx +8 -18
  882. package/src/app/[variants]/(main)/(mobile)/me/settings/index.tsx +16 -0
  883. package/src/app/[variants]/(main)/(mobile)/me/settings/layout.tsx +15 -13
  884. package/src/app/[variants]/(main)/changelog/_layout/Desktop/index.tsx +6 -5
  885. package/src/app/[variants]/(main)/changelog/_layout/Mobile/Header.tsx +3 -3
  886. package/src/app/[variants]/(main)/changelog/_layout/Mobile/index.tsx +5 -5
  887. package/src/app/[variants]/(main)/changelog/features/Post.tsx +7 -4
  888. package/src/app/[variants]/(main)/changelog/index.tsx +55 -0
  889. package/src/app/[variants]/(main)/chat/_layout/Desktop/SessionPanel.tsx +12 -7
  890. package/src/app/[variants]/(main)/chat/_layout/Desktop/index.tsx +7 -10
  891. package/src/app/[variants]/(main)/chat/_layout/FeatureFlagsProvider.tsx +24 -0
  892. package/src/app/[variants]/(main)/chat/_layout/Mobile.tsx +6 -9
  893. package/src/app/[variants]/(main)/chat/_layout/type.ts +0 -1
  894. package/src/app/[variants]/(main)/chat/components/ConversationArea.tsx +29 -0
  895. package/src/app/[variants]/(main)/chat/components/PortalPanel.tsx +28 -0
  896. package/src/app/[variants]/(main)/chat/components/SessionPanel.tsx +33 -0
  897. package/src/app/[variants]/(main)/chat/components/TopicSidebar.tsx +30 -0
  898. package/src/app/[variants]/(main)/chat/components/WorkspaceLayout.tsx +60 -0
  899. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatHydration/index.tsx +42 -0
  900. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/ClassicChat.tsx +81 -0
  901. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/GroupChat.tsx +126 -0
  902. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/MessageFromUrl.tsx +30 -0
  903. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/Desktop/index.tsx +16 -0
  904. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/V1Mobile/index.tsx +89 -0
  905. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/V1Mobile/useSend.ts +109 -0
  906. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatInput/useSend.ts +322 -0
  907. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/ChatItem/Thread.tsx +62 -0
  908. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/ChatItem/index.tsx +85 -0
  909. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/Content.tsx +45 -0
  910. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/WelcomeChatItem/AgentWelcome/OpeningQuestions.tsx +75 -0
  911. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/WelcomeChatItem/GroupWelcome/GroupUsageSuggest.tsx +164 -0
  912. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatList/index.tsx +28 -0
  913. package/src/app/[variants]/(main)/chat/components/conversation/features/ChatMinimap/index.tsx +380 -0
  914. package/src/app/[variants]/(main)/chat/components/conversation/features/ThreadHydration.tsx +45 -0
  915. package/src/app/[variants]/(main)/chat/components/topic/features/Topic/TopicListContent/TopicItem/TopicContent.tsx +250 -0
  916. package/src/app/[variants]/(main)/chat/components/topic/features/Topic/TopicListContent/TopicItem/index.tsx +111 -0
  917. package/src/app/[variants]/(main)/chat/features/PageTitle/index.tsx +1 -2
  918. package/src/app/[variants]/(main)/chat/index.tsx +29 -0
  919. package/src/app/[variants]/(main)/chat/session/features/SessionHydration.tsx +47 -0
  920. package/src/app/[variants]/(main)/chat/session/features/SessionListContent/Inbox/index.tsx +61 -0
  921. package/src/app/[variants]/(main)/chat/session/features/SessionListContent/List/Item/Actions.tsx +204 -0
  922. package/src/app/[variants]/(main)/chat/session/features/SessionListContent/List/Item/index.tsx +157 -0
  923. package/src/app/[variants]/(main)/chat/session/features/SessionListContent/List/index.tsx +100 -0
  924. package/src/app/[variants]/(main)/chat/session/layout/Mobile/SessionHeader.tsx +44 -0
  925. package/src/app/[variants]/(main)/chat/settings/_layout/Desktop/Header.tsx +3 -3
  926. package/src/app/[variants]/(main)/chat/settings/_layout/Mobile/Header.tsx +3 -3
  927. package/src/app/[variants]/(main)/chat/settings/features/AgentInfoDescription/index.tsx +349 -0
  928. package/src/app/[variants]/(main)/chat/settings/features/HeaderContent.tsx +3 -63
  929. package/src/app/[variants]/(main)/chat/settings/features/PublishResultModal/index.tsx +64 -0
  930. package/src/app/[variants]/(main)/chat/settings/features/SmartAgentActionButton/MarketPublishButton.tsx +196 -0
  931. package/src/app/[variants]/(main)/chat/settings/features/SmartAgentActionButton/MarketPublishModal.tsx +358 -0
  932. package/src/app/[variants]/(main)/chat/settings/features/SmartAgentActionButton/index.tsx +75 -0
  933. package/src/app/[variants]/(main)/chat/settings/index.tsx +65 -0
  934. package/src/app/[variants]/(main)/components/Link.tsx +21 -0
  935. package/src/app/[variants]/(main)/discover/(detail)/_layout/Desktop/index.tsx +38 -0
  936. package/src/app/[variants]/(main)/discover/(detail)/_layout/Mobile/index.tsx +3 -3
  937. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Capabilities/Block.tsx +27 -0
  938. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Nav.tsx +129 -0
  939. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Overview/TagList.tsx +56 -0
  940. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Overview/index.tsx +98 -0
  941. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Related/index.tsx +40 -0
  942. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/SystemRole/TagList.tsx +56 -0
  943. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/SystemRole/index.tsx +68 -0
  944. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/Versions/index.tsx +137 -0
  945. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Details/index.tsx +51 -0
  946. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Header.tsx +176 -0
  947. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Sidebar/ActionButton/AddAgent.tsx +178 -0
  948. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Sidebar/ActionButton/index.tsx +31 -0
  949. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Sidebar/Related/index.tsx +57 -0
  950. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/Sidebar/TocList/index.tsx +77 -0
  951. package/src/app/[variants]/(main)/discover/(detail)/assistant/features/StatusPage/index.tsx +113 -0
  952. package/src/app/[variants]/(main)/discover/(detail)/assistant/index.tsx +63 -0
  953. package/src/app/[variants]/(main)/discover/(detail)/features/Breadcrumb.tsx +4 -3
  954. package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Details/Related/index.tsx +32 -0
  955. package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Details/Versions/index.tsx +76 -0
  956. package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Details/index.tsx +59 -0
  957. package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Sidebar/Related/index.tsx +44 -0
  958. package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Sidebar/ServerConfig.tsx +36 -0
  959. package/src/app/[variants]/(main)/discover/(detail)/mcp/features/Sidebar/TocList/index.tsx +98 -0
  960. package/src/app/[variants]/(main)/discover/(detail)/mcp/index.tsx +59 -0
  961. package/src/app/[variants]/(main)/discover/(detail)/mcp/loading.tsx +1 -0
  962. package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/Overview/index.tsx +22 -0
  963. package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/Parameter/ParameterItem.tsx +71 -0
  964. package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/Related/index.tsx +31 -0
  965. package/src/app/[variants]/(main)/discover/(detail)/model/features/Details/index.tsx +47 -0
  966. package/src/app/[variants]/(main)/discover/(detail)/model/features/Header.tsx +112 -0
  967. package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/ActionButton/ChatWithModel.tsx +92 -0
  968. package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/ActionButton/index.tsx +32 -0
  969. package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/Related/index.tsx +43 -0
  970. package/src/app/[variants]/(main)/discover/(detail)/model/features/Sidebar/RelatedProviders/index.tsx +34 -0
  971. package/src/app/[variants]/(main)/discover/(detail)/model/index.tsx +51 -0
  972. package/src/app/[variants]/(main)/discover/(detail)/model/loading.tsx +1 -0
  973. package/src/app/[variants]/(main)/discover/(detail)/provider/features/Details/Related/index.tsx +22 -0
  974. package/src/app/[variants]/(main)/discover/(detail)/provider/features/Details/index.tsx +47 -0
  975. package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/ActionButton/ProviderConfig.tsx +91 -0
  976. package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/ActionButton/index.tsx +45 -0
  977. package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/Related/index.tsx +34 -0
  978. package/src/app/[variants]/(main)/discover/(detail)/provider/features/Sidebar/RelatedModels/index.tsx +43 -0
  979. package/src/app/[variants]/(main)/discover/(detail)/provider/index.tsx +51 -0
  980. package/src/app/[variants]/(main)/discover/(detail)/provider/loading.tsx +1 -0
  981. package/src/app/[variants]/(main)/discover/(list)/(home)/index.tsx +59 -0
  982. package/src/app/[variants]/(main)/discover/(list)/_layout/Desktop/Nav.tsx +5 -4
  983. package/src/app/[variants]/(main)/discover/(list)/_layout/Desktop/index.tsx +4 -3
  984. package/src/app/[variants]/(main)/discover/(list)/_layout/Mobile/Nav.tsx +3 -4
  985. package/src/app/[variants]/(main)/discover/(list)/_layout/Mobile/index.tsx +4 -3
  986. package/src/app/[variants]/(main)/discover/(list)/assistant/Client.tsx +6 -2
  987. package/src/app/[variants]/(main)/discover/(list)/assistant/_layout/Desktop.tsx +3 -4
  988. package/src/app/[variants]/(main)/discover/(list)/assistant/_layout/Mobile.tsx +3 -3
  989. package/src/app/[variants]/(main)/discover/(list)/assistant/features/Category/index.tsx +8 -4
  990. package/src/app/[variants]/(main)/discover/(list)/assistant/features/List/Item.tsx +13 -2
  991. package/src/app/[variants]/(main)/discover/(list)/assistant/features/MarketSourceSwitch.tsx +64 -0
  992. package/src/app/[variants]/(main)/discover/(list)/assistant/index.tsx +61 -0
  993. package/src/app/[variants]/(main)/discover/(list)/features/Pagination.tsx +2 -1
  994. package/src/app/[variants]/(main)/discover/(list)/features/SortButton/index.tsx +29 -10
  995. package/src/app/[variants]/(main)/discover/(list)/mcp/_layout/Desktop.tsx +3 -3
  996. package/src/app/[variants]/(main)/discover/(list)/mcp/_layout/Mobile.tsx +3 -3
  997. package/src/app/[variants]/(main)/discover/(list)/mcp/features/Category/index.tsx +1 -1
  998. package/src/app/[variants]/(main)/discover/(list)/mcp/features/List/Item.tsx +2 -1
  999. package/src/app/[variants]/(main)/discover/(list)/mcp/index.tsx +51 -0
  1000. package/src/app/[variants]/(main)/discover/(list)/model/_layout/Desktop.tsx +3 -3
  1001. package/src/app/[variants]/(main)/discover/(list)/model/_layout/Mobile.tsx +3 -3
  1002. package/src/app/[variants]/(main)/discover/(list)/model/features/Category/index.tsx +1 -1
  1003. package/src/app/[variants]/(main)/discover/(list)/model/features/List/Item.tsx +2 -1
  1004. package/src/app/[variants]/(main)/discover/(list)/model/index.tsx +51 -0
  1005. package/src/app/[variants]/(main)/discover/(list)/provider/features/List/Item.tsx +2 -1
  1006. package/src/app/[variants]/(main)/discover/(list)/provider/index.tsx +50 -0
  1007. package/src/app/[variants]/(main)/discover/_layout/Desktop/index.tsx +4 -4
  1008. package/src/app/[variants]/(main)/discover/_layout/Mobile/index.tsx +3 -3
  1009. package/src/app/[variants]/(main)/discover/components/CategoryMenu.tsx +9 -1
  1010. package/src/app/[variants]/(main)/discover/components/Title.tsx +1 -1
  1011. package/src/app/[variants]/(main)/discover/features/Search.tsx +2 -2
  1012. package/src/app/[variants]/(main)/discover/features/useNav.tsx +11 -12
  1013. package/src/app/[variants]/(main)/hooks/useActiveTabKey.ts +40 -0
  1014. package/src/app/[variants]/(main)/hooks/usePathname.ts +10 -0
  1015. package/src/app/[variants]/(main)/hooks/useQuery.ts +12 -0
  1016. package/src/app/[variants]/(main)/hooks/useRouter.ts +22 -0
  1017. package/src/app/[variants]/(main)/hooks/useSearchParams.ts +11 -0
  1018. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ModelSelect/ImageModelItem.tsx +108 -0
  1019. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ModelSelect/index.tsx +162 -0
  1020. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ResolutionSelect.tsx +88 -0
  1021. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/index.tsx +9 -0
  1022. package/src/app/[variants]/(main)/image/@topic/features/Topics/TopicList.tsx +1 -0
  1023. package/src/app/[variants]/(main)/image/@topic/features/Topics/TopicUrlSync.tsx +1 -1
  1024. package/src/app/[variants]/(main)/image/ComingSoon.tsx +15 -0
  1025. package/src/app/[variants]/(main)/image/_layout/Desktop/index.tsx +5 -2
  1026. package/src/app/[variants]/(main)/image/_layout/DesktopWrapper.tsx +15 -0
  1027. package/src/app/[variants]/(main)/image/_layout/Mobile/index.tsx +3 -1
  1028. package/src/app/[variants]/(main)/image/features/ImageWorkspace/index.tsx +1 -2
  1029. package/src/app/[variants]/(main)/image/features/PromptInput/index.tsx +1 -1
  1030. package/src/app/[variants]/(main)/image/index.tsx +18 -0
  1031. package/src/app/[variants]/(main)/knowledge/_layout/Desktop.tsx +17 -0
  1032. package/src/app/[variants]/(main)/knowledge/_layout/Mobile.tsx +17 -0
  1033. package/src/app/[variants]/(main)/knowledge/components/KnowledgeBaseItem/index.tsx +1 -3
  1034. package/src/app/[variants]/(main)/knowledge/components/modal/ModalPageClient.tsx +4 -4
  1035. package/src/app/[variants]/(main)/knowledge/hooks/useFileCategory.ts +6 -3
  1036. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/index.tsx +7 -10
  1037. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/CategoryMenu.tsx +35 -0
  1038. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/Head.tsx +1 -1
  1039. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/Menu.tsx +2 -2
  1040. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/index.tsx +40 -18
  1041. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/layout/Container.tsx +1 -1
  1042. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/menu/CategoryMenu.tsx +148 -0
  1043. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/menu/KnowledgeBase.tsx +21 -8
  1044. package/src/app/[variants]/(main)/labs/components/LabCard.tsx +8 -6
  1045. package/src/app/[variants]/(main)/labs/index.tsx +74 -0
  1046. package/src/app/[variants]/(main)/layouts/desktop/DesktopLayoutContainer.tsx +30 -0
  1047. package/src/app/[variants]/(main)/layouts/desktop/SideBar/BottomActions.tsx +46 -0
  1048. package/src/app/[variants]/(main)/layouts/desktop/SideBar/PinList/index.tsx +128 -0
  1049. package/src/app/[variants]/(main)/layouts/desktop/SideBar/TopActions.test.tsx +141 -0
  1050. package/src/app/[variants]/(main)/layouts/desktop/SideBar/TopActions.tsx +116 -0
  1051. package/src/app/[variants]/(main)/layouts/desktop/index.tsx +73 -0
  1052. package/src/app/[variants]/(main)/layouts/index.tsx +11 -0
  1053. package/src/app/[variants]/(main)/layouts/mobile/NavBar.tsx +88 -0
  1054. package/src/app/[variants]/(main)/layouts/mobile/index.tsx +46 -0
  1055. package/src/app/[variants]/(main)/profile/(home)/desktop.tsx +26 -0
  1056. package/src/app/[variants]/(main)/profile/(home)/index.tsx +26 -0
  1057. package/src/app/[variants]/(main)/profile/@category/features/CategoryContent.tsx +5 -7
  1058. package/src/app/[variants]/(main)/profile/_layout/Desktop/index.tsx +20 -20
  1059. package/src/app/[variants]/(main)/profile/_layout/DesktopWrapper.tsx +14 -0
  1060. package/src/app/[variants]/(main)/profile/_layout/Mobile/Header.tsx +3 -3
  1061. package/src/app/[variants]/(main)/profile/_layout/Mobile/index.tsx +8 -11
  1062. package/src/app/[variants]/(main)/profile/apikey/index.tsx +18 -0
  1063. package/src/app/[variants]/(main)/profile/hooks/useCategory.tsx +24 -18
  1064. package/src/app/[variants]/(main)/profile/security/index.tsx +29 -0
  1065. package/src/app/[variants]/(main)/profile/stats/features/AssistantsRank.tsx +4 -4
  1066. package/src/app/[variants]/(main)/profile/stats/features/ShareButton/Preview.tsx +2 -14
  1067. package/src/app/[variants]/(main)/profile/stats/features/TopicsRank.tsx +4 -4
  1068. package/src/app/[variants]/(main)/profile/stats/index.tsx +20 -0
  1069. package/src/app/[variants]/(main)/profile/usage/Client.tsx +114 -0
  1070. package/src/app/[variants]/(main)/profile/usage/features/UsageCards/ActiveModels/ModelTable.tsx +175 -0
  1071. package/src/app/[variants]/(main)/profile/usage/features/UsageCards/ActiveModels/index.tsx +126 -0
  1072. package/src/app/[variants]/(main)/profile/usage/features/UsageCards/MonthSpend.tsx +53 -0
  1073. package/src/app/[variants]/(main)/profile/usage/features/UsageCards/TodaySpend.tsx +67 -0
  1074. package/src/app/[variants]/(main)/profile/usage/features/UsageCards/index.tsx +19 -0
  1075. package/src/app/[variants]/(main)/profile/usage/features/UsageTable.tsx +143 -0
  1076. package/src/app/[variants]/(main)/profile/usage/features/UsageTrends.tsx +107 -0
  1077. package/src/app/[variants]/(main)/profile/usage/features/components/UsageBarChart.tsx +48 -0
  1078. package/src/app/[variants]/(main)/profile/usage/index.tsx +13 -0
  1079. package/src/app/[variants]/(main)/settings/_layout/Desktop/Header.tsx +2 -2
  1080. package/src/app/[variants]/(main)/settings/_layout/Desktop/index.tsx +45 -11
  1081. package/src/app/[variants]/(main)/settings/_layout/DesktopWrapper.tsx +23 -0
  1082. package/src/app/[variants]/(main)/settings/_layout/Mobile/Header.tsx +8 -7
  1083. package/src/app/[variants]/(main)/settings/_layout/Mobile/index.tsx +2 -7
  1084. package/src/app/[variants]/(main)/settings/_layout/MobileWrapper.tsx +23 -0
  1085. package/src/app/[variants]/(main)/settings/_layout/SettingsContent.tsx +1 -12
  1086. package/src/app/[variants]/(main)/settings/_layout/type.ts +0 -1
  1087. package/src/app/[variants]/(main)/settings/agent/AgentMenu/Menu.tsx +2 -4
  1088. package/src/app/[variants]/(main)/settings/agent/index.tsx +13 -14
  1089. package/src/app/[variants]/(main)/settings/common/features/Common/Common.tsx +23 -1
  1090. package/src/app/[variants]/(main)/settings/common/index.tsx +1 -1
  1091. package/src/app/[variants]/(main)/settings/hooks/useCategory.tsx +8 -16
  1092. package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/Card.tsx +9 -4
  1093. package/src/app/[variants]/(main)/settings/provider/(list)/ProviderGrid/index.tsx +16 -4
  1094. package/src/app/[variants]/(main)/settings/provider/(list)/index.tsx +15 -3
  1095. package/src/app/[variants]/(main)/settings/provider/ProviderMenu/All.tsx +2 -2
  1096. package/src/app/[variants]/(main)/settings/provider/ProviderMenu/Item.tsx +2 -2
  1097. package/src/app/[variants]/(main)/settings/provider/ProviderMenu/List.tsx +97 -7
  1098. package/src/app/[variants]/(main)/settings/provider/ProviderMenu/SearchResult.tsx +5 -5
  1099. package/src/app/[variants]/(main)/settings/provider/_layout/Desktop/Container.tsx +10 -4
  1100. package/src/app/[variants]/(main)/settings/provider/_layout/Mobile.tsx +2 -2
  1101. package/src/app/[variants]/(main)/settings/provider/detail/azure/index.tsx +6 -8
  1102. package/src/app/[variants]/(main)/settings/provider/detail/azureai/index.tsx +1 -1
  1103. package/src/app/[variants]/(main)/settings/provider/detail/bedrock/index.tsx +1 -1
  1104. package/src/app/[variants]/(main)/settings/provider/detail/cloudflare/index.tsx +1 -1
  1105. package/src/app/[variants]/(main)/settings/provider/detail/comfyui/index.tsx +1 -1
  1106. package/src/app/[variants]/(main)/settings/provider/detail/github/index.tsx +1 -1
  1107. package/src/app/[variants]/(main)/settings/provider/detail/index.tsx +36 -14
  1108. package/src/app/[variants]/(main)/settings/provider/detail/vertexai/index.tsx +1 -1
  1109. package/src/app/[variants]/(main)/settings/provider/features/CreateNewProvider/index.tsx +22 -9
  1110. package/src/app/[variants]/(main)/settings/provider/features/ModelList/DisabledModels.tsx +144 -8
  1111. package/src/app/[variants]/(main)/settings/provider/features/ModelList/ModelItem.tsx +69 -97
  1112. package/src/app/[variants]/(main)/settings/provider/features/ProviderConfig/UpdateProviderInfo/SettingModal.tsx +3 -3
  1113. package/src/app/[variants]/(main)/settings/provider/features/ProviderConfig/index.tsx +4 -8
  1114. package/src/app/[variants]/(main)/settings/provider/features/customProviderSdkOptions.ts +1 -0
  1115. package/src/app/[variants]/(main)/settings/storage/index.tsx +1 -9
  1116. package/src/app/[variants]/(main)/settings/system-agent/index.tsx +1 -2
  1117. package/src/app/[variants]/DesktopClientRouter.tsx +20 -0
  1118. package/src/app/[variants]/DesktopRouter.tsx +20 -0
  1119. package/src/app/[variants]/MobileClientRouter.tsx +20 -0
  1120. package/src/app/[variants]/MobileRouter.tsx +20 -0
  1121. package/src/app/[variants]/desktopRouter.config.tsx +502 -0
  1122. package/src/app/[variants]/layout.tsx +1 -3
  1123. package/src/app/[variants]/loaders/routeParams.ts +45 -0
  1124. package/src/app/[variants]/loading/Server/Redirect.tsx +1 -1
  1125. package/src/app/[variants]/loading/index.tsx +1 -10
  1126. package/src/app/[variants]/mobileRouter.config.tsx +546 -0
  1127. package/src/app/[variants]/oauth/ResultLayout.tsx +47 -0
  1128. package/src/app/[variants]/oauth/callback/error/page.tsx +20 -33
  1129. package/src/app/[variants]/oauth/callback/layout.tsx +1 -0
  1130. package/src/app/[variants]/oauth/callback/success/page.tsx +8 -22
  1131. package/src/app/[variants]/oauth/consent/[uid]/Consent/BuiltinConsent.tsx +47 -0
  1132. package/src/app/[variants]/oauth/consent/[uid]/Consent/index.tsx +198 -0
  1133. package/src/app/[variants]/oauth/consent/[uid]/Login.tsx +19 -4
  1134. package/src/app/[variants]/page.tsx +18 -6
  1135. package/src/app/desktop/devtools/page.tsx +1 -1
  1136. package/src/app/desktop/layout.tsx +1 -1
  1137. package/src/app/market-auth-callback/layout.tsx +39 -0
  1138. package/src/app/market-auth-callback/page.tsx +196 -0
  1139. package/src/components/Analytics/MainInterfaceTracker.tsx +2 -2
  1140. package/src/components/BootErrorBoundary/index.tsx +129 -0
  1141. package/src/components/FileIcon/index.tsx +1 -1
  1142. package/src/components/InvalidAPIKey/APIKeyForm/Bedrock.tsx +9 -14
  1143. package/src/components/InvalidAPIKey/APIKeyForm/ComfyUIForm.tsx +1 -1
  1144. package/src/components/InvalidAPIKey/APIKeyForm/ProviderApiKeyForm.tsx +1 -1
  1145. package/src/components/InvalidAPIKey/APIKeyForm/__tests__/ComfyUIForm.test.tsx +1 -1
  1146. package/src/components/InvalidAPIKey/APIKeyForm/useApiKey.ts +0 -12
  1147. package/src/components/InvalidAPIKey/index.tsx +1 -1
  1148. package/src/components/Link.tsx +12 -0
  1149. package/src/components/ModelSelect/NewModelBadge.tsx +23 -0
  1150. package/src/components/ModelSelect/index.tsx +4 -0
  1151. package/src/components/Skeleton/SkeletonSwitch.tsx +13 -0
  1152. package/src/components/Skeleton/index.ts +2 -0
  1153. package/src/components/mdx/constants.ts +1 -0
  1154. package/src/config/db.ts +0 -5
  1155. package/src/config/featureFlags/schema.test.ts +1 -5
  1156. package/src/config/featureFlags/schema.ts +0 -9
  1157. package/src/config/modelProviders/ai21.ts +1 -16
  1158. package/src/config/modelProviders/ai302.ts +1 -128
  1159. package/src/config/modelProviders/ai360.ts +1 -32
  1160. package/src/config/modelProviders/aihubmix.ts +1 -0
  1161. package/src/config/modelProviders/anthropic.ts +1 -71
  1162. package/src/config/modelProviders/azure.ts +1 -51
  1163. package/src/config/modelProviders/baichuan.ts +1 -57
  1164. package/src/config/modelProviders/bedrock.ts +1 -276
  1165. package/src/config/modelProviders/cloudflare.ts +1 -64
  1166. package/src/config/modelProviders/deepseek.ts +1 -19
  1167. package/src/config/modelProviders/fireworksai.ts +1 -174
  1168. package/src/config/modelProviders/giteeai.ts +1 -135
  1169. package/src/config/modelProviders/github.ts +1 -254
  1170. package/src/config/modelProviders/google.ts +1 -130
  1171. package/src/config/modelProviders/groq.ts +1 -119
  1172. package/src/config/modelProviders/higress.ts +1 -1713
  1173. package/src/config/modelProviders/huggingface.ts +1 -54
  1174. package/src/config/modelProviders/hunyuan.ts +1 -83
  1175. package/src/config/modelProviders/index.ts +3 -0
  1176. package/src/config/modelProviders/infiniai.ts +1 -74
  1177. package/src/config/modelProviders/internlm.ts +1 -20
  1178. package/src/config/modelProviders/mistral.ts +1 -95
  1179. package/src/config/modelProviders/modelscope.ts +1 -27
  1180. package/src/config/modelProviders/moonshot.ts +1 -29
  1181. package/src/config/modelProviders/newapi.ts +1 -0
  1182. package/src/config/modelProviders/novita.ts +1 -105
  1183. package/src/config/modelProviders/ollama.ts +1 -325
  1184. package/src/config/modelProviders/openai.ts +1 -242
  1185. package/src/config/modelProviders/openrouter.ts +1 -240
  1186. package/src/config/modelProviders/perplexity.ts +1 -45
  1187. package/src/config/modelProviders/ppio.ts +1 -152
  1188. package/src/config/modelProviders/qiniu.ts +1 -18
  1189. package/src/config/modelProviders/qwen.ts +1 -245
  1190. package/src/config/modelProviders/search1api.ts +1 -34
  1191. package/src/config/modelProviders/sensenova.ts +1 -69
  1192. package/src/config/modelProviders/siliconcloud.ts +1 -417
  1193. package/src/config/modelProviders/spark.ts +1 -59
  1194. package/src/config/modelProviders/stepfun.ts +1 -98
  1195. package/src/config/modelProviders/taichu.ts +1 -18
  1196. package/src/config/modelProviders/togetherai.ts +1 -274
  1197. package/src/config/modelProviders/upstage.ts +1 -28
  1198. package/src/config/modelProviders/wenxin.ts +3 -143
  1199. package/src/config/modelProviders/xai.ts +1 -38
  1200. package/src/config/modelProviders/zenmux.ts +21 -0
  1201. package/src/config/modelProviders/zeroone.ts +1 -81
  1202. package/src/config/modelProviders/zhipu.ts +1 -108
  1203. package/src/envs/__tests__/app.test.ts +47 -13
  1204. package/src/envs/app.ts +13 -9
  1205. package/src/envs/llm.ts +6 -0
  1206. package/src/features/AgentSetting/AgentPrompt/TokenTag.tsx +3 -2
  1207. package/src/features/AgentSetting/AgentTTS/SelectWithTTSPreview.tsx +1 -1
  1208. package/src/features/AgentSetting/store/action.ts +1 -1
  1209. package/src/features/ChangelogModal/index.tsx +3 -3
  1210. package/src/features/ChatInput/ActionBar/Knowledge/index.tsx +4 -5
  1211. package/src/features/ChatInput/ActionBar/Model/ControlsForm.tsx +23 -0
  1212. package/src/features/ChatInput/ActionBar/Model/GPT51ReasoningEffortSlider.tsx +58 -0
  1213. package/src/features/ChatInput/ActionBar/Model/ThinkingLevelSlider.tsx +56 -0
  1214. package/src/features/ChatInput/ActionBar/STT/browser.tsx +6 -6
  1215. package/src/features/ChatInput/ActionBar/STT/openai.tsx +6 -6
  1216. package/src/features/ChatInput/ActionBar/Search/index.tsx +5 -7
  1217. package/src/features/ChatInput/ActionBar/Token/TokenTag.tsx +4 -4
  1218. package/src/features/ChatInput/ActionBar/Token/TokenTagForGroupChat.tsx +2 -2
  1219. package/src/features/ChatInput/ActionBar/Upload/index.tsx +1 -3
  1220. package/src/features/ChatInput/ActionBar/components/ActionDropdown.tsx +2 -17
  1221. package/src/features/ChatInput/ActionBar/index.tsx +2 -2
  1222. package/src/features/ChatInput/InputEditor/index.tsx +2 -2
  1223. package/src/features/ChatItem/components/MessageContent.tsx +4 -1
  1224. package/src/features/ChatItem/components/Title.tsx +20 -16
  1225. package/src/features/ChatItem/style.ts +4 -0
  1226. package/src/features/ChatList/Error/ChatInvalidApiKey.tsx +39 -0
  1227. package/src/features/ChatList/Error/ClerkLogin/index.tsx +47 -0
  1228. package/src/features/ChatList/Error/OAuthForm.tsx +97 -0
  1229. package/src/features/ChatList/Error/index.tsx +144 -0
  1230. package/src/features/ChatList/MarkdownElements/LobeThinking/Render.tsx +30 -0
  1231. package/src/features/ChatList/MarkdownElements/Thinking/Render.tsx +42 -0
  1232. package/src/features/ChatList/MarkdownElements/remarkPlugins/__snapshots__/createRemarkSelfClosingTagPlugin.test.ts.snap +393 -0
  1233. package/src/features/ChatList/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.test.ts +277 -0
  1234. package/src/features/ChatList/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.ts +162 -0
  1235. package/src/features/ChatList/MarkdownElements/remarkPlugins/getNodeContent.test.ts +502 -0
  1236. package/src/features/ChatList/Messages/Assistant/Actions/index.tsx +218 -0
  1237. package/src/features/ChatList/Messages/Assistant/CollapsedMessage.tsx +37 -0
  1238. package/src/features/ChatList/Messages/Assistant/Extra/index.test.tsx +86 -0
  1239. package/src/features/ChatList/Messages/Assistant/Extra/index.tsx +49 -0
  1240. package/src/features/ChatList/Messages/Assistant/MessageContent.tsx +78 -0
  1241. package/src/features/ChatList/Messages/Assistant/index.tsx +399 -0
  1242. package/src/features/ChatList/Messages/Default.tsx +30 -0
  1243. package/src/features/ChatList/Messages/Group/Actions/WithContentId.tsx +200 -0
  1244. package/src/features/ChatList/Messages/Group/Actions/WithoutContentId.tsx +93 -0
  1245. package/src/features/ChatList/Messages/Group/Actions/index.tsx +21 -0
  1246. package/src/features/ChatList/Messages/Group/CollapsedMessage.tsx +37 -0
  1247. package/src/features/ChatList/Messages/Group/ContentBlock.tsx +89 -0
  1248. package/src/features/ChatList/Messages/Group/EditState.tsx +51 -0
  1249. package/src/features/ChatList/Messages/Group/Error/index.tsx +55 -0
  1250. package/src/features/ChatList/Messages/Group/Group.tsx +70 -0
  1251. package/src/features/ChatList/Messages/Group/GroupContext.ts +15 -0
  1252. package/src/features/ChatList/Messages/Group/GroupItem.tsx +42 -0
  1253. package/src/features/ChatList/Messages/Group/MessageContent.tsx +45 -0
  1254. package/src/features/ChatList/Messages/Group/Tool/Inspector/BuiltinPluginTitle.tsx +58 -0
  1255. package/src/features/ChatList/Messages/Group/Tool/Inspector/Debug.tsx +70 -0
  1256. package/src/features/ChatList/Messages/Group/Tool/Inspector/PluginResult.tsx +34 -0
  1257. package/src/features/ChatList/Messages/Group/Tool/Inspector/PluginState.tsx +18 -0
  1258. package/src/features/ChatList/Messages/Group/Tool/Inspector/StatusIndicator.tsx +41 -0
  1259. package/src/features/ChatList/Messages/Group/Tool/Inspector/ToolTitle.tsx +82 -0
  1260. package/src/features/ChatList/Messages/Group/Tool/Inspector/index.tsx +221 -0
  1261. package/src/features/ChatList/Messages/Group/Tool/Render/AbortResponse.tsx +37 -0
  1262. package/src/features/ChatList/Messages/Group/Tool/Render/Arguments/index.tsx +136 -0
  1263. package/src/features/ChatList/Messages/Group/Tool/Render/CustomRender.tsx +88 -0
  1264. package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/ApprovalActions.tsx +164 -0
  1265. package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/Fallback.tsx +98 -0
  1266. package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/KeyValueEditor.tsx +213 -0
  1267. package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/ModeSelector.tsx +133 -0
  1268. package/src/features/ChatList/Messages/Group/Tool/Render/Intervention/index.tsx +103 -0
  1269. package/src/features/ChatList/Messages/Group/Tool/Render/LoadingPlaceholder/index.tsx +29 -0
  1270. package/src/features/ChatList/Messages/Group/Tool/Render/PluginSettings.tsx +66 -0
  1271. package/src/features/ChatList/Messages/Group/Tool/Render/RejectedResponse.tsx +45 -0
  1272. package/src/features/ChatList/Messages/Group/Tool/Render/index.tsx +139 -0
  1273. package/src/features/ChatList/Messages/Group/Tool/index.tsx +98 -0
  1274. package/src/features/ChatList/Messages/Group/Tools.tsx +48 -0
  1275. package/src/features/ChatList/Messages/Group/index.tsx +210 -0
  1276. package/src/features/ChatList/Messages/Supervisor/index.tsx +194 -0
  1277. package/src/features/ChatList/Messages/Tool/Inspector/PluginResult.tsx +39 -0
  1278. package/src/features/ChatList/Messages/Tool/Inspector/PluginState.tsx +23 -0
  1279. package/src/features/ChatList/Messages/Tool/Inspector/Settings.tsx +40 -0
  1280. package/src/features/ChatList/Messages/Tool/Inspector/ToolTitle.tsx +68 -0
  1281. package/src/features/ChatList/Messages/Tool/Inspector/index.tsx +134 -0
  1282. package/src/features/ChatList/Messages/Tool/Render/Arguments/ObjectEntity.tsx +81 -0
  1283. package/src/features/ChatList/Messages/Tool/Render/Arguments/ValueCell.tsx +43 -0
  1284. package/src/features/ChatList/Messages/Tool/Render/CustomRender.tsx +144 -0
  1285. package/src/features/ChatList/Messages/Tool/Render/ErrorResponse.tsx +35 -0
  1286. package/src/features/ChatList/Messages/Tool/Render/PluginSettings.tsx +69 -0
  1287. package/src/features/ChatList/Messages/Tool/Render/index.tsx +46 -0
  1288. package/src/features/ChatList/Messages/Tool/ToolItem.tsx +51 -0
  1289. package/src/features/ChatList/Messages/Tool/index.tsx +58 -0
  1290. package/src/features/ChatList/Messages/User/Actions/ActionsBar.tsx +159 -0
  1291. package/src/features/ChatList/Messages/User/Actions/MessageBranch.tsx +107 -0
  1292. package/src/features/ChatList/Messages/User/Actions/index.tsx +42 -0
  1293. package/src/features/ChatList/Messages/User/Extra.tsx +39 -0
  1294. package/src/features/ChatList/Messages/User/index.tsx +193 -0
  1295. package/src/features/ChatList/Messages/index.tsx +233 -0
  1296. package/src/features/ChatList/components/AutoScroll.tsx +27 -0
  1297. package/src/features/ChatList/components/ContextMenu.tsx +398 -0
  1298. package/src/features/ChatList/components/Extras/TTS/InitPlayer.tsx +93 -0
  1299. package/src/features/ChatList/components/Extras/Usage/UsageDetail/AnimatedNumber.tsx +55 -0
  1300. package/src/features/ChatList/components/Extras/Usage/UsageDetail/index.tsx +257 -0
  1301. package/src/features/ChatList/components/Extras/Usage/UsageDetail/tokens.ts +129 -0
  1302. package/src/features/ChatList/components/Extras/Usage/index.tsx +52 -0
  1303. package/src/features/ChatList/components/ShareMessageModal/ShareImage/Preview.tsx +90 -0
  1304. package/src/features/ChatList/components/ShareMessageModal/index.tsx +91 -0
  1305. package/src/features/ChatList/components/SkeletonList.tsx +58 -0
  1306. package/src/features/ChatList/components/VirtualizedList/VirtuosoContext.ts +92 -0
  1307. package/src/features/ChatList/components/VirtualizedList/index.tsx +172 -0
  1308. package/src/features/ChatList/components/WideScreenContainer/index.tsx +50 -0
  1309. package/src/features/ChatList/hooks/useChatItemContextMenu.tsx +135 -0
  1310. package/src/features/ChatList/hooks/useChatListActionsBar.tsx +145 -0
  1311. package/src/features/ChatList/hooks/useDoubleClickEdit.ts +42 -0
  1312. package/src/features/DataImporter/index.tsx +16 -61
  1313. package/src/features/DevPanel/PostgresViewer/usePgTable.ts +5 -12
  1314. package/src/features/FileSidePanel/index.tsx +1 -1
  1315. package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/Item/MasonryItem.tsx +80 -0
  1316. package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/Item/MasonryItemWrapper.tsx +27 -0
  1317. package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/List.tsx +104 -23
  1318. package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/MasonrySkeleton.tsx +62 -0
  1319. package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/index.tsx +3 -2
  1320. package/src/features/KnowledgeBaseModal/CreateNew/CreateForm.tsx +1 -1
  1321. package/src/features/KnowledgeManager/DocumentExplorer/DocumentActions.tsx +111 -0
  1322. package/src/features/KnowledgeManager/DocumentExplorer/DocumentEditor.tsx +723 -0
  1323. package/src/features/KnowledgeManager/DocumentExplorer/DocumentEditorPlaceholder.tsx +169 -0
  1324. package/src/features/KnowledgeManager/DocumentExplorer/DocumentListItem.tsx +148 -0
  1325. package/src/features/KnowledgeManager/DocumentExplorer/DocumentListSkeleton.tsx +39 -0
  1326. package/src/features/KnowledgeManager/DocumentExplorer/NoteEditorModal.tsx +328 -0
  1327. package/src/features/KnowledgeManager/DocumentExplorer/RenamePopover.tsx +163 -0
  1328. package/src/features/KnowledgeManager/DocumentExplorer/index.tsx +318 -0
  1329. package/src/features/KnowledgeManager/FileExplorer/FileListItem/index.tsx +270 -0
  1330. package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/DefaultFileItem.tsx +149 -0
  1331. package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/ImageFileItem.tsx +245 -0
  1332. package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/MarkdownFileItem.tsx +232 -0
  1333. package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/NoteFileItem.tsx +230 -0
  1334. package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/index.tsx +378 -0
  1335. package/src/features/KnowledgeManager/FileExplorer/ToolBar/ViewSwitcher.tsx +45 -0
  1336. package/src/features/KnowledgeManager/FileExplorer/index.tsx +305 -0
  1337. package/src/features/KnowledgeManager/Header/AddButton.tsx +117 -0
  1338. package/src/features/KnowledgeManager/Header/FilesSearchBar.tsx +45 -0
  1339. package/src/features/KnowledgeManager/Header/NewNoteButton.tsx +33 -0
  1340. package/src/features/KnowledgeManager/Header/TogglePanelButton.tsx +42 -0
  1341. package/src/features/KnowledgeManager/Header/index.tsx +21 -0
  1342. package/src/features/KnowledgeManager/Home/RecentDocumentCard.tsx +116 -0
  1343. package/src/features/KnowledgeManager/Home/RecentDocuments.tsx +77 -0
  1344. package/src/features/KnowledgeManager/Home/RecentFileCard.tsx +121 -0
  1345. package/src/features/KnowledgeManager/Home/RecentFiles.tsx +73 -0
  1346. package/src/features/KnowledgeManager/Home/RecentFilesSkeleton.tsx +81 -0
  1347. package/src/features/KnowledgeManager/Home/UploadEntries.tsx +208 -0
  1348. package/src/features/KnowledgeManager/Home/index.tsx +221 -0
  1349. package/src/features/KnowledgeManager/index.tsx +75 -0
  1350. package/src/features/LocalFile/LocalFile.tsx +55 -5
  1351. package/src/features/MCP/utils.test.ts +91 -0
  1352. package/src/features/MCP/utils.ts +20 -2
  1353. package/src/features/ModelSwitchPanel/index.tsx +15 -29
  1354. package/src/features/OllamaSetupGuide/index.tsx +1 -1
  1355. package/src/features/PluginStore/Content.tsx +2 -3
  1356. package/src/features/PluginStore/McpList/index.tsx +6 -2
  1357. package/src/features/PluginTag/PluginStatus.tsx +1 -1
  1358. package/src/features/PluginsUI/Render/BuiltinType/index.test.tsx +10 -4
  1359. package/src/features/PluginsUI/Render/BuiltinType/index.tsx +4 -4
  1360. package/src/features/PluginsUI/Render/MCPType/index.tsx +72 -0
  1361. package/src/features/PluginsUI/Render/StandaloneType/Iframe.tsx +5 -5
  1362. package/src/features/PluginsUI/Render/index.tsx +17 -0
  1363. package/src/features/Portal/Artifacts/Body/Renderer/SVG.tsx +23 -6
  1364. package/src/features/Portal/FilePreview/Body/index.tsx +1 -1
  1365. package/src/features/Portal/FilePreview/Header.tsx +1 -1
  1366. package/src/features/Portal/GroupThread/Body/ThreadChatItem.tsx +1 -1
  1367. package/src/features/Portal/GroupThread/Body/ThreadChatList.tsx +1 -1
  1368. package/src/features/Portal/GroupThread/Body/index.tsx +1 -1
  1369. package/src/features/Portal/Home/Body/Plugins/ArtifactList/index.tsx +3 -3
  1370. package/src/features/Portal/Thread/Chat/ChatInput/index.tsx +1 -1
  1371. package/src/features/Portal/Thread/Chat/ChatInput/useSend.ts +3 -3
  1372. package/src/features/Portal/Thread/Chat/ChatItem.tsx +1 -1
  1373. package/src/features/Portal/Thread/Chat/ChatList.tsx +1 -1
  1374. package/src/features/Portal/Thread/Chat/index.tsx +1 -1
  1375. package/src/features/ShareModal/ShareImage/ChatList/index.tsx +1 -1
  1376. package/src/features/ShareModal/ShareImage/Preview.tsx +2 -2
  1377. package/src/features/ShareModal/ShareImage/index.tsx +15 -1
  1378. package/src/features/ShareModal/ShareImage/type.ts +6 -0
  1379. package/src/features/ShareModal/ShareJSON/index.tsx +2 -2
  1380. package/src/features/ShareModal/ShareText/index.tsx +3 -3
  1381. package/src/features/ShareModal/index.tsx +7 -13
  1382. package/src/features/ShareModal/style.ts +40 -30
  1383. package/src/features/User/UserPanel/PanelContent.tsx +8 -9
  1384. package/src/features/User/UserPanel/useMenu.tsx +24 -14
  1385. package/src/features/User/__tests__/PanelContent.test.tsx +13 -7
  1386. package/src/helpers/isCanUseFC.ts +0 -8
  1387. package/src/helpers/toolEngineering/index.test.ts +3 -3
  1388. package/src/helpers/toolEngineering/index.ts +13 -4
  1389. package/src/hooks/useAgentOwnershipCheck.ts +143 -0
  1390. package/src/hooks/useCheckPluginsIsInstalled.ts +1 -4
  1391. package/src/hooks/useDiscoverTab.ts +2 -2
  1392. package/src/hooks/useEnabledChatModels.ts +0 -8
  1393. package/src/hooks/useFetchGroups.ts +1 -4
  1394. package/src/hooks/useFetchInstalledPlugins.ts +1 -4
  1395. package/src/hooks/useFetchMessages.ts +1 -4
  1396. package/src/hooks/useFetchSessions.ts +1 -4
  1397. package/src/hooks/useFetchThreads.ts +1 -5
  1398. package/src/hooks/useFetchTopics.ts +1 -4
  1399. package/src/hooks/useHotkeys/chatScope.ts +16 -8
  1400. package/src/hooks/useInterceptingRoutes.test.ts +22 -26
  1401. package/src/hooks/useInterceptingRoutes.ts +6 -11
  1402. package/src/hooks/useModelContextWindowTokens.ts +0 -8
  1403. package/src/hooks/useModelHasContextWindowToken.ts +1 -10
  1404. package/src/hooks/useModelSupportFiles.ts +1 -11
  1405. package/src/hooks/useModelSupportReasoning.ts +1 -11
  1406. package/src/hooks/useModelSupportToolUse.ts +1 -11
  1407. package/src/hooks/useModelSupportVision.ts +1 -11
  1408. package/src/hooks/usePinnedAgentState.ts +23 -16
  1409. package/src/hooks/useQuery.ts +5 -0
  1410. package/src/hooks/useQueryParam.ts +324 -0
  1411. package/src/hooks/useQueryRoute.test.ts +2 -12
  1412. package/src/hooks/useQueryRoute.ts +5 -5
  1413. package/src/hooks/useScreenshot.ts +44 -28
  1414. package/src/hooks/useShowMobileWorkspace.ts +1 -1
  1415. package/src/hooks/useSwitchSession.ts +4 -3
  1416. package/src/instrumentation.node.ts +3 -2
  1417. package/src/layout/AuthProvider/Clerk/index.tsx +2 -16
  1418. package/src/layout/AuthProvider/MarketAuth/MarketAuthProvider.tsx +364 -0
  1419. package/src/layout/AuthProvider/MarketAuth/errors.ts +75 -0
  1420. package/src/layout/AuthProvider/MarketAuth/index.ts +2 -0
  1421. package/src/layout/AuthProvider/MarketAuth/oidc.ts +382 -0
  1422. package/src/layout/AuthProvider/MarketAuth/types.ts +64 -0
  1423. package/src/layout/AuthProvider/index.tsx +17 -4
  1424. package/src/layout/GlobalProvider/Cmdk.tsx +470 -0
  1425. package/src/layout/GlobalProvider/CmdkLazy.tsx +17 -0
  1426. package/src/layout/GlobalProvider/ImportSettings.tsx +22 -9
  1427. package/src/layout/GlobalProvider/StoreInitialization.tsx +7 -5
  1428. package/src/layout/GlobalProvider/index.tsx +2 -0
  1429. package/src/libs/mcp/__tests__/__snapshots__/index.test.ts.snap +0 -6
  1430. package/src/libs/mcp/__tests__/index.test.ts +6 -6
  1431. package/src/libs/mcp/client.ts +3 -2
  1432. package/src/libs/mcp/types.ts +71 -0
  1433. package/src/libs/next-auth/auth.config.ts +2 -5
  1434. package/src/libs/trpc/client/index.ts +0 -1
  1435. package/src/libs/trpc/client/lambda.ts +11 -11
  1436. package/src/libs/trpc/lambda/context.ts +4 -1
  1437. package/src/libs/trpc/lambda/index.ts +5 -2
  1438. package/src/libs/trpc/middleware/openTelemetry.ts +141 -0
  1439. package/src/libs/trpc/utils/request-adapter.ts +20 -0
  1440. package/src/locales/default/auth.ts +44 -0
  1441. package/src/locales/default/chat.ts +37 -0
  1442. package/src/locales/default/common.ts +24 -0
  1443. package/src/locales/default/components.ts +6 -0
  1444. package/src/locales/default/discover.ts +46 -0
  1445. package/src/locales/default/error.ts +2 -2
  1446. package/src/locales/default/file.ts +88 -5
  1447. package/src/locales/default/hotkey.ts +4 -0
  1448. package/src/locales/default/image.ts +8 -0
  1449. package/src/locales/default/index.ts +2 -0
  1450. package/src/locales/default/labs.ts +4 -0
  1451. package/src/locales/default/marketAuth.ts +42 -0
  1452. package/src/locales/default/modelProvider.ts +16 -2
  1453. package/src/locales/default/oauth.ts +1 -0
  1454. package/src/locales/default/plugin.ts +37 -16
  1455. package/src/locales/default/setting.ts +100 -1
  1456. package/src/locales/default/tool.ts +32 -5
  1457. package/src/locales/default/topic.ts +1 -0
  1458. package/src/proxy.ts +13 -1
  1459. package/src/server/globalConfig/genServerAiProviderConfig.test.ts +5 -5
  1460. package/src/server/globalConfig/genServerAiProviderConfig.ts +4 -4
  1461. package/src/server/globalConfig/index.ts +0 -23
  1462. package/src/server/globalConfig/parseFilesConfig.ts +1 -1
  1463. package/src/server/globalConfig/parseSystemAgent.ts +4 -4
  1464. package/src/server/modules/ContentChunk/index.test.ts +372 -0
  1465. package/src/server/modules/S3/index.test.ts +379 -0
  1466. package/src/server/routers/async/__tests__/caller.test.ts +333 -0
  1467. package/src/server/routers/async/caller.ts +2 -1
  1468. package/src/server/routers/async/file.ts +2 -7
  1469. package/src/server/routers/async/image.ts +20 -2
  1470. package/src/server/routers/desktop/mcp.ts +22 -11
  1471. package/src/server/routers/lambda/__tests__/aiChat.test.ts +1 -1
  1472. package/src/server/routers/lambda/__tests__/file.test.ts +85 -6
  1473. package/src/server/routers/lambda/__tests__/integration/message.integration.test.ts +771 -57
  1474. package/src/server/routers/lambda/aiChat.ts +3 -2
  1475. package/src/server/routers/lambda/chunk.ts +168 -41
  1476. package/src/server/routers/lambda/config/__snapshots__/index.test.ts.snap +175 -12
  1477. package/src/server/routers/lambda/config/index.test.ts +38 -30
  1478. package/src/server/routers/lambda/document.ts +57 -0
  1479. package/src/server/routers/lambda/file.ts +89 -2
  1480. package/src/server/routers/lambda/index.ts +2 -0
  1481. package/src/server/routers/lambda/knowledge.ts +94 -0
  1482. package/src/server/routers/lambda/market/index.ts +38 -14
  1483. package/src/server/routers/lambda/message.ts +52 -60
  1484. package/src/server/routers/lambda/topic.ts +7 -1
  1485. package/src/server/routers/lambda/usage.ts +36 -0
  1486. package/src/server/routers/lambda/user.ts +32 -31
  1487. package/src/server/routers/mobile/index.ts +14 -2
  1488. package/src/server/routers/tools/mcp.ts +24 -7
  1489. package/src/server/routers/tools/search.test.ts +1 -7
  1490. package/src/server/routers/tools/search.ts +1 -4
  1491. package/src/server/services/discover/index.test.ts +153 -11
  1492. package/src/server/services/discover/index.ts +339 -40
  1493. package/src/server/services/document/index.ts +103 -0
  1494. package/src/server/services/file/impls/local.ts +4 -1
  1495. package/src/server/services/file/index.ts +96 -1
  1496. package/src/server/services/mcp/contentProcessor.ts +101 -0
  1497. package/src/server/services/mcp/deps/MCPSystemDepsCheckService.test.ts +541 -0
  1498. package/src/server/services/mcp/deps/checkers/ManualInstallationChecker.test.ts +162 -0
  1499. package/src/server/services/mcp/deps/checkers/NpmInstallationChecker.test.ts +374 -0
  1500. package/src/server/services/mcp/deps/checkers/PythonInstallationChecker.test.ts +368 -0
  1501. package/src/server/services/mcp/index.test.ts +80 -25
  1502. package/src/server/services/mcp/index.ts +37 -23
  1503. package/src/server/services/message/__tests__/index.test.ts +338 -0
  1504. package/src/server/services/message/index.ts +187 -0
  1505. package/src/server/services/oidc/index.test.ts +232 -0
  1506. package/src/server/services/oidc/index.ts +24 -0
  1507. package/src/server/services/usage/index.test.ts +310 -0
  1508. package/src/server/services/usage/index.ts +164 -0
  1509. package/src/server/sitemap.ts +49 -35
  1510. package/src/server/utils/createSpeechResponse.ts +55 -0
  1511. package/src/services/__tests__/_auth.test.ts +1 -4
  1512. package/src/services/__tests__/tool.test.ts +0 -3
  1513. package/src/services/__tests__/upload.test.ts +92 -82
  1514. package/src/services/_auth.ts +4 -14
  1515. package/src/services/_header.ts +3 -18
  1516. package/src/services/_url.ts +15 -1
  1517. package/src/services/aiModel/index.test.ts +3 -6
  1518. package/src/services/aiModel/index.ts +55 -7
  1519. package/src/services/aiProvider/index.test.ts +2 -5
  1520. package/src/services/aiProvider/index.ts +47 -7
  1521. package/src/services/chat/chat.test.ts +71 -15
  1522. package/src/services/chat/clientModelRuntime.test.ts +109 -173
  1523. package/src/services/chat/contextEngineering.test.ts +4 -0
  1524. package/src/services/chat/contextEngineering.ts +27 -7
  1525. package/src/services/chat/helper.ts +7 -31
  1526. package/src/services/chat/index.ts +22 -11
  1527. package/src/services/chat/types.ts +1 -2
  1528. package/src/services/chatGroup/index.ts +64 -9
  1529. package/src/services/config.ts +2 -66
  1530. package/src/services/debug.ts +4 -4
  1531. package/src/services/discover.ts +28 -17
  1532. package/src/services/document/index.ts +44 -0
  1533. package/src/services/electron/desktopNotification.ts +6 -6
  1534. package/src/services/electron/file.ts +6 -6
  1535. package/src/services/electron/localFileService.ts +4 -0
  1536. package/src/services/electron/remoteServer.ts +12 -5
  1537. package/src/services/electron/settings.ts +6 -6
  1538. package/src/services/export/index.ts +9 -4
  1539. package/src/services/file/index.ts +70 -10
  1540. package/src/services/import/index.ts +132 -7
  1541. package/src/services/marketApi.ts +124 -0
  1542. package/src/services/mcp.test.ts +783 -0
  1543. package/src/services/mcp.ts +57 -22
  1544. package/src/services/message/__tests__/metadata-race-condition.test.ts +157 -0
  1545. package/src/services/message/index.ts +235 -10
  1546. package/src/services/message/server.test.ts +44 -0
  1547. package/src/services/models.ts +24 -32
  1548. package/src/services/plugin/index.test.ts +8 -0
  1549. package/src/services/plugin/index.ts +51 -10
  1550. package/src/services/rag.ts +6 -2
  1551. package/src/services/search.ts +2 -2
  1552. package/src/services/session/index.test.ts +8 -0
  1553. package/src/services/session/index.ts +129 -10
  1554. package/src/services/tableViewer/client.ts +12 -15
  1555. package/src/services/thread/index.test.ts +8 -0
  1556. package/src/services/thread/index.ts +37 -7
  1557. package/src/services/topic/index.test.ts +8 -0
  1558. package/src/services/topic/index.ts +74 -10
  1559. package/src/services/upload.ts +14 -43
  1560. package/src/services/usage.ts +13 -0
  1561. package/src/services/user/index.test.ts +8 -0
  1562. package/src/services/user/index.ts +50 -11
  1563. package/src/services/utils/abortableRequest.test.ts +161 -0
  1564. package/src/services/utils/abortableRequest.ts +67 -0
  1565. package/src/store/agent/slices/chat/selectors/agent.ts +4 -0
  1566. package/src/store/aiInfra/slices/aiModel/action.test.ts +17 -9
  1567. package/src/store/aiInfra/slices/aiProvider/__tests__/action.test.ts +125 -229
  1568. package/src/store/aiInfra/slices/aiProvider/__tests__/selectors.test.ts +62 -0
  1569. package/src/store/aiInfra/slices/aiProvider/action.ts +119 -37
  1570. package/src/store/aiInfra/slices/aiProvider/selectors.ts +1 -1
  1571. package/src/store/chat/agents/GeneralChatAgent.ts +391 -0
  1572. package/src/store/chat/agents/__tests__/GeneralChatAgent.test.ts +1144 -0
  1573. package/src/store/chat/agents/__tests__/createAgentExecutors/call-llm.test.ts +1235 -0
  1574. package/src/store/chat/agents/__tests__/createAgentExecutors/call-tool.test.ts +2005 -0
  1575. package/src/store/chat/agents/__tests__/createAgentExecutors/finish.test.ts +453 -0
  1576. package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/index.ts +4 -0
  1577. package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/mockInstructions.ts +126 -0
  1578. package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/mockMessages.ts +94 -0
  1579. package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/mockOperations.ts +96 -0
  1580. package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/mockStore.ts +138 -0
  1581. package/src/store/chat/agents/__tests__/createAgentExecutors/helpers/assertions.ts +188 -0
  1582. package/src/store/chat/agents/__tests__/createAgentExecutors/helpers/index.ts +3 -0
  1583. package/src/store/chat/agents/__tests__/createAgentExecutors/helpers/operationTestUtils.ts +94 -0
  1584. package/src/store/chat/agents/__tests__/createAgentExecutors/helpers/testExecutor.ts +136 -0
  1585. package/src/store/chat/agents/__tests__/createAgentExecutors/request-human-approve.test.ts +560 -0
  1586. package/src/store/chat/agents/__tests__/createAgentExecutors/resolve-aborted-tools.test.ts +712 -0
  1587. package/src/store/chat/agents/createAgentExecutors.ts +770 -0
  1588. package/src/store/chat/helpers.test.ts +0 -99
  1589. package/src/store/chat/helpers.ts +0 -11
  1590. package/src/store/chat/initialState.ts +4 -1
  1591. package/src/store/chat/selectors.ts +1 -0
  1592. package/src/store/chat/slices/aiChat/__tests__/ai-chat.integration.test.ts +667 -0
  1593. package/src/store/chat/slices/aiChat/actions/__tests__/cancel-functionality.test.ts +137 -27
  1594. package/src/store/chat/slices/aiChat/actions/__tests__/conversationControl.test.ts +370 -0
  1595. package/src/store/chat/slices/aiChat/actions/__tests__/conversationLifecycle.test.ts +281 -0
  1596. package/src/store/chat/slices/aiChat/actions/__tests__/fixtures.ts +0 -2
  1597. package/src/store/chat/slices/aiChat/actions/__tests__/helpers.ts +19 -8
  1598. package/src/store/chat/slices/aiChat/actions/__tests__/rag.test.ts +4 -91
  1599. package/src/store/chat/slices/aiChat/actions/__tests__/streamingExecutor.test.ts +809 -0
  1600. package/src/store/chat/slices/aiChat/actions/__tests__/streamingStates.test.ts +67 -0
  1601. package/src/store/chat/slices/aiChat/actions/conversationControl.ts +220 -0
  1602. package/src/store/chat/slices/aiChat/actions/conversationLifecycle.ts +415 -0
  1603. package/src/store/chat/slices/aiChat/actions/generateAIGroupChat.ts +24 -39
  1604. package/src/store/chat/slices/aiChat/actions/index.ts +12 -6
  1605. package/src/store/chat/slices/aiChat/actions/rag.ts +4 -48
  1606. package/src/store/chat/slices/aiChat/actions/streamingExecutor.ts +848 -0
  1607. package/src/store/chat/slices/aiChat/actions/streamingStates.ts +50 -0
  1608. package/src/store/chat/slices/aiChat/initialState.ts +0 -28
  1609. package/src/store/chat/slices/aiChat/selectors.test.ts +280 -0
  1610. package/src/store/chat/slices/aiChat/selectors.ts +31 -7
  1611. package/src/store/chat/slices/builtinTool/actions/__tests__/localSystem.test.ts +29 -39
  1612. package/src/store/chat/slices/builtinTool/actions/__tests__/search.test.ts +236 -48
  1613. package/src/store/chat/slices/builtinTool/actions/index.ts +4 -1
  1614. package/src/store/chat/slices/builtinTool/actions/interpreter.ts +86 -51
  1615. package/src/store/chat/slices/builtinTool/actions/knowledgeBase.ts +164 -0
  1616. package/src/store/chat/slices/builtinTool/actions/localSystem.ts +119 -202
  1617. package/src/store/chat/slices/builtinTool/actions/search.ts +174 -58
  1618. package/src/store/chat/slices/builtinTool/selectors.test.ts +258 -0
  1619. package/src/store/chat/slices/builtinTool/selectors.ts +25 -4
  1620. package/src/store/chat/slices/message/action.test.ts +482 -63
  1621. package/src/store/chat/slices/message/actions/index.ts +39 -0
  1622. package/src/store/chat/slices/message/actions/internals.ts +103 -0
  1623. package/src/store/chat/slices/message/actions/optimisticUpdate.ts +343 -0
  1624. package/src/store/chat/slices/message/actions/publicApi.ts +284 -0
  1625. package/src/store/chat/slices/message/actions/query.ts +135 -0
  1626. package/src/store/chat/slices/message/actions/runtimeState.ts +108 -0
  1627. package/src/store/chat/slices/message/initialState.ts +8 -0
  1628. package/src/store/chat/slices/message/reducer.test.ts +48 -370
  1629. package/src/store/chat/slices/message/reducer.ts +19 -82
  1630. package/src/store/chat/slices/message/selectors/chat.test.ts +22 -639
  1631. package/src/store/chat/slices/message/selectors/chat.ts +77 -243
  1632. package/src/store/chat/slices/message/selectors/dbMessage.test.ts +51 -0
  1633. package/src/store/chat/slices/message/selectors/dbMessage.ts +147 -0
  1634. package/src/store/chat/slices/message/selectors/displayMessage.test.ts +818 -0
  1635. package/src/store/chat/slices/message/selectors/displayMessage.ts +352 -0
  1636. package/src/store/chat/slices/message/selectors/messageState.ts +46 -12
  1637. package/src/store/chat/slices/operation/__tests__/actions.test.ts +1049 -0
  1638. package/src/store/chat/slices/operation/__tests__/integration.test.ts +342 -0
  1639. package/src/store/chat/slices/operation/__tests__/selectors.test.ts +601 -0
  1640. package/src/store/chat/slices/operation/actions.ts +658 -0
  1641. package/src/store/chat/slices/operation/index.ts +4 -0
  1642. package/src/store/chat/slices/operation/initialState.ts +44 -0
  1643. package/src/store/chat/slices/operation/selectors.ts +388 -0
  1644. package/src/store/chat/slices/operation/types.ts +161 -0
  1645. package/src/store/chat/slices/plugin/action.test.ts +320 -352
  1646. package/src/store/chat/slices/plugin/actions/index.ts +39 -0
  1647. package/src/store/chat/slices/plugin/actions/internals.ts +69 -0
  1648. package/src/store/chat/slices/plugin/actions/optimisticUpdate.ts +258 -0
  1649. package/src/store/chat/slices/plugin/actions/pluginTypes.ts +264 -0
  1650. package/src/store/chat/slices/plugin/actions/publicApi.ts +119 -0
  1651. package/src/store/chat/slices/plugin/actions/workflow.ts +77 -0
  1652. package/src/store/chat/slices/portal/selectors.test.ts +7 -7
  1653. package/src/store/chat/slices/portal/selectors.ts +2 -2
  1654. package/src/store/chat/slices/thread/action.test.ts +38 -33
  1655. package/src/store/chat/slices/thread/action.ts +19 -13
  1656. package/src/store/chat/slices/thread/selectors/index.ts +12 -8
  1657. package/src/store/chat/slices/topic/action.test.ts +1 -1
  1658. package/src/store/chat/slices/topic/action.ts +4 -5
  1659. package/src/store/chat/slices/topic/reducer.ts +12 -5
  1660. package/src/store/chat/slices/translate/action.test.ts +26 -32
  1661. package/src/store/chat/slices/translate/action.ts +57 -44
  1662. package/src/store/chat/store.ts +6 -3
  1663. package/src/store/discover/slices/assistant/action.ts +20 -7
  1664. package/src/store/file/initialState.ts +6 -1
  1665. package/src/store/file/slices/chat/action.ts +3 -6
  1666. package/src/store/file/slices/document/action.ts +359 -0
  1667. package/src/store/file/slices/document/index.ts +3 -0
  1668. package/src/store/file/slices/document/initialState.ts +22 -0
  1669. package/src/store/file/slices/document/selectors.ts +25 -0
  1670. package/src/store/file/slices/fileManager/action.test.ts +16 -9
  1671. package/src/store/file/slices/fileManager/action.ts +12 -13
  1672. package/src/store/file/store.ts +3 -0
  1673. package/src/store/global/action.test.ts +3 -3
  1674. package/src/store/global/actions/workspacePane.ts +2 -1
  1675. package/src/store/global/initialState.ts +16 -3
  1676. package/src/store/global/selectors/systemStatus.test.ts +0 -98
  1677. package/src/store/global/selectors/systemStatus.ts +9 -30
  1678. package/src/store/global/store.ts +1 -7
  1679. package/src/store/serverConfig/selectors.test.ts +2 -2
  1680. package/src/store/serverConfig/store.test.ts +0 -1
  1681. package/src/store/session/slices/session/action.ts +23 -0
  1682. package/src/store/session/slices/session/initialState.ts +6 -0
  1683. package/src/store/session/slices/sessionGroup/action.test.ts +5 -5
  1684. package/src/store/tool/slices/mcpStore/action.test.ts +95 -3
  1685. package/src/store/tool/slices/mcpStore/action.ts +177 -53
  1686. package/src/store/tool/slices/oldStore/initialState.ts +1 -2
  1687. package/src/store/urlHydration/action.ts +56 -0
  1688. package/src/store/urlHydration/index.ts +1 -0
  1689. package/src/store/urlHydration/initialState.ts +12 -0
  1690. package/src/store/urlHydration/store.ts +28 -0
  1691. package/src/store/user/initialState.ts +1 -7
  1692. package/src/store/user/selectors.ts +2 -5
  1693. package/src/store/user/slices/common/action.test.ts +1 -4
  1694. package/src/store/user/slices/common/action.ts +9 -4
  1695. package/src/store/user/slices/preference/action.ts +8 -1
  1696. package/src/store/user/slices/preference/selectors/index.ts +2 -0
  1697. package/src/store/user/slices/preference/selectors/labPrefer.ts +10 -0
  1698. package/src/store/user/slices/preference/selectors/preference.ts +32 -0
  1699. package/src/store/user/slices/settings/action.ts +27 -0
  1700. package/src/store/user/slices/settings/selectors/__snapshots__/settings.test.ts.snap +0 -7
  1701. package/src/store/user/slices/settings/selectors/general.ts +8 -0
  1702. package/src/store/user/slices/settings/selectors/index.ts +2 -0
  1703. package/src/store/user/slices/settings/selectors/keyVaults.ts +16 -0
  1704. package/src/store/user/slices/settings/selectors/settings.test.ts +0 -37
  1705. package/src/store/user/slices/settings/selectors/settings.ts +0 -5
  1706. package/src/store/user/slices/settings/selectors/toolIntervention.ts +17 -0
  1707. package/src/store/user/store.ts +0 -3
  1708. package/src/tools/code-interpreter/Render/index.tsx +1 -1
  1709. package/src/tools/executionRuntimes.ts +6 -0
  1710. package/src/tools/identifiers.ts +13 -0
  1711. package/src/tools/index.ts +7 -0
  1712. package/src/tools/interventions.ts +30 -0
  1713. package/src/tools/knowledge-base/ExecutionRuntime/index.ts +96 -0
  1714. package/src/tools/knowledge-base/Render/ReadKnowledge/FileCard.tsx +135 -0
  1715. package/src/tools/knowledge-base/Render/ReadKnowledge/index.tsx +27 -0
  1716. package/src/tools/knowledge-base/Render/SearchKnowledgeBase/Item/index.tsx +54 -0
  1717. package/src/tools/knowledge-base/Render/SearchKnowledgeBase/Item/style.ts +51 -0
  1718. package/src/tools/knowledge-base/Render/SearchKnowledgeBase/index.tsx +23 -0
  1719. package/src/tools/knowledge-base/Render/index.ts +7 -0
  1720. package/src/tools/knowledge-base/index.ts +64 -0
  1721. package/src/tools/knowledge-base/systemRole.ts +102 -0
  1722. package/src/tools/knowledge-base/type.ts +25 -0
  1723. package/src/tools/local-system/ExecutionRuntime/index.ts +407 -0
  1724. package/src/tools/local-system/Intervention/EditLocalFile/index.tsx +89 -0
  1725. package/src/tools/local-system/Intervention/MoveLocalFiles/MoveFileItem.tsx +56 -0
  1726. package/src/tools/local-system/Intervention/MoveLocalFiles/index.tsx +26 -0
  1727. package/src/tools/local-system/Intervention/RunCommand/index.tsx +54 -0
  1728. package/src/tools/local-system/Intervention/WriteFile/index.tsx +72 -0
  1729. package/src/tools/local-system/Intervention/index.ts +15 -0
  1730. package/src/tools/local-system/Placeholder/ListFiles.tsx +3 -5
  1731. package/src/tools/local-system/Placeholder/SearchFiles.tsx +2 -5
  1732. package/src/tools/local-system/Render/EditLocalFile/index.tsx +67 -0
  1733. package/src/tools/local-system/Render/ListFiles/index.tsx +16 -21
  1734. package/src/tools/local-system/Render/MoveLocalFiles/MoveFileItem.tsx +56 -0
  1735. package/src/tools/local-system/Render/MoveLocalFiles/index.tsx +26 -0
  1736. package/src/tools/local-system/Render/ReadLocalFile/ReadFileView.tsx +55 -79
  1737. package/src/tools/local-system/Render/RenameLocalFile/index.tsx +15 -20
  1738. package/src/tools/local-system/Render/RunCommand/index.tsx +103 -27
  1739. package/src/tools/local-system/Render/SearchFiles/SearchQuery/index.tsx +0 -1
  1740. package/src/tools/local-system/Render/SearchFiles/index.tsx +15 -20
  1741. package/src/tools/local-system/Render/WriteFile/index.tsx +2 -8
  1742. package/src/tools/local-system/Render/index.ts +23 -0
  1743. package/src/tools/local-system/index.ts +186 -4
  1744. package/src/tools/local-system/systemRole.ts +62 -8
  1745. package/src/tools/local-system/type.ts +4 -3
  1746. package/src/tools/placeholders.ts +39 -8
  1747. package/src/tools/renders.ts +39 -6
  1748. package/src/tools/web-browsing/ExecutionRuntime/index.ts +5 -2
  1749. package/src/tools/web-browsing/Placeholder/CrawlMultiPages.tsx +30 -0
  1750. package/src/tools/web-browsing/Placeholder/CrawlSinglePage.tsx +12 -0
  1751. package/src/tools/web-browsing/Placeholder/Search.tsx +4 -4
  1752. package/src/tools/web-browsing/Portal/Search/Footer.tsx +11 -9
  1753. package/src/tools/web-browsing/Render/CrawlMultiPages.tsx +15 -0
  1754. package/src/tools/web-browsing/Render/CrawlSinglePage.tsx +15 -0
  1755. package/src/tools/web-browsing/Render/Search/ConfigForm/Form.tsx +1 -1
  1756. package/src/tools/web-browsing/Render/Search/index.tsx +39 -44
  1757. package/src/tools/web-browsing/Render/index.ts +13 -0
  1758. package/src/utils/electron/desktopRemoteRPCFetch.ts +87 -0
  1759. package/src/utils/server/parseModels.ts +212 -0
  1760. package/src/utils/server/routeVariants.test.ts +340 -0
  1761. package/src/utils/server/routeVariants.ts +10 -10
  1762. package/tsconfig.json +0 -1
  1763. package/vitest.config.mts +2 -0
  1764. package/Dockerfile.lite +0 -272
  1765. package/packages/context-engine/ARCHITECTURE.md +0 -425
  1766. package/packages/database/src/models/__tests__/message.grouping.test.ts +0 -812
  1767. package/packages/database/src/models/__tests__/message.test.ts +0 -2704
  1768. package/packages/database/src/schemas/document.ts +0 -106
  1769. package/packages/database/src/utils/__tests__/groupMessages.test.ts +0 -1132
  1770. package/packages/database/src/utils/groupMessages.ts +0 -361
  1771. package/packages/model-runtime/src/utils/imageToBase64.test.ts +0 -91
  1772. package/packages/model-runtime/src/utils/imageToBase64.ts +0 -62
  1773. package/packages/utils/src/_deprecated/__snapshots__/parseModels.test.ts.snap +0 -104
  1774. package/packages/utils/src/_deprecated/parseModels.test.ts +0 -287
  1775. package/packages/utils/src/_deprecated/parseModels.ts +0 -165
  1776. package/packages/utils/src/electron/desktopRemoteRPCFetch.ts +0 -87
  1777. package/packages/utils/src/fetch/__tests__/fetchSSE.test.ts +0 -579
  1778. package/packages/utils/src/fetch/__tests__/parseError.test.ts +0 -88
  1779. package/packages/utils/src/fetch/fetchSSE.ts +0 -477
  1780. package/packages/utils/src/fetch/headers.ts +0 -27
  1781. package/packages/utils/src/fetch/parseError.ts +0 -24
  1782. package/packages/utils/src/fetch/request.ts +0 -28
  1783. package/packages/utils/src/parseModels.ts +0 -213
  1784. package/packages/utils/src/tokenizer/client.ts +0 -35
  1785. package/packages/utils/src/tokenizer/estimated.ts +0 -4
  1786. package/packages/utils/src/tokenizer/server.ts +0 -11
  1787. package/packages/utils/src/tokenizer/tokenizer.worker.ts +0 -12
  1788. package/src/app/(backend)/trpc/edge/[trpc]/route.ts +0 -26
  1789. package/src/app/(backend)/webapi/chat/azureai/route.test.ts +0 -25
  1790. package/src/app/(backend)/webapi/chat/azureai/route.ts +0 -6
  1791. package/src/app/(backend)/webapi/tokenizer/index.test.ts +0 -32
  1792. package/src/app/(backend)/webapi/tokenizer/route.ts +0 -8
  1793. package/src/app/[variants]/(main)/(mobile)/me/(home)/loading.tsx +0 -38
  1794. package/src/app/[variants]/(main)/(mobile)/me/(home)/page.tsx +0 -40
  1795. package/src/app/[variants]/(main)/(mobile)/me/data/features/Category.tsx +0 -48
  1796. package/src/app/[variants]/(main)/(mobile)/me/data/features/Header.tsx +0 -33
  1797. package/src/app/[variants]/(main)/(mobile)/me/data/layout.tsx +0 -13
  1798. package/src/app/[variants]/(main)/(mobile)/me/data/loading.tsx +0 -5
  1799. package/src/app/[variants]/(main)/(mobile)/me/data/page.tsx +0 -29
  1800. package/src/app/[variants]/(main)/(mobile)/me/profile/loading.tsx +0 -5
  1801. package/src/app/[variants]/(main)/(mobile)/me/profile/page.tsx +0 -30
  1802. package/src/app/[variants]/(main)/(mobile)/me/settings/loading.tsx +0 -5
  1803. package/src/app/[variants]/(main)/(mobile)/me/settings/page.tsx +0 -30
  1804. package/src/app/[variants]/(main)/_layout/Desktop/DesktopLayoutContainer.tsx +0 -32
  1805. package/src/app/[variants]/(main)/_layout/Desktop/SideBar/BottomActions.tsx +0 -46
  1806. package/src/app/[variants]/(main)/_layout/Desktop/SideBar/PinList/index.tsx +0 -119
  1807. package/src/app/[variants]/(main)/_layout/Desktop/SideBar/TopActions.test.tsx +0 -141
  1808. package/src/app/[variants]/(main)/_layout/Desktop/SideBar/TopActions.tsx +0 -109
  1809. package/src/app/[variants]/(main)/_layout/Desktop/index.tsx +0 -68
  1810. package/src/app/[variants]/(main)/_layout/Mobile/NavBar.tsx +0 -88
  1811. package/src/app/[variants]/(main)/_layout/Mobile/index.tsx +0 -43
  1812. package/src/app/[variants]/(main)/changelog/layout.tsx +0 -10
  1813. package/src/app/[variants]/(main)/changelog/modal/page.tsx +0 -23
  1814. package/src/app/[variants]/(main)/changelog/page.tsx +0 -78
  1815. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatHydration/index.tsx +0 -42
  1816. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/ClassicChat.tsx +0 -81
  1817. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/GroupChat.tsx +0 -126
  1818. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/MessageFromUrl.tsx +0 -32
  1819. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/Desktop/index.tsx +0 -17
  1820. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/V1Mobile/index.tsx +0 -89
  1821. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/V1Mobile/useSend.ts +0 -104
  1822. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatInput/useSend.ts +0 -321
  1823. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/ChatItem/Thread.tsx +0 -62
  1824. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/ChatItem/index.tsx +0 -91
  1825. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/Content.tsx +0 -43
  1826. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/AgentWelcome/OpeningQuestions.tsx +0 -75
  1827. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/WelcomeChatItem/GroupWelcome/GroupUsageSuggest.tsx +0 -164
  1828. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatList/index.tsx +0 -28
  1829. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ChatMinimap/index.tsx +0 -385
  1830. package/src/app/[variants]/(main)/chat/(workspace)/@conversation/features/ThreadHydration.tsx +0 -45
  1831. package/src/app/[variants]/(main)/chat/(workspace)/@topic/features/Topic/TopicListContent/TopicItem/TopicContent.tsx +0 -241
  1832. package/src/app/[variants]/(main)/chat/(workspace)/@topic/features/Topic/TopicListContent/TopicItem/index.tsx +0 -97
  1833. package/src/app/[variants]/(main)/chat/(workspace)/layout.ts +0 -11
  1834. package/src/app/[variants]/(main)/chat/(workspace)/page.tsx +0 -53
  1835. package/src/app/[variants]/(main)/chat/@session/_layout/Mobile/SessionHeader.tsx +0 -44
  1836. package/src/app/[variants]/(main)/chat/@session/default.tsx +0 -31
  1837. package/src/app/[variants]/(main)/chat/@session/features/SessionHydration.tsx +0 -45
  1838. package/src/app/[variants]/(main)/chat/@session/features/SessionListContent/Inbox/index.tsx +0 -63
  1839. package/src/app/[variants]/(main)/chat/@session/features/SessionListContent/List/Item/Actions.tsx +0 -229
  1840. package/src/app/[variants]/(main)/chat/@session/features/SessionListContent/List/Item/index.tsx +0 -158
  1841. package/src/app/[variants]/(main)/chat/@session/features/SessionListContent/List/index.tsx +0 -100
  1842. package/src/app/[variants]/(main)/chat/error.tsx +0 -3
  1843. package/src/app/[variants]/(main)/chat/features/Migration/DBReader.ts +0 -290
  1844. package/src/app/[variants]/(main)/chat/features/Migration/ExportConfigButton.tsx +0 -35
  1845. package/src/app/[variants]/(main)/chat/features/Migration/Failed.tsx +0 -120
  1846. package/src/app/[variants]/(main)/chat/features/Migration/Modal.tsx +0 -81
  1847. package/src/app/[variants]/(main)/chat/features/Migration/Start.tsx +0 -108
  1848. package/src/app/[variants]/(main)/chat/features/Migration/UpgradeButton.tsx +0 -71
  1849. package/src/app/[variants]/(main)/chat/features/Migration/const.ts +0 -15
  1850. package/src/app/[variants]/(main)/chat/features/Migration/index.tsx +0 -50
  1851. package/src/app/[variants]/(main)/chat/layout.ts +0 -11
  1852. package/src/app/[variants]/(main)/chat/not-found.tsx +0 -1
  1853. package/src/app/[variants]/(main)/chat/settings/error.tsx +0 -3
  1854. package/src/app/[variants]/(main)/chat/settings/features/SubmitAgentButton/SubmitAgentModal.tsx +0 -98
  1855. package/src/app/[variants]/(main)/chat/settings/features/SubmitAgentButton/index.tsx +0 -35
  1856. package/src/app/[variants]/(main)/chat/settings/features/SubmitAgentButton/style.ts +0 -47
  1857. package/src/app/[variants]/(main)/chat/settings/layout.tsx +0 -21
  1858. package/src/app/[variants]/(main)/chat/settings/loading.tsx +0 -3
  1859. package/src/app/[variants]/(main)/chat/settings/not-found.tsx +0 -1
  1860. package/src/app/[variants]/(main)/chat/settings/page.tsx +0 -62
  1861. package/src/app/[variants]/(main)/discover/(detail)/_layout/Desktop.tsx +0 -30
  1862. package/src/app/[variants]/(main)/discover/(detail)/_layout/DetailLayout.tsx +0 -22
  1863. package/src/app/[variants]/(main)/discover/(detail)/assistant/AssistantDetailPage.tsx +0 -47
  1864. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/Client.tsx +0 -40
  1865. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Capabilities/Block.tsx +0 -27
  1866. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Nav.tsx +0 -122
  1867. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Overview/TagList.tsx +0 -47
  1868. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Overview/index.tsx +0 -96
  1869. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/Related/index.tsx +0 -31
  1870. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/SystemRole/TagList.tsx +0 -47
  1871. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/SystemRole/index.tsx +0 -54
  1872. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Details/index.tsx +0 -49
  1873. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Header.tsx +0 -177
  1874. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/ActionButton/AddAgent.tsx +0 -87
  1875. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/ActionButton/index.tsx +0 -31
  1876. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/Related/index.tsx +0 -43
  1877. package/src/app/[variants]/(main)/discover/(detail)/assistant/[...slugs]/features/Sidebar/TocList/index.tsx +0 -77
  1878. package/src/app/[variants]/(main)/discover/(detail)/mcp/McpDetailPage.tsx +0 -51
  1879. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/Client.tsx +0 -43
  1880. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Details/Related/index.tsx +0 -32
  1881. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Details/Versions/index.tsx +0 -76
  1882. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Details/index.tsx +0 -59
  1883. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/Related/index.tsx +0 -44
  1884. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/ServerConfig.tsx +0 -36
  1885. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/features/Sidebar/TocList/index.tsx +0 -98
  1886. package/src/app/[variants]/(main)/discover/(detail)/mcp/[slug]/loading.tsx +0 -1
  1887. package/src/app/[variants]/(main)/discover/(detail)/model/ModelDetailPage.tsx +0 -44
  1888. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/Client.tsx +0 -40
  1889. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/Overview/index.tsx +0 -22
  1890. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/Parameter/ParameterItem.tsx +0 -71
  1891. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/Related/index.tsx +0 -31
  1892. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Details/index.tsx +0 -47
  1893. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Header.tsx +0 -112
  1894. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/ActionButton/ChatWithModel.tsx +0 -92
  1895. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/ActionButton/index.tsx +0 -32
  1896. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/Related/index.tsx +0 -43
  1897. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/features/Sidebar/RelatedProviders/index.tsx +0 -34
  1898. package/src/app/[variants]/(main)/discover/(detail)/model/[...slugs]/loading.tsx +0 -1
  1899. package/src/app/[variants]/(main)/discover/(detail)/provider/ProviderDetailPage.tsx +0 -44
  1900. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/Client.tsx +0 -40
  1901. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Details/Related/index.tsx +0 -22
  1902. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Details/index.tsx +0 -47
  1903. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/ActionButton/ProviderConfig.tsx +0 -97
  1904. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/ActionButton/index.tsx +0 -45
  1905. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/Related/index.tsx +0 -34
  1906. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/features/Sidebar/RelatedModels/index.tsx +0 -43
  1907. package/src/app/[variants]/(main)/discover/(detail)/provider/[...slugs]/loading.tsx +0 -1
  1908. package/src/app/[variants]/(main)/discover/(list)/(home)/HomePage.tsx +0 -45
  1909. package/src/app/[variants]/(main)/discover/(list)/_layout/ListLayout.tsx +0 -22
  1910. package/src/app/[variants]/(main)/discover/(list)/assistant/AssistantLayout.tsx +0 -21
  1911. package/src/app/[variants]/(main)/discover/(list)/assistant/AssistantPage.tsx +0 -44
  1912. package/src/app/[variants]/(main)/discover/(list)/mcp/Client.tsx +0 -44
  1913. package/src/app/[variants]/(main)/discover/(list)/mcp/McpLayout.tsx +0 -21
  1914. package/src/app/[variants]/(main)/discover/(list)/mcp/McpPage.tsx +0 -44
  1915. package/src/app/[variants]/(main)/discover/(list)/model/Client.tsx +0 -44
  1916. package/src/app/[variants]/(main)/discover/(list)/model/ModelLayout.tsx +0 -21
  1917. package/src/app/[variants]/(main)/discover/(list)/model/ModelPage.tsx +0 -44
  1918. package/src/app/[variants]/(main)/discover/(list)/provider/Client.tsx +0 -43
  1919. package/src/app/[variants]/(main)/discover/(list)/provider/ProviderPage.tsx +0 -43
  1920. package/src/app/[variants]/(main)/discover/DiscoverRouter.tsx +0 -170
  1921. package/src/app/[variants]/(main)/discover/[[...path]]/page.tsx +0 -12
  1922. package/src/app/[variants]/(main)/discover/_layout/DiscoverLayout.tsx +0 -22
  1923. package/src/app/[variants]/(main)/discover/error.tsx +0 -3
  1924. package/src/app/[variants]/(main)/discover/not-found.tsx +0 -1
  1925. package/src/app/[variants]/(main)/error.tsx +0 -3
  1926. package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ModelSelect.tsx +0 -161
  1927. package/src/app/[variants]/(main)/image/layout.tsx +0 -19
  1928. package/src/app/[variants]/(main)/image/page.tsx +0 -47
  1929. package/src/app/[variants]/(main)/knowledge/KnowledgeRouter.tsx +0 -73
  1930. package/src/app/[variants]/(main)/knowledge/[[...path]]/page.tsx +0 -12
  1931. package/src/app/[variants]/(main)/knowledge/components/modal/page.tsx +0 -13
  1932. package/src/app/[variants]/(main)/knowledge/layout.tsx +0 -12
  1933. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/MenuItems.tsx +0 -35
  1934. package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/menu/FileMenu.tsx +0 -75
  1935. package/src/app/[variants]/(main)/labs/page.tsx +0 -86
  1936. package/src/app/[variants]/(main)/layout.tsx +0 -10
  1937. package/src/app/[variants]/(main)/not-found.tsx +0 -1
  1938. package/src/app/[variants]/(main)/profile/(home)/[[...slugs]]/page.tsx +0 -40
  1939. package/src/app/[variants]/(main)/profile/apikey/page.tsx +0 -32
  1940. package/src/app/[variants]/(main)/profile/error.tsx +0 -3
  1941. package/src/app/[variants]/(main)/profile/layout.tsx +0 -11
  1942. package/src/app/[variants]/(main)/profile/loading.tsx +0 -3
  1943. package/src/app/[variants]/(main)/profile/not-found.tsx +0 -1
  1944. package/src/app/[variants]/(main)/profile/security/page.tsx +0 -28
  1945. package/src/app/[variants]/(main)/profile/stats/page.tsx +0 -23
  1946. package/src/app/[variants]/(main)/settings/error.tsx +0 -3
  1947. package/src/app/[variants]/(main)/settings/loading.tsx +0 -3
  1948. package/src/app/[variants]/(main)/settings/not-found.tsx +0 -1
  1949. package/src/app/[variants]/(main)/settings/page.tsx +0 -42
  1950. package/src/app/[variants]/(main)/settings/storage/IndexedDBStorage.tsx +0 -55
  1951. package/src/app/[variants]/@modal/(.)changelog/modal/features/Cover.tsx +0 -48
  1952. package/src/app/[variants]/@modal/(.)changelog/modal/features/Hero.tsx +0 -29
  1953. package/src/app/[variants]/@modal/(.)changelog/modal/features/Post.tsx +0 -57
  1954. package/src/app/[variants]/@modal/(.)changelog/modal/features/PublishedTime.tsx +0 -50
  1955. package/src/app/[variants]/@modal/(.)changelog/modal/features/ReadDetail.tsx +0 -72
  1956. package/src/app/[variants]/@modal/(.)changelog/modal/features/VersionTag.tsx +0 -26
  1957. package/src/app/[variants]/@modal/(.)changelog/modal/layout.tsx +0 -41
  1958. package/src/app/[variants]/@modal/(.)changelog/modal/loading.tsx +0 -10
  1959. package/src/app/[variants]/@modal/(.)changelog/modal/page.tsx +0 -38
  1960. package/src/app/[variants]/@modal/_layout/ModalLayout.tsx +0 -63
  1961. package/src/app/[variants]/@modal/_layout/SettingModalLayout.tsx +0 -71
  1962. package/src/app/[variants]/@modal/default.tsx +0 -3
  1963. package/src/app/[variants]/@modal/error.tsx +0 -3
  1964. package/src/app/[variants]/@modal/layout.tsx +0 -7
  1965. package/src/app/[variants]/@modal/loading.tsx +0 -5
  1966. package/src/app/[variants]/loading/Client/Content.tsx +0 -48
  1967. package/src/app/[variants]/loading/Client/Error.tsx +0 -27
  1968. package/src/app/[variants]/loading/Client/Redirect.tsx +0 -47
  1969. package/src/app/[variants]/loading/Client/index.tsx +0 -22
  1970. package/src/app/[variants]/oauth/consent/[uid]/Consent.tsx +0 -189
  1971. package/src/components/InnerLink.tsx +0 -20
  1972. package/src/database/_deprecated/core/__tests__/db-upgrade.test.ts +0 -42
  1973. package/src/database/_deprecated/core/__tests__/db.test.ts +0 -79
  1974. package/src/database/_deprecated/core/__tests__/model.test.ts +0 -55
  1975. package/src/database/_deprecated/core/db.ts +0 -246
  1976. package/src/database/_deprecated/core/index.ts +0 -2
  1977. package/src/database/_deprecated/core/migrations/migrateSettingsToUser/fixtures/input.json +0 -55
  1978. package/src/database/_deprecated/core/migrations/migrateSettingsToUser/fixtures/output.json +0 -60
  1979. package/src/database/_deprecated/core/migrations/migrateSettingsToUser/index.test.ts +0 -14
  1980. package/src/database/_deprecated/core/migrations/migrateSettingsToUser/index.ts +0 -22
  1981. package/src/database/_deprecated/core/migrations/migrateSettingsToUser/type.ts +0 -105
  1982. package/src/database/_deprecated/core/model.ts +0 -218
  1983. package/src/database/_deprecated/core/schemas.ts +0 -88
  1984. package/src/database/_deprecated/core/types/db.ts +0 -15
  1985. package/src/database/_deprecated/models/__DEBUG.ts +0 -124
  1986. package/src/database/_deprecated/models/__tests__/file.test.ts +0 -83
  1987. package/src/database/_deprecated/models/__tests__/message.test.ts +0 -426
  1988. package/src/database/_deprecated/models/__tests__/plugin.test.ts +0 -81
  1989. package/src/database/_deprecated/models/__tests__/session.test.ts +0 -253
  1990. package/src/database/_deprecated/models/__tests__/sessionGroup.test.ts +0 -220
  1991. package/src/database/_deprecated/models/__tests__/topic.test.ts +0 -523
  1992. package/src/database/_deprecated/models/__tests__/user.test.ts +0 -82
  1993. package/src/database/_deprecated/models/file.ts +0 -51
  1994. package/src/database/_deprecated/models/message.ts +0 -277
  1995. package/src/database/_deprecated/models/plugin.ts +0 -62
  1996. package/src/database/_deprecated/models/session.ts +0 -271
  1997. package/src/database/_deprecated/models/sessionGroup.ts +0 -93
  1998. package/src/database/_deprecated/models/topic.ts +0 -250
  1999. package/src/database/_deprecated/models/user.ts +0 -69
  2000. package/src/database/_deprecated/schemas/files.ts +0 -39
  2001. package/src/database/_deprecated/schemas/message.ts +0 -50
  2002. package/src/database/_deprecated/schemas/plugin.ts +0 -12
  2003. package/src/database/_deprecated/schemas/session.ts +0 -54
  2004. package/src/database/_deprecated/schemas/sessionGroup.ts +0 -8
  2005. package/src/database/_deprecated/schemas/topic.ts +0 -12
  2006. package/src/database/_deprecated/schemas/user.ts +0 -40
  2007. package/src/features/ChatInput/ActionBar/Upload/ClientMode.tsx +0 -62
  2008. package/src/features/Conversation/Error/AccessCodeForm.tsx +0 -63
  2009. package/src/features/Conversation/Error/ChatInvalidApiKey.tsx +0 -39
  2010. package/src/features/Conversation/Error/ClerkLogin/index.tsx +0 -47
  2011. package/src/features/Conversation/Error/InvalidAccessCode.tsx +0 -79
  2012. package/src/features/Conversation/Error/OAuthForm.tsx +0 -97
  2013. package/src/features/Conversation/Error/index.tsx +0 -149
  2014. package/src/features/Conversation/MarkdownElements/LobeThinking/Render.tsx +0 -30
  2015. package/src/features/Conversation/MarkdownElements/Thinking/Render.tsx +0 -42
  2016. package/src/features/Conversation/MarkdownElements/remarkPlugins/__snapshots__/createRemarkSelfClosingTagPlugin.test.ts.snap +0 -260
  2017. package/src/features/Conversation/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.test.ts +0 -204
  2018. package/src/features/Conversation/MarkdownElements/remarkPlugins/createRemarkSelfClosingTagPlugin.ts +0 -133
  2019. package/src/features/Conversation/MarkdownElements/remarkPlugins/getNodeContent.test.ts +0 -503
  2020. package/src/features/Conversation/Messages/Assistant/Actions/index.tsx +0 -202
  2021. package/src/features/Conversation/Messages/Assistant/Extra/index.test.tsx +0 -91
  2022. package/src/features/Conversation/Messages/Assistant/Extra/index.tsx +0 -49
  2023. package/src/features/Conversation/Messages/Assistant/MessageContent.tsx +0 -91
  2024. package/src/features/Conversation/Messages/Assistant/Tool/Inspector/PluginResult.tsx +0 -39
  2025. package/src/features/Conversation/Messages/Assistant/Tool/Inspector/PluginState.tsx +0 -23
  2026. package/src/features/Conversation/Messages/Assistant/Tool/Inspector/ToolTitle.tsx +0 -94
  2027. package/src/features/Conversation/Messages/Assistant/Tool/Inspector/index.tsx +0 -147
  2028. package/src/features/Conversation/Messages/Assistant/Tool/Render/CustomRender.tsx +0 -144
  2029. package/src/features/Conversation/Messages/Assistant/Tool/Render/LoadingPlaceholder/index.tsx +0 -29
  2030. package/src/features/Conversation/Messages/Assistant/Tool/Render/PluginSettings.tsx +0 -66
  2031. package/src/features/Conversation/Messages/Assistant/Tool/Render/index.tsx +0 -76
  2032. package/src/features/Conversation/Messages/Assistant/Tool/index.tsx +0 -76
  2033. package/src/features/Conversation/Messages/Assistant/index.tsx +0 -282
  2034. package/src/features/Conversation/Messages/Default.tsx +0 -27
  2035. package/src/features/Conversation/Messages/Supervisor/index.tsx +0 -185
  2036. package/src/features/Conversation/Messages/User/Actions.tsx +0 -158
  2037. package/src/features/Conversation/Messages/User/Extra.tsx +0 -39
  2038. package/src/features/Conversation/Messages/User/index.tsx +0 -188
  2039. package/src/features/Conversation/Messages/index.tsx +0 -164
  2040. package/src/features/Conversation/components/AutoScroll.tsx +0 -27
  2041. package/src/features/Conversation/components/Extras/TTS/InitPlayer.tsx +0 -93
  2042. package/src/features/Conversation/components/Extras/Usage/UsageDetail/index.tsx +0 -224
  2043. package/src/features/Conversation/components/Extras/Usage/UsageDetail/tokens.ts +0 -132
  2044. package/src/features/Conversation/components/Extras/Usage/index.tsx +0 -45
  2045. package/src/features/Conversation/components/ShareMessageModal/ShareImage/Preview.tsx +0 -90
  2046. package/src/features/Conversation/components/ShareMessageModal/index.tsx +0 -96
  2047. package/src/features/Conversation/components/SkeletonList.tsx +0 -58
  2048. package/src/features/Conversation/components/VirtualizedList/VirtuosoContext.ts +0 -92
  2049. package/src/features/Conversation/components/VirtualizedList/index.tsx +0 -128
  2050. package/src/features/Conversation/components/WideScreenContainer/index.tsx +0 -46
  2051. package/src/features/Conversation/hooks/useChatListActionsBar.tsx +0 -119
  2052. package/src/features/Conversation/hooks/useDoubleClickEdit.ts +0 -42
  2053. package/src/features/DataImporter/_deprecated.ts +0 -43
  2054. package/src/features/FileManager/FileList/FileListItem/index.tsx +0 -231
  2055. package/src/features/FileManager/FileList/MasonryFileItem/index.tsx +0 -582
  2056. package/src/features/FileManager/FileList/index.tsx +0 -266
  2057. package/src/features/FileManager/Header/FilesSearchBar.tsx +0 -45
  2058. package/src/features/FileManager/Header/TogglePanelButton.tsx +0 -42
  2059. package/src/features/FileManager/Header/index.tsx +0 -27
  2060. package/src/features/FileManager/index.tsx +0 -36
  2061. package/src/features/InitClientDB/EnableModal.tsx +0 -118
  2062. package/src/features/InitClientDB/ErrorResult.tsx +0 -143
  2063. package/src/features/InitClientDB/InitIndicator.tsx +0 -124
  2064. package/src/features/InitClientDB/PGliteIcon.tsx +0 -28
  2065. package/src/features/InitClientDB/features/DatabaseRepair/Backup.tsx +0 -75
  2066. package/src/features/InitClientDB/features/DatabaseRepair/Diagnosis.tsx +0 -98
  2067. package/src/features/InitClientDB/features/DatabaseRepair/Repair.tsx +0 -218
  2068. package/src/features/InitClientDB/features/DatabaseRepair/index.tsx +0 -91
  2069. package/src/features/InitClientDB/index.tsx +0 -37
  2070. package/src/hooks/_header.ts +0 -23
  2071. package/src/libs/trpc/client/edge.ts +0 -26
  2072. package/src/libs/trpc/edge/context.ts +0 -71
  2073. package/src/libs/trpc/edge/index.ts +0 -45
  2074. package/src/libs/trpc/edge/init.ts +0 -26
  2075. package/src/libs/trpc/edge/middleware/jwtPayload.test.ts +0 -75
  2076. package/src/libs/trpc/edge/middleware/jwtPayload.ts +0 -14
  2077. package/src/migrations/FromV0ToV1.ts +0 -10
  2078. package/src/migrations/FromV1ToV2/fixtures/input-v1-session.json +0 -191
  2079. package/src/migrations/FromV1ToV2/fixtures/output-v2.json +0 -202
  2080. package/src/migrations/FromV1ToV2/index.ts +0 -82
  2081. package/src/migrations/FromV1ToV2/migrations.test.ts +0 -224
  2082. package/src/migrations/FromV1ToV2/types/v1.ts +0 -78
  2083. package/src/migrations/FromV1ToV2/types/v2.ts +0 -52
  2084. package/src/migrations/FromV2ToV3/fixtures/input-v2-session.json +0 -72
  2085. package/src/migrations/FromV2ToV3/fixtures/output-v3-from-v1.json +0 -203
  2086. package/src/migrations/FromV2ToV3/fixtures/output-v3.json +0 -74
  2087. package/src/migrations/FromV2ToV3/index.ts +0 -30
  2088. package/src/migrations/FromV2ToV3/migrations.test.ts +0 -42
  2089. package/src/migrations/FromV2ToV3/types/v3.ts +0 -27
  2090. package/src/migrations/FromV3ToV4/fixtures/azure-input-v3.json +0 -79
  2091. package/src/migrations/FromV3ToV4/fixtures/azure-output-v4.json +0 -75
  2092. package/src/migrations/FromV3ToV4/fixtures/ollama-input-v3.json +0 -85
  2093. package/src/migrations/FromV3ToV4/fixtures/ollama-output-v4.json +0 -86
  2094. package/src/migrations/FromV3ToV4/fixtures/openai-input-v3.json +0 -77
  2095. package/src/migrations/FromV3ToV4/fixtures/openai-output-v4.json +0 -77
  2096. package/src/migrations/FromV3ToV4/fixtures/openrouter-input-v3.json +0 -82
  2097. package/src/migrations/FromV3ToV4/fixtures/openrouter-output-v4.json +0 -85
  2098. package/src/migrations/FromV3ToV4/fixtures/output-v4-from-v1.json +0 -203
  2099. package/src/migrations/FromV3ToV4/index.ts +0 -102
  2100. package/src/migrations/FromV3ToV4/migrations.test.ts +0 -195
  2101. package/src/migrations/FromV3ToV4/types/v3.ts +0 -52
  2102. package/src/migrations/FromV3ToV4/types/v4.ts +0 -37
  2103. package/src/migrations/FromV4ToV5/fixtures/from-v1-to-v5-output.json +0 -245
  2104. package/src/migrations/FromV4ToV5/fixtures/function-input-v4.json +0 -96
  2105. package/src/migrations/FromV4ToV5/fixtures/function-output-v5.json +0 -120
  2106. package/src/migrations/FromV4ToV5/index.ts +0 -58
  2107. package/src/migrations/FromV4ToV5/migrations.test.ts +0 -49
  2108. package/src/migrations/FromV4ToV5/types/v4.ts +0 -21
  2109. package/src/migrations/FromV4ToV5/types/v5.ts +0 -27
  2110. package/src/migrations/FromV5ToV6/fixtures/from-v1-to-v6-output.json +0 -247
  2111. package/src/migrations/FromV5ToV6/fixtures/session-input-v5.json +0 -81
  2112. package/src/migrations/FromV5ToV6/fixtures/session-output-v6.json +0 -85
  2113. package/src/migrations/FromV5ToV6/index.ts +0 -61
  2114. package/src/migrations/FromV5ToV6/migrations.test.ts +0 -50
  2115. package/src/migrations/FromV5ToV6/types/v5.ts +0 -48
  2116. package/src/migrations/FromV5ToV6/types/v6.ts +0 -63
  2117. package/src/migrations/FromV6ToV7/fixtures/output-v7-from-v1.json +0 -203
  2118. package/src/migrations/FromV6ToV7/fixtures/provider-input-v6.json +0 -103
  2119. package/src/migrations/FromV6ToV7/fixtures/provider-output-v7.json +0 -118
  2120. package/src/migrations/FromV6ToV7/index.ts +0 -101
  2121. package/src/migrations/FromV6ToV7/migrations.test.ts +0 -64
  2122. package/src/migrations/FromV6ToV7/types/v6.ts +0 -61
  2123. package/src/migrations/FromV6ToV7/types/v7.ts +0 -69
  2124. package/src/migrations/VersionController.test.ts +0 -88
  2125. package/src/migrations/VersionController.ts +0 -67
  2126. package/src/migrations/index.ts +0 -61
  2127. package/src/server/globalConfig/_deprecated.test.ts +0 -92
  2128. package/src/server/globalConfig/_deprecated.ts +0 -41
  2129. package/src/server/routers/edge/appStatus.ts +0 -3
  2130. package/src/server/routers/edge/index.ts +0 -14
  2131. package/src/server/routers/edge/upload.ts +0 -16
  2132. package/src/services/__tests__/share.test.ts +0 -61
  2133. package/src/services/aiModel/client.ts +0 -70
  2134. package/src/services/aiModel/server.test.ts +0 -122
  2135. package/src/services/aiModel/server.ts +0 -51
  2136. package/src/services/aiModel/type.ts +0 -32
  2137. package/src/services/aiProvider/client.ts +0 -58
  2138. package/src/services/aiProvider/server.ts +0 -43
  2139. package/src/services/aiProvider/type.ts +0 -27
  2140. package/src/services/baseClientService/index.ts +0 -9
  2141. package/src/services/chatGroup/client.ts +0 -63
  2142. package/src/services/chatGroup/server.ts +0 -67
  2143. package/src/services/chatGroup/type.ts +0 -22
  2144. package/src/services/export/_deprecated.ts +0 -155
  2145. package/src/services/export/client.ts +0 -15
  2146. package/src/services/export/server.ts +0 -9
  2147. package/src/services/export/type.ts +0 -5
  2148. package/src/services/file/ClientS3/index.test.ts +0 -115
  2149. package/src/services/file/ClientS3/index.ts +0 -59
  2150. package/src/services/file/_deprecated.test.ts +0 -119
  2151. package/src/services/file/_deprecated.ts +0 -80
  2152. package/src/services/file/client.test.ts +0 -199
  2153. package/src/services/file/client.ts +0 -85
  2154. package/src/services/file/server.ts +0 -53
  2155. package/src/services/file/type.ts +0 -13
  2156. package/src/services/import/_deprecated.ts +0 -115
  2157. package/src/services/import/client.test.ts +0 -1015
  2158. package/src/services/import/client.ts +0 -64
  2159. package/src/services/import/server.ts +0 -133
  2160. package/src/services/import/type.ts +0 -17
  2161. package/src/services/message/__tests__/server.test.ts +0 -44
  2162. package/src/services/message/_deprecated.test.ts +0 -398
  2163. package/src/services/message/_deprecated.ts +0 -168
  2164. package/src/services/message/client.test.ts +0 -410
  2165. package/src/services/message/client.ts +0 -192
  2166. package/src/services/message/server.ts +0 -155
  2167. package/src/services/message/type.ts +0 -59
  2168. package/src/services/plugin/_deprecated.test.ts +0 -162
  2169. package/src/services/plugin/_deprecated.ts +0 -42
  2170. package/src/services/plugin/client.test.ts +0 -177
  2171. package/src/services/plugin/client.ts +0 -46
  2172. package/src/services/plugin/server.ts +0 -42
  2173. package/src/services/plugin/type.ts +0 -23
  2174. package/src/services/session/_deprecated.test.ts +0 -440
  2175. package/src/services/session/_deprecated.ts +0 -190
  2176. package/src/services/session/client.test.ts +0 -413
  2177. package/src/services/session/client.ts +0 -193
  2178. package/src/services/session/server.test.ts +0 -260
  2179. package/src/services/session/server.ts +0 -125
  2180. package/src/services/session/type.ts +0 -82
  2181. package/src/services/thread/client.ts +0 -51
  2182. package/src/services/thread/server.ts +0 -32
  2183. package/src/services/thread/type.ts +0 -21
  2184. package/src/services/topic/_deprecated.test.ts +0 -245
  2185. package/src/services/topic/_deprecated.ts +0 -75
  2186. package/src/services/topic/client.ts +0 -89
  2187. package/src/services/topic/pglite.test.ts +0 -212
  2188. package/src/services/topic/server.ts +0 -57
  2189. package/src/services/topic/type.ts +0 -40
  2190. package/src/services/user/_deprecated.test.ts +0 -101
  2191. package/src/services/user/_deprecated.ts +0 -70
  2192. package/src/services/user/client.test.ts +0 -111
  2193. package/src/services/user/client.ts +0 -104
  2194. package/src/services/user/server.test.ts +0 -149
  2195. package/src/services/user/server.ts +0 -47
  2196. package/src/services/user/type.ts +0 -21
  2197. package/src/store/chat/slices/aiChat/actions/__tests__/generateAIChat.test.ts +0 -1209
  2198. package/src/store/chat/slices/aiChat/actions/__tests__/generateAIChatV2.test.ts +0 -718
  2199. package/src/store/chat/slices/aiChat/actions/generateAIChat.ts +0 -849
  2200. package/src/store/chat/slices/aiChat/actions/generateAIChatV2.ts +0 -591
  2201. package/src/store/chat/slices/message/action.ts +0 -641
  2202. package/src/store/chat/slices/plugin/action.ts +0 -505
  2203. package/src/store/global/actions/clientDb.ts +0 -67
  2204. package/src/store/middleware/createHyperStorage/index.test.ts +0 -341
  2205. package/src/store/middleware/createHyperStorage/index.ts +0 -126
  2206. package/src/store/middleware/createHyperStorage/indexedDB.test.ts +0 -64
  2207. package/src/store/middleware/createHyperStorage/indexedDB.ts +0 -26
  2208. package/src/store/middleware/createHyperStorage/keyMapper.ts +0 -57
  2209. package/src/store/middleware/createHyperStorage/localStorage.ts +0 -18
  2210. package/src/store/middleware/createHyperStorage/type.ts +0 -25
  2211. package/src/store/middleware/createHyperStorage/urlStorage.test.ts +0 -84
  2212. package/src/store/middleware/createHyperStorage/urlStorage.ts +0 -81
  2213. package/src/store/user/slices/modelList/__snapshots__/action.test.ts.snap +0 -12
  2214. package/src/store/user/slices/modelList/action.test.ts +0 -359
  2215. package/src/store/user/slices/modelList/action.ts +0 -223
  2216. package/src/store/user/slices/modelList/initialState.ts +0 -15
  2217. package/src/store/user/slices/modelList/reducers/customModelCard.test.ts +0 -204
  2218. package/src/store/user/slices/modelList/reducers/customModelCard.ts +0 -64
  2219. package/src/store/user/slices/modelList/selectors/index.ts +0 -3
  2220. package/src/store/user/slices/modelList/selectors/keyVaults.test.ts +0 -201
  2221. package/src/store/user/slices/modelList/selectors/keyVaults.ts +0 -50
  2222. package/src/store/user/slices/modelList/selectors/modelConfig.test.ts +0 -219
  2223. package/src/store/user/slices/modelList/selectors/modelConfig.ts +0 -95
  2224. package/src/store/user/slices/modelList/selectors/modelProvider.test.ts +0 -138
  2225. package/src/store/user/slices/modelList/selectors/modelProvider.ts +0 -170
  2226. package/src/store/user/slices/preference/selectors.ts +0 -34
  2227. package/src/tools/local-system/Placeholder/index.tsx +0 -25
  2228. package/src/tools/local-system/Render/index.tsx +0 -40
  2229. package/src/tools/web-browsing/Placeholder/PageContent.tsx +0 -27
  2230. package/src/tools/web-browsing/Placeholder/index.tsx +0 -40
  2231. package/src/tools/web-browsing/Render/index.tsx +0 -57
  2232. /package/packages/{utils/src/fetch → fetch-sse/src}/index.ts +0 -0
  2233. /package/src/app/[variants]/{@modal/(.)changelog/modal → (main)/changelog}/features/Pagination.tsx +0 -0
  2234. /package/src/app/[variants]/{@modal/(.)changelog/modal → (main)/changelog}/features/UpdateChangelogStatus.tsx +0 -0
  2235. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/default.tsx +0 -0
  2236. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/Desktop/useSendMenuItems.tsx +0 -0
  2237. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/Mobile/MentionedUsers/MentionedUserItem.tsx +0 -0
  2238. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/Mobile/MentionedUsers/index.tsx +0 -0
  2239. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/Mobile/index.tsx +0 -0
  2240. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/ActionBar.tsx +0 -0
  2241. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/Files/index.tsx +0 -0
  2242. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/InputArea/Container.tsx +0 -0
  2243. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/InputArea/index.tsx +0 -0
  2244. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/V1Mobile/Send.tsx +0 -0
  2245. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatInput/index.tsx +0 -0
  2246. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/ChatItem/OrchestratorThinking.tsx +0 -0
  2247. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/ChatItem/ThreadItem.tsx +0 -0
  2248. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/AgentWelcome/AddButton.tsx +0 -0
  2249. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/AgentWelcome/index.tsx +0 -0
  2250. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/GroupWelcome/index.tsx +0 -0
  2251. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/GroupWelcome/useTemplateMatching.ts +0 -0
  2252. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ChatList/WelcomeChatItem/index.tsx +0 -0
  2253. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ZenModeToast/Toast.tsx +0 -0
  2254. /package/src/app/[variants]/(main)/chat/{(workspace)/@conversation → components/conversation}/features/ZenModeToast/index.tsx +0 -0
  2255. /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/AgentSettings/index.tsx +0 -0
  2256. /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/AgentTeamSettings/index.tsx +0 -0
  2257. /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/ChangelogModal.tsx +0 -0
  2258. /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/SettingButton.tsx +0 -0
  2259. /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/ShareButton/index.tsx +0 -0
  2260. /package/src/app/[variants]/(main)/chat/{(workspace) → components}/features/TelemetryNotification.tsx +0 -0
  2261. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/HeaderAction.tsx +0 -0
  2262. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Main.tsx +0 -0
  2263. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/HistoryLimitTags.tsx +0 -0
  2264. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/KnowledgeTag.tsx +0 -0
  2265. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/MemberCountTag.tsx +0 -0
  2266. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/SearchTags.tsx +0 -0
  2267. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/Tags/index.tsx +0 -0
  2268. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/ChatHeader/index.tsx +0 -0
  2269. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/Portal.tsx +0 -0
  2270. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/TopicPanel.tsx +0 -0
  2271. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Desktop/index.tsx +0 -0
  2272. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Mobile/ChatHeader/ChatHeaderTitle.tsx +0 -0
  2273. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Mobile/ChatHeader/index.tsx +0 -0
  2274. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Mobile/TopicModal.tsx +0 -0
  2275. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/Mobile/index.tsx +0 -0
  2276. /package/src/app/[variants]/(main)/chat/{(workspace)/_layout → components/layout}/type.ts +0 -0
  2277. /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/_layout/Desktop.tsx +0 -0
  2278. /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/_layout/Mobile.tsx +0 -0
  2279. /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/default.tsx +0 -0
  2280. /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/error.tsx +0 -0
  2281. /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/features/Body.tsx +0 -0
  2282. /package/src/app/[variants]/(main)/chat/{(workspace)/@portal → components/portal}/loading.tsx +0 -0
  2283. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/_layout/Desktop.tsx +0 -0
  2284. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/_layout/Mobile.tsx +0 -0
  2285. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/default.tsx +0 -0
  2286. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/AgentConfig/SystemRole.tsx +0 -0
  2287. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/AgentConfig/index.tsx +0 -0
  2288. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/ConfigLayout.tsx +0 -0
  2289. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/ConfigSwitcher.tsx +0 -0
  2290. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/GroupMember.tsx +0 -0
  2291. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/GroupMemberItem.tsx +0 -0
  2292. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/GroupRole.tsx +0 -0
  2293. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/index.tsx +0 -0
  2294. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/GroupConfig/style.ts +0 -0
  2295. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/SkeletonList.tsx +0 -0
  2296. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/Header.tsx +0 -0
  2297. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ByTimeMode/GroupItem.tsx +0 -0
  2298. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ByTimeMode/index.tsx +0 -0
  2299. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/FlatMode/index.tsx +0 -0
  2300. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/SearchResult/index.tsx +0 -0
  2301. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ThreadItem/Content.tsx +0 -0
  2302. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ThreadItem/index.tsx +0 -0
  2303. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/ThreadList/index.tsx +0 -0
  2304. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/TopicItem/DefaultContent.tsx +0 -0
  2305. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicListContent/index.tsx +0 -0
  2306. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/TopicSearchBar/index.tsx +0 -0
  2307. /package/src/app/[variants]/(main)/chat/{(workspace)/@topic → components/topic}/features/Topic/index.tsx +0 -0
  2308. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/CollapseGroup/Actions.tsx +0 -0
  2309. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/CollapseGroup/index.tsx +0 -0
  2310. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/DefaultMode.tsx +0 -0
  2311. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/List/AddButton.tsx +0 -0
  2312. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/ListItem/index.tsx +0 -0
  2313. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/ConfigGroupModal/GroupItem.tsx +0 -0
  2314. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/ConfigGroupModal/index.tsx +0 -0
  2315. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/CreateGroupModal.tsx +0 -0
  2316. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/Modals/RenameGroupModal.tsx +0 -0
  2317. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/SearchMode.tsx +0 -0
  2318. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionListContent/index.tsx +0 -0
  2319. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SessionSearchBar.tsx +0 -0
  2320. /package/src/app/[variants]/(main)/chat/{@session → session}/features/SkeletonList.tsx +0 -0
  2321. /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Desktop/PanelBody.tsx +0 -0
  2322. /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Desktop/SessionHeader.tsx +0 -0
  2323. /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Desktop/index.tsx +0 -0
  2324. /package/src/app/[variants]/(main)/chat/{@session/_layout → session/layout}/Mobile/index.tsx +0 -0
  2325. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/DetailProvider.tsx +0 -0
  2326. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/Knowledge.tsx +0 -0
  2327. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/KnowledgeItem.tsx +0 -0
  2328. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/PluginItem.tsx +0 -0
  2329. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/Plugins.tsx +0 -0
  2330. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Details/Capabilities/index.tsx +0 -0
  2331. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Sidebar/Related/Item.tsx +0 -0
  2332. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Sidebar/Summary/index.tsx +0 -0
  2333. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/features → features}/Sidebar/index.tsx +0 -0
  2334. /package/src/app/[variants]/(main)/discover/(detail)/assistant/{[...slugs]/loading.tsx → loading.tsx} +0 -0
  2335. /package/src/app/[variants]/(main)/discover/(detail)/mcp/{[slug]/features → features}/Sidebar/ActionButton/index.tsx +0 -0
  2336. /package/src/app/[variants]/(main)/discover/(detail)/mcp/{[slug]/features → features}/Sidebar/ConnectionTypeAlert.tsx +0 -0
  2337. /package/src/app/[variants]/(main)/discover/(detail)/mcp/{[slug]/features → features}/Sidebar/Related/Item.tsx +0 -0
  2338. /package/src/app/[variants]/(main)/discover/(detail)/mcp/{[slug]/features → features}/Sidebar/index.tsx +0 -0
  2339. /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/DetailProvider.tsx +0 -0
  2340. /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Details/Nav.tsx +0 -0
  2341. /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Details/Overview/ProviderList/index.tsx +0 -0
  2342. /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Details/Parameter/index.tsx +0 -0
  2343. /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Sidebar/Related/Item.tsx +0 -0
  2344. /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Sidebar/RelatedProviders/Item.tsx +0 -0
  2345. /package/src/app/[variants]/(main)/discover/(detail)/model/{[...slugs]/features → features}/Sidebar/index.tsx +0 -0
  2346. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/DetailProvider.tsx +0 -0
  2347. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Details/Guide/index.tsx +0 -0
  2348. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Details/Nav.tsx +0 -0
  2349. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Details/Overview/ModelList/index.tsx +0 -0
  2350. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Details/Overview/index.tsx +0 -0
  2351. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Header.tsx +0 -0
  2352. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Sidebar/Related/Item.tsx +0 -0
  2353. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Sidebar/RelatedModels/Item.tsx +0 -0
  2354. /package/src/app/[variants]/(main)/discover/(detail)/provider/{[...slugs]/features → features}/Sidebar/index.tsx +0 -0
  2355. /package/src/app/[variants]/(main)/{_layout/Desktop → layouts/desktop}/RegisterHotkeys.tsx +0 -0
  2356. /package/src/app/[variants]/(main)/{_layout/Desktop → layouts/desktop}/SideBar/Avatar.test.tsx +0 -0
  2357. /package/src/app/[variants]/(main)/{_layout/Desktop → layouts/desktop}/SideBar/Avatar.tsx +0 -0
  2358. /package/src/app/[variants]/(main)/{_layout/Desktop → layouts/desktop}/SideBar/index.tsx +0 -0
  2359. /package/src/app/[variants]/(main)/settings/provider/detail/newapi/{page.tsx → index.tsx} +0 -0
  2360. /package/src/app/[variants]/{(main)/chat/loading.tsx → loading.tsx} +0 -0
  2361. /package/src/{app/[variants]/(main)/settings/provider/features/ProviderConfig → components/Skeleton}/SkeletonInput.tsx +0 -0
  2362. /package/src/features/{Conversation → ChatList}/Error/ErrorJsonViewer.tsx +0 -0
  2363. /package/src/features/{Conversation → ChatList}/Error/OllamaBizError/InvalidOllamaModel.tsx +0 -0
  2364. /package/src/features/{Conversation → ChatList}/Error/OllamaBizError/index.tsx +0 -0
  2365. /package/src/features/{Conversation → ChatList}/Error/style.tsx +0 -0
  2366. /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/Render/Icon.tsx +0 -0
  2367. /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/Render/index.tsx +0 -0
  2368. /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/index.ts +0 -0
  2369. /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/rehypePlugin.test.ts +0 -0
  2370. /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeArtifact/rehypePlugin.ts +0 -0
  2371. /package/src/features/{Conversation → ChatList}/MarkdownElements/LobeThinking/index.ts +0 -0
  2372. /package/src/features/{Conversation → ChatList}/MarkdownElements/LocalFile/Render/index.tsx +0 -0
  2373. /package/src/features/{Conversation → ChatList}/MarkdownElements/LocalFile/index.ts +0 -0
  2374. /package/src/features/{Conversation → ChatList}/MarkdownElements/Mention/Render.tsx +0 -0
  2375. /package/src/features/{Conversation → ChatList}/MarkdownElements/Mention/index.ts +0 -0
  2376. /package/src/features/{Conversation → ChatList}/MarkdownElements/Thinking/index.ts +0 -0
  2377. /package/src/features/{Conversation → ChatList}/MarkdownElements/index.ts +0 -0
  2378. /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/createRemarkCustomTagPlugin.ts +0 -0
  2379. /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/createRemarkCustomTagWithAttributesPlugin.ts +0 -0
  2380. /package/src/features/{Conversation → ChatList}/MarkdownElements/remarkPlugins/getNodeContent.ts +0 -0
  2381. /package/src/features/{Conversation → ChatList}/MarkdownElements/type.ts +0 -0
  2382. /package/src/features/{Conversation → ChatList}/MarkdownElements/utils.ts +0 -0
  2383. /package/src/features/{Conversation → ChatList}/Messages/Assistant/Actions/Error.tsx +0 -0
  2384. /package/src/features/{Conversation → ChatList}/Messages/Assistant/FileChunks/Item/index.tsx +0 -0
  2385. /package/src/features/{Conversation → ChatList}/Messages/Assistant/FileChunks/Item/style.ts +0 -0
  2386. /package/src/features/{Conversation → ChatList}/Messages/Assistant/FileChunks/index.tsx +0 -0
  2387. /package/src/features/{Conversation → ChatList}/Messages/Assistant/IntentUnderstanding.tsx +0 -0
  2388. /package/src/features/{Conversation → ChatList}/Messages/Assistant/Reasoning/index.tsx +0 -0
  2389. /package/src/features/{Conversation → ChatList}/Messages/Assistant/SearchGrounding.tsx +0 -0
  2390. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages/Group}/Tool/Inspector/Settings.tsx +0 -0
  2391. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages/Group}/Tool/Render/Arguments/ObjectEntity.tsx +0 -0
  2392. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages/Group}/Tool/Render/Arguments/ValueCell.tsx +0 -0
  2393. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages/Group}/Tool/Render/ErrorResponse.tsx +0 -0
  2394. /package/src/features/{Conversation → ChatList}/Messages/Supervisor/TodoList.tsx +0 -0
  2395. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages}/Tool/Inspector/BuiltinPluginTitle.tsx +0 -0
  2396. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages}/Tool/Inspector/Debug.tsx +0 -0
  2397. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages}/Tool/Render/Arguments/index.tsx +0 -0
  2398. /package/src/features/{Conversation/Messages/Assistant → ChatList/Messages}/Tool/Render/KeyValueEditor.tsx +0 -0
  2399. /package/src/features/{Conversation → ChatList}/Messages/User/BelowMessage.tsx +0 -0
  2400. /package/src/features/{Conversation → ChatList}/Messages/User/FileListViewer/Item.tsx +0 -0
  2401. /package/src/features/{Conversation → ChatList}/Messages/User/FileListViewer/index.tsx +0 -0
  2402. /package/src/features/{Conversation → ChatList}/Messages/User/ImageFileListViewer.tsx +0 -0
  2403. /package/src/features/{Conversation → ChatList}/Messages/User/MarkdownRender/ContentPreview.tsx +0 -0
  2404. /package/src/features/{Conversation → ChatList}/Messages/User/MarkdownRender/index.tsx +0 -0
  2405. /package/src/features/{Conversation → ChatList}/Messages/User/MessageContent.tsx +0 -0
  2406. /package/src/features/{Conversation → ChatList}/Messages/User/VideoFileListViewer.tsx +0 -0
  2407. /package/src/features/{Conversation → ChatList}/components/BackBottom/index.tsx +0 -0
  2408. /package/src/features/{Conversation → ChatList}/components/BackBottom/style.ts +0 -0
  2409. /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/PdfPreview.tsx +0 -0
  2410. /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/index.tsx +0 -0
  2411. /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/style.ts +0 -0
  2412. /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/template.ts +0 -0
  2413. /package/src/features/{Conversation → ChatList}/components/ChatItem/ShareMessageModal/SharePdf/usePdfGeneration.ts +0 -0
  2414. /package/src/features/{Conversation → ChatList}/components/Extras/ExtraContainer.tsx +0 -0
  2415. /package/src/features/{Conversation → ChatList}/components/Extras/TTS/FilePlayer.tsx +0 -0
  2416. /package/src/features/{Conversation → ChatList}/components/Extras/TTS/Player.tsx +0 -0
  2417. /package/src/features/{Conversation → ChatList}/components/Extras/TTS/index.tsx +0 -0
  2418. /package/src/features/{Conversation → ChatList}/components/Extras/Translate.tsx +0 -0
  2419. /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/ModelCard.tsx +0 -0
  2420. /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/TokenProgress.tsx +0 -0
  2421. /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/pricing.ts +0 -0
  2422. /package/src/features/{Conversation → ChatList}/components/Extras/Usage/UsageDetail/tokens.test.ts +0 -0
  2423. /package/src/features/{Conversation → ChatList}/components/History/HistoryDivider.tsx +0 -0
  2424. /package/src/features/{Conversation → ChatList}/components/History/index.tsx +0 -0
  2425. /package/src/features/{Conversation → ChatList}/components/OTPInput.tsx +0 -0
  2426. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareImage/index.tsx +0 -0
  2427. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareImage/style.ts +0 -0
  2428. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareImage/type.ts +0 -0
  2429. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/Preview.tsx +0 -0
  2430. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/index.tsx +0 -0
  2431. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/template.test.ts +0 -0
  2432. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/template.ts +0 -0
  2433. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/ShareText/type.ts +0 -0
  2434. /package/src/features/{Conversation → ChatList}/components/ShareMessageModal/style.ts +0 -0
  2435. /package/src/features/{Conversation → ChatList}/components/ThreadDivider/index.tsx +0 -0
  2436. /package/src/features/{Conversation → ChatList}/context/InPortalThreadContext.ts +0 -0
  2437. /package/src/features/{Conversation → ChatList}/index.ts +0 -0
  2438. /package/src/features/{Conversation → ChatList}/types/index.ts +0 -0
  2439. /package/src/features/{Conversation → ChatList}/utils/markdown.test.ts +0 -0
  2440. /package/src/features/{Conversation → ChatList}/utils/markdown.ts +0 -0
  2441. /package/src/features/{FileManager/FileList/ToolBar → KnowledgeBaseModal/AssignKnowledgeBase}/ViewSwitcher.tsx +0 -0
  2442. /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/ChunkList/ChunkItem.tsx +0 -0
  2443. /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/ChunkList/index.tsx +0 -0
  2444. /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/Content.tsx +0 -0
  2445. /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/Loading/index.tsx +0 -0
  2446. /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/SimilaritySearchList/Item.tsx +0 -0
  2447. /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/SimilaritySearchList/index.tsx +0 -0
  2448. /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/index.tsx +0 -0
  2449. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/EmptyStatus.tsx +0 -0
  2450. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/FileListItem/ChunkTag.tsx +0 -0
  2451. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/FileListItem/DropdownMenu.tsx +0 -0
  2452. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/FileSkeleton.tsx +0 -0
  2453. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/MasonryFileItem/MasonryItemWrapper.tsx +0 -0
  2454. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/MasonrySkeleton.tsx +0 -0
  2455. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/ToolBar/Config.tsx +0 -0
  2456. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/ToolBar/MultiSelectActions.tsx +0 -0
  2457. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/ToolBar/index.tsx +0 -0
  2458. /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/useCheckTaskStatus.ts +0 -0
  2459. /package/src/features/{FileManager → KnowledgeManager}/Header/UploadFileButton.tsx +0 -0
  2460. /package/src/features/{FileManager → KnowledgeManager}/UploadDock/Item.tsx +0 -0
  2461. /package/src/features/{FileManager → KnowledgeManager}/UploadDock/index.tsx +0 -0
  2462. /package/{packages/utils/src → src/utils/server}/__snapshots__/parseModels.test.ts.snap +0 -0
  2463. /package/{packages/utils/src → src/utils/server}/parseModels.test.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -2,6 +2,2518 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ## [Version 2.0.0-next.111](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.110...v2.0.0-next.111)
6
+
7
+ <sup>Released on **2025-11-24**</sup>
8
+
9
+ #### 🐛 Bug Fixes
10
+
11
+ - **misc**: Fix db migration snapshot not align with db schema, Separate agent file injection from knowledge base RAG search.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### What's fixed
19
+
20
+ - **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))
21
+ - **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))
22
+
23
+ </details>
24
+
25
+ <div align="right">
26
+
27
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
28
+
29
+ </div>
30
+
31
+ ## [Version 2.0.0-next.110](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.109...v2.0.0-next.110)
32
+
33
+ <sup>Released on **2025-11-24**</sup>
34
+
35
+ #### 💄 Styles
36
+
37
+ - **misc**: Add hyperlink to each topic & pinned agent, support ContextMenu on ChatItem.
38
+
39
+ <br/>
40
+
41
+ <details>
42
+ <summary><kbd>Improvements and Fixes</kbd></summary>
43
+
44
+ #### Styles
45
+
46
+ - **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))
47
+ - **misc**: Support ContextMenu on ChatItem, closes [#9034](https://github.com/lobehub/lobe-chat/issues/9034) ([27c1154](https://github.com/lobehub/lobe-chat/commit/27c1154))
48
+
49
+ </details>
50
+
51
+ <div align="right">
52
+
53
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
54
+
55
+ </div>
56
+
57
+ ## [Version 2.0.0-next.109](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.108...v2.0.0-next.109)
58
+
59
+ <sup>Released on **2025-11-24**</sup>
60
+
61
+ #### 🐛 Bug Fixes
62
+
63
+ - **misc**: Fixed the knowledge files cant open error.
64
+
65
+ #### 💄 Styles
66
+
67
+ - **misc**: Update i18n.
68
+
69
+ <br/>
70
+
71
+ <details>
72
+ <summary><kbd>Improvements and Fixes</kbd></summary>
73
+
74
+ #### What's fixed
75
+
76
+ - **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))
77
+
78
+ #### Styles
79
+
80
+ - **misc**: Update i18n, closes [#10368](https://github.com/lobehub/lobe-chat/issues/10368) ([ed707af](https://github.com/lobehub/lobe-chat/commit/ed707af))
81
+
82
+ </details>
83
+
84
+ <div align="right">
85
+
86
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
87
+
88
+ </div>
89
+
90
+ ## [Version 2.0.0-next.108](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.107...v2.0.0-next.108)
91
+
92
+ <sup>Released on **2025-11-24**</sup>
93
+
94
+ #### 🐛 Bug Fixes
95
+
96
+ - **misc**: Fixed the pinned session not work.
97
+
98
+ <br/>
99
+
100
+ <details>
101
+ <summary><kbd>Improvements and Fixes</kbd></summary>
102
+
103
+ #### What's fixed
104
+
105
+ - **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))
106
+
107
+ </details>
108
+
109
+ <div align="right">
110
+
111
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
112
+
113
+ </div>
114
+
115
+ ## [Version 2.0.0-next.107](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.106...v2.0.0-next.107)
116
+
117
+ <sup>Released on **2025-11-23**</sup>
118
+
119
+ #### 💄 Styles
120
+
121
+ - **misc**: Optimize nana banana pro error message.
122
+
123
+ <br/>
124
+
125
+ <details>
126
+ <summary><kbd>Improvements and Fixes</kbd></summary>
127
+
128
+ #### Styles
129
+
130
+ - **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))
131
+
132
+ </details>
133
+
134
+ <div align="right">
135
+
136
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
137
+
138
+ </div>
139
+
140
+ ## [Version 2.0.0-next.106](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.105...v2.0.0-next.106)
141
+
142
+ <sup>Released on **2025-11-23**</sup>
143
+
144
+ #### ✨ Features
145
+
146
+ - **misc**: Add nano-banana-pro model support and optimization.
147
+
148
+ <br/>
149
+
150
+ <details>
151
+ <summary><kbd>Improvements and Fixes</kbd></summary>
152
+
153
+ #### What's improved
154
+
155
+ - **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))
156
+
157
+ </details>
158
+
159
+ <div align="right">
160
+
161
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
162
+
163
+ </div>
164
+
165
+ ## [Version 2.0.0-next.105](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.104...v2.0.0-next.105)
166
+
167
+ <sup>Released on **2025-11-23**</sup>
168
+
169
+ #### 🐛 Bug Fixes
170
+
171
+ - **operation**: Isolate loading state to current active topic.
172
+
173
+ <br/>
174
+
175
+ <details>
176
+ <summary><kbd>Improvements and Fixes</kbd></summary>
177
+
178
+ #### What's fixed
179
+
180
+ - **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))
181
+
182
+ </details>
183
+
184
+ <div align="right">
185
+
186
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
187
+
188
+ </div>
189
+
190
+ ## [Version 2.0.0-next.104](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.103...v2.0.0-next.104)
191
+
192
+ <sup>Released on **2025-11-22**</sup>
193
+
194
+ #### 💄 Styles
195
+
196
+ - **misc**: Update i18n.
197
+
198
+ <br/>
199
+
200
+ <details>
201
+ <summary><kbd>Improvements and Fixes</kbd></summary>
202
+
203
+ #### Styles
204
+
205
+ - **misc**: Update i18n, closes [#10349](https://github.com/lobehub/lobe-chat/issues/10349) ([3482d38](https://github.com/lobehub/lobe-chat/commit/3482d38))
206
+
207
+ </details>
208
+
209
+ <div align="right">
210
+
211
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
212
+
213
+ </div>
214
+
215
+ ## [Version 2.0.0-next.103](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.102...v2.0.0-next.103)
216
+
217
+ <sup>Released on **2025-11-22**</sup>
218
+
219
+ #### 🐛 Bug Fixes
220
+
221
+ - **misc**: Hide ai image config item in settings category.
222
+
223
+ <br/>
224
+
225
+ <details>
226
+ <summary><kbd>Improvements and Fixes</kbd></summary>
227
+
228
+ #### What's fixed
229
+
230
+ - **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))
231
+
232
+ </details>
233
+
234
+ <div align="right">
235
+
236
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
237
+
238
+ </div>
239
+
240
+ ## [Version 2.0.0-next.102](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.101...v2.0.0-next.102)
241
+
242
+ <sup>Released on **2025-11-22**</sup>
243
+
244
+ #### ✨ Features
245
+
246
+ - **misc**: Add new provider ZenMux & Gemini 3 Pro Image Preview.
247
+
248
+ <br/>
249
+
250
+ <details>
251
+ <summary><kbd>Improvements and Fixes</kbd></summary>
252
+
253
+ #### What's improved
254
+
255
+ - **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))
256
+
257
+ </details>
258
+
259
+ <div align="right">
260
+
261
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
262
+
263
+ </div>
264
+
265
+ ## [Version 2.0.0-next.101](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.100...v2.0.0-next.101)
266
+
267
+ <sup>Released on **2025-11-22**</sup>
268
+
269
+ #### ✨ Features
270
+
271
+ - **misc**: Support bedrok prompt cache and usage compute.
272
+
273
+ <br/>
274
+
275
+ <details>
276
+ <summary><kbd>Improvements and Fixes</kbd></summary>
277
+
278
+ #### What's improved
279
+
280
+ - **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))
281
+
282
+ </details>
283
+
284
+ <div align="right">
285
+
286
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
287
+
288
+ </div>
289
+
290
+ ## [Version 2.0.0-next.100](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.99...v2.0.0-next.100)
291
+
292
+ <sup>Released on **2025-11-21**</sup>
293
+
294
+ #### 🐛 Bug Fixes
295
+
296
+ - **misc**: Gemini 3 Pro does not display thought summaries.
297
+
298
+ <br/>
299
+
300
+ <details>
301
+ <summary><kbd>Improvements and Fixes</kbd></summary>
302
+
303
+ #### What's fixed
304
+
305
+ - **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))
306
+
307
+ </details>
308
+
309
+ <div align="right">
310
+
311
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
312
+
313
+ </div>
314
+
315
+ ## [Version 2.0.0-next.99](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.98...v2.0.0-next.99)
316
+
317
+ <sup>Released on **2025-11-21**</sup>
318
+
319
+ #### ✨ Features
320
+
321
+ - **misc**: Refactor to use kb search tool.
322
+
323
+ <br/>
324
+
325
+ <details>
326
+ <summary><kbd>Improvements and Fixes</kbd></summary>
327
+
328
+ #### What's improved
329
+
330
+ - **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))
331
+
332
+ </details>
333
+
334
+ <div align="right">
335
+
336
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
337
+
338
+ </div>
339
+
340
+ ## [Version 2.0.0-next.98](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.97...v2.0.0-next.98)
341
+
342
+ <sup>Released on **2025-11-21**</sup>
343
+
344
+ #### 🐛 Bug Fixes
345
+
346
+ - **misc**: Fixed changelog pages and open again.
347
+
348
+ #### 💄 Styles
349
+
350
+ - **misc**: Fix some translations.
351
+
352
+ <br/>
353
+
354
+ <details>
355
+ <summary><kbd>Improvements and Fixes</kbd></summary>
356
+
357
+ #### What's fixed
358
+
359
+ - **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))
360
+
361
+ #### Styles
362
+
363
+ - **misc**: Fix some translations, closes [#10343](https://github.com/lobehub/lobe-chat/issues/10343) ([ed193e0](https://github.com/lobehub/lobe-chat/commit/ed193e0))
364
+
365
+ </details>
366
+
367
+ <div align="right">
368
+
369
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
370
+
371
+ </div>
372
+
373
+ ## [Version 2.0.0-next.97](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.96...v2.0.0-next.97)
374
+
375
+ <sup>Released on **2025-11-21**</sup>
376
+
377
+ #### ♻ Code Refactoring
378
+
379
+ - **misc**: Refactor Conversation to ChatList.
380
+
381
+ #### 💄 Styles
382
+
383
+ - **misc**: Update i18n.
384
+
385
+ <br/>
386
+
387
+ <details>
388
+ <summary><kbd>Improvements and Fixes</kbd></summary>
389
+
390
+ #### Code refactoring
391
+
392
+ - **misc**: Refactor Conversation to ChatList, closes [#10330](https://github.com/lobehub/lobe-chat/issues/10330) ([bca70e2](https://github.com/lobehub/lobe-chat/commit/bca70e2))
393
+
394
+ #### Styles
395
+
396
+ - **misc**: Update i18n, closes [#10338](https://github.com/lobehub/lobe-chat/issues/10338) ([9c8cf81](https://github.com/lobehub/lobe-chat/commit/9c8cf81))
397
+
398
+ </details>
399
+
400
+ <div align="right">
401
+
402
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
403
+
404
+ </div>
405
+
406
+ ## [Version 2.0.0-next.96](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.95...v2.0.0-next.96)
407
+
408
+ <sup>Released on **2025-11-20**</sup>
409
+
410
+ #### ✨ Features
411
+
412
+ - **misc**: Support Command Menu (CMD + J).
413
+
414
+ <br/>
415
+
416
+ <details>
417
+ <summary><kbd>Improvements and Fixes</kbd></summary>
418
+
419
+ #### What's improved
420
+
421
+ - **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))
422
+
423
+ </details>
424
+
425
+ <div align="right">
426
+
427
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
428
+
429
+ </div>
430
+
431
+ ## [Version 2.0.0-next.95](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.94...v2.0.0-next.95)
432
+
433
+ <sup>Released on **2025-11-20**</sup>
434
+
435
+ #### ✨ Features
436
+
437
+ - **misc**: Add Security Blacklist for agent runtime.
438
+
439
+ <br/>
440
+
441
+ <details>
442
+ <summary><kbd>Improvements and Fixes</kbd></summary>
443
+
444
+ #### What's improved
445
+
446
+ - **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))
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.94](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.93...v2.0.0-next.94)
457
+
458
+ <sup>Released on **2025-11-20**</sup>
459
+
460
+ #### 🐛 Bug Fixes
461
+
462
+ - **misc**: Provider settings button unable to redirect.
463
+
464
+ <br/>
465
+
466
+ <details>
467
+ <summary><kbd>Improvements and Fixes</kbd></summary>
468
+
469
+ #### What's fixed
470
+
471
+ - **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))
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.93](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.92...v2.0.0-next.93)
482
+
483
+ <sup>Released on **2025-11-20**</sup>
484
+
485
+ #### 💄 Styles
486
+
487
+ - **misc**: Update i18n.
488
+
489
+ <br/>
490
+
491
+ <details>
492
+ <summary><kbd>Improvements and Fixes</kbd></summary>
493
+
494
+ #### Styles
495
+
496
+ - **misc**: Update i18n, closes [#10317](https://github.com/lobehub/lobe-chat/issues/10317) ([8fb9890](https://github.com/lobehub/lobe-chat/commit/8fb9890))
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.92](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.91...v2.0.0-next.92)
507
+
508
+ <sup>Released on **2025-11-19**</sup>
509
+
510
+ #### 💄 Styles
511
+
512
+ - **misc**: Remove debug console logs and add loading state.
513
+
514
+ <br/>
515
+
516
+ <details>
517
+ <summary><kbd>Improvements and Fixes</kbd></summary>
518
+
519
+ #### Styles
520
+
521
+ - **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))
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.91](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.90...v2.0.0-next.91)
532
+
533
+ <sup>Released on **2025-11-19**</sup>
534
+
535
+ #### 🐛 Bug Fixes
536
+
537
+ - **misc**: Fixed the hydrated false problem.
538
+
539
+ <br/>
540
+
541
+ <details>
542
+ <summary><kbd>Improvements and Fixes</kbd></summary>
543
+
544
+ #### What's fixed
545
+
546
+ - **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))
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.90](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.89...v2.0.0-next.90)
557
+
558
+ <sup>Released on **2025-11-19**</sup>
559
+
560
+ #### 💄 Styles
561
+
562
+ - **misc**: Extract StatusIndicator component and improve tools display.
563
+
564
+ <br/>
565
+
566
+ <details>
567
+ <summary><kbd>Improvements and Fixes</kbd></summary>
568
+
569
+ #### Styles
570
+
571
+ - **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))
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.89](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.88...v2.0.0-next.89)
582
+
583
+ <sup>Released on **2025-11-19**</sup>
584
+
585
+ #### ✨ Features
586
+
587
+ - **misc**: Support gemini 3.0 tools calling.
588
+
589
+ <br/>
590
+
591
+ <details>
592
+ <summary><kbd>Improvements and Fixes</kbd></summary>
593
+
594
+ #### What's improved
595
+
596
+ - **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))
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.88](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.87...v2.0.0-next.88)
607
+
608
+ <sup>Released on **2025-11-19**</sup>
609
+
610
+ #### 💄 Styles
611
+
612
+ - **misc**: Fully support Gemini 3.0 model.
613
+
614
+ <br/>
615
+
616
+ <details>
617
+ <summary><kbd>Improvements and Fixes</kbd></summary>
618
+
619
+ #### Styles
620
+
621
+ - **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))
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.87](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.86...v2.0.0-next.87)
632
+
633
+ <sup>Released on **2025-11-19**</sup>
634
+
635
+ #### ♻ Code Refactoring
636
+
637
+ - **misc**: Refactor chat selectors.
638
+
639
+ <br/>
640
+
641
+ <details>
642
+ <summary><kbd>Improvements and Fixes</kbd></summary>
643
+
644
+ #### Code refactoring
645
+
646
+ - **misc**: Refactor chat selectors, closes [#10274](https://github.com/lobehub/lobe-chat/issues/10274) ([0a056f3](https://github.com/lobehub/lobe-chat/commit/0a056f3))
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.86](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.85...v2.0.0-next.86)
657
+
658
+ <sup>Released on **2025-11-19**</sup>
659
+
660
+ #### ✨ Features
661
+
662
+ - **misc**: Support user abort in the agent runtime.
663
+
664
+ <br/>
665
+
666
+ <details>
667
+ <summary><kbd>Improvements and Fixes</kbd></summary>
668
+
669
+ #### What's improved
670
+
671
+ - **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))
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.85](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.84...v2.0.0-next.85)
682
+
683
+ <sup>Released on **2025-11-19**</sup>
684
+
685
+ #### 🐛 Bug Fixes
686
+
687
+ - **misc**: Slove discover pagination router.
688
+
689
+ <br/>
690
+
691
+ <details>
692
+ <summary><kbd>Improvements and Fixes</kbd></summary>
693
+
694
+ #### What's fixed
695
+
696
+ - **misc**: Slove discover pagination router, closes [#10294](https://github.com/lobehub/lobe-chat/issues/10294) ([fcda0b5](https://github.com/lobehub/lobe-chat/commit/fcda0b5))
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.84](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.83...v2.0.0-next.84)
707
+
708
+ <sup>Released on **2025-11-19**</sup>
709
+
710
+ #### 💄 Styles
711
+
712
+ - **misc**: Add Gemini 3.0 Pro Preview to Google Provider.
713
+
714
+ <br/>
715
+
716
+ <details>
717
+ <summary><kbd>Improvements and Fixes</kbd></summary>
718
+
719
+ #### Styles
720
+
721
+ - **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))
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.83](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.82...v2.0.0-next.83)
732
+
733
+ <sup>Released on **2025-11-19**</sup>
734
+
735
+ #### ✨ Features
736
+
737
+ - **misc**: New API support switch Responses API mode.
738
+
739
+ #### 💄 Styles
740
+
741
+ - **misc**: Update i18n.
742
+
743
+ <br/>
744
+
745
+ <details>
746
+ <summary><kbd>Improvements and Fixes</kbd></summary>
747
+
748
+ #### What's improved
749
+
750
+ - **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))
751
+
752
+ #### Styles
753
+
754
+ - **misc**: Update i18n, closes [#10291](https://github.com/lobehub/lobe-chat/issues/10291) ([1c9f0d9](https://github.com/lobehub/lobe-chat/commit/1c9f0d9))
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.82](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.81...v2.0.0-next.82)
765
+
766
+ <sup>Released on **2025-11-18**</sup>
767
+
768
+ #### 🐛 Bug Fixes
769
+
770
+ - **misc**: Fix noisy error notification.
771
+
772
+ <br/>
773
+
774
+ <details>
775
+ <summary><kbd>Improvements and Fixes</kbd></summary>
776
+
777
+ #### What's fixed
778
+
779
+ - **misc**: Fix noisy error notification, closes [#10286](https://github.com/lobehub/lobe-chat/issues/10286) ([9ea680c](https://github.com/lobehub/lobe-chat/commit/9ea680c))
780
+
781
+ </details>
782
+
783
+ <div align="right">
784
+
785
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
786
+
787
+ </div>
788
+
789
+ ## [Version 2.0.0-next.81](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.80...v2.0.0-next.81)
790
+
791
+ <sup>Released on **2025-11-18**</sup>
792
+
793
+ #### 🐛 Bug Fixes
794
+
795
+ - **misc**: Slove when logout always show loading.
796
+
797
+ <br/>
798
+
799
+ <details>
800
+ <summary><kbd>Improvements and Fixes</kbd></summary>
801
+
802
+ #### What's fixed
803
+
804
+ - **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))
805
+
806
+ </details>
807
+
808
+ <div align="right">
809
+
810
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
811
+
812
+ </div>
813
+
814
+ ## [Version 2.0.0-next.80](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.79...v2.0.0-next.80)
815
+
816
+ <sup>Released on **2025-11-18**</sup>
817
+
818
+ <br/>
819
+
820
+ <details>
821
+ <summary><kbd>Improvements and Fixes</kbd></summary>
822
+
823
+ </details>
824
+
825
+ <div align="right">
826
+
827
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
828
+
829
+ </div>
830
+
831
+ ## [Version 2.0.0-next.79](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.78...v2.0.0-next.79)
832
+
833
+ <sup>Released on **2025-11-18**</sup>
834
+
835
+ #### 🐛 Bug Fixes
836
+
837
+ - **misc**: Fixed the discover page categray sider link error.
838
+
839
+ <br/>
840
+
841
+ <details>
842
+ <summary><kbd>Improvements and Fixes</kbd></summary>
843
+
844
+ #### What's fixed
845
+
846
+ - **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))
847
+
848
+ </details>
849
+
850
+ <div align="right">
851
+
852
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
853
+
854
+ </div>
855
+
856
+ ## [Version 2.0.0-next.78](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.77...v2.0.0-next.78)
857
+
858
+ <sup>Released on **2025-11-18**</sup>
859
+
860
+ <br/>
861
+
862
+ <details>
863
+ <summary><kbd>Improvements and Fixes</kbd></summary>
864
+
865
+ </details>
866
+
867
+ <div align="right">
868
+
869
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
870
+
871
+ </div>
872
+
873
+ ## [Version 2.0.0-next.77](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.76...v2.0.0-next.77)
874
+
875
+ <sup>Released on **2025-11-18**</sup>
876
+
877
+ #### ♻ Code Refactoring
878
+
879
+ - **misc**: Delete /settings/newapi pages in nextjs build.
880
+
881
+ <br/>
882
+
883
+ <details>
884
+ <summary><kbd>Improvements and Fixes</kbd></summary>
885
+
886
+ #### Code refactoring
887
+
888
+ - **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))
889
+
890
+ </details>
891
+
892
+ <div align="right">
893
+
894
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
895
+
896
+ </div>
897
+
898
+ ## [Version 2.0.0-next.76](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.75...v2.0.0-next.76)
899
+
900
+ <sup>Released on **2025-11-18**</sup>
901
+
902
+ #### ✨ Features
903
+
904
+ - **misc**: Support Interleaved thinking in MiniMax.
905
+
906
+ <br/>
907
+
908
+ <details>
909
+ <summary><kbd>Improvements and Fixes</kbd></summary>
910
+
911
+ #### What's improved
912
+
913
+ - **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))
914
+
915
+ </details>
916
+
917
+ <div align="right">
918
+
919
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
920
+
921
+ </div>
922
+
923
+ ## [Version 2.0.0-next.75](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.74...v2.0.0-next.75)
924
+
925
+ <sup>Released on **2025-11-18**</sup>
926
+
927
+ #### 💄 Styles
928
+
929
+ - **misc**: Update i18n.
930
+
931
+ <br/>
932
+
933
+ <details>
934
+ <summary><kbd>Improvements and Fixes</kbd></summary>
935
+
936
+ #### Styles
937
+
938
+ - **misc**: Update i18n, closes [#10277](https://github.com/lobehub/lobe-chat/issues/10277) ([7563b62](https://github.com/lobehub/lobe-chat/commit/7563b62))
939
+
940
+ </details>
941
+
942
+ <div align="right">
943
+
944
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
945
+
946
+ </div>
947
+
948
+ ## [Version 2.0.0-next.74](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.73...v2.0.0-next.74)
949
+
950
+ <sup>Released on **2025-11-17**</sup>
951
+
952
+ #### ✨ Features
953
+
954
+ - **misc**: Edit local file render & intervention.
955
+
956
+ <br/>
957
+
958
+ <details>
959
+ <summary><kbd>Improvements and Fixes</kbd></summary>
960
+
961
+ #### What's improved
962
+
963
+ - **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))
964
+
965
+ </details>
966
+
967
+ <div align="right">
968
+
969
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
970
+
971
+ </div>
972
+
973
+ ## [Version 2.0.0-next.73](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.72...v2.0.0-next.73)
974
+
975
+ <sup>Released on **2025-11-17**</sup>
976
+
977
+ #### ✨ Features
978
+
979
+ - **misc**: Support parallel topic agent runtime.
980
+
981
+ <br/>
982
+
983
+ <details>
984
+ <summary><kbd>Improvements and Fixes</kbd></summary>
985
+
986
+ #### What's improved
987
+
988
+ - **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))
989
+
990
+ </details>
991
+
992
+ <div align="right">
993
+
994
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
995
+
996
+ </div>
997
+
998
+ ## [Version 2.0.0-next.72](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.71...v2.0.0-next.72)
999
+
1000
+ <sup>Released on **2025-11-17**</sup>
1001
+
1002
+ #### 💄 Styles
1003
+
1004
+ - **misc**: Add model information for the Qiniu provider.
1005
+
1006
+ <br/>
1007
+
1008
+ <details>
1009
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1010
+
1011
+ #### Styles
1012
+
1013
+ - **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))
1014
+
1015
+ </details>
1016
+
1017
+ <div align="right">
1018
+
1019
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1020
+
1021
+ </div>
1022
+
1023
+ ## [Version 2.0.0-next.71](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.70...v2.0.0-next.71)
1024
+
1025
+ <sup>Released on **2025-11-17**</sup>
1026
+
1027
+ #### 🐛 Bug Fixes
1028
+
1029
+ - **misc**: Fix desktop user panel.
1030
+
1031
+ <br/>
1032
+
1033
+ <details>
1034
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1035
+
1036
+ #### What's fixed
1037
+
1038
+ - **misc**: Fix desktop user panel, closes [#10272](https://github.com/lobehub/lobe-chat/issues/10272) ([6a374d2](https://github.com/lobehub/lobe-chat/commit/6a374d2))
1039
+
1040
+ </details>
1041
+
1042
+ <div align="right">
1043
+
1044
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1045
+
1046
+ </div>
1047
+
1048
+ ## [Version 2.0.0-next.70](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.69...v2.0.0-next.70)
1049
+
1050
+ <sup>Released on **2025-11-17**</sup>
1051
+
1052
+ <br/>
1053
+
1054
+ <details>
1055
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1056
+
1057
+ </details>
1058
+
1059
+ <div align="right">
1060
+
1061
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1062
+
1063
+ </div>
1064
+
1065
+ ## [Version 2.0.0-next.69](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.68...v2.0.0-next.69)
1066
+
1067
+ <sup>Released on **2025-11-17**</sup>
1068
+
1069
+ #### ♻ Code Refactoring
1070
+
1071
+ - **misc**: Remove `language_model_settings` and remove isDeprecatedEdition.
1072
+
1073
+ <br/>
1074
+
1075
+ <details>
1076
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1077
+
1078
+ #### Code refactoring
1079
+
1080
+ - **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))
1081
+
1082
+ </details>
1083
+
1084
+ <div align="right">
1085
+
1086
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1087
+
1088
+ </div>
1089
+
1090
+ ## [Version 2.0.0-next.68](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.67...v2.0.0-next.68)
1091
+
1092
+ <sup>Released on **2025-11-16**</sup>
1093
+
1094
+ #### 🐛 Bug Fixes
1095
+
1096
+ - **misc**: The tool to fail execution on ollama when a message contains b….
1097
+
1098
+ <br/>
1099
+
1100
+ <details>
1101
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1102
+
1103
+ #### What's fixed
1104
+
1105
+ - **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))
1106
+
1107
+ </details>
1108
+
1109
+ <div align="right">
1110
+
1111
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1112
+
1113
+ </div>
1114
+
1115
+ ## [Version 2.0.0-next.67](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.66...v2.0.0-next.67)
1116
+
1117
+ <sup>Released on **2025-11-16**</sup>
1118
+
1119
+ #### ♻ Code Refactoring
1120
+
1121
+ - **misc**: Refactor to virtua.
1122
+
1123
+ <br/>
1124
+
1125
+ <details>
1126
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1127
+
1128
+ #### Code refactoring
1129
+
1130
+ - **misc**: Refactor to virtua, closes [#10151](https://github.com/lobehub/lobe-chat/issues/10151) ([9ffb689](https://github.com/lobehub/lobe-chat/commit/9ffb689))
1131
+
1132
+ </details>
1133
+
1134
+ <div align="right">
1135
+
1136
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1137
+
1138
+ </div>
1139
+
1140
+ ## [Version 2.0.0-next.66](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.65...v2.0.0-next.66)
1141
+
1142
+ <sup>Released on **2025-11-16**</sup>
1143
+
1144
+ #### ✨ Features
1145
+
1146
+ - **misc**: Support to collapse message.
1147
+
1148
+ <br/>
1149
+
1150
+ <details>
1151
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1152
+
1153
+ #### What's improved
1154
+
1155
+ - **misc**: Support to collapse message, closes [#10234](https://github.com/lobehub/lobe-chat/issues/10234) ([4cd6347](https://github.com/lobehub/lobe-chat/commit/4cd6347))
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.65](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.64...v2.0.0-next.65)
1166
+
1167
+ <sup>Released on **2025-11-16**</sup>
1168
+
1169
+ #### 💄 Styles
1170
+
1171
+ - **misc**: Update i18n.
1172
+
1173
+ <br/>
1174
+
1175
+ <details>
1176
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1177
+
1178
+ #### Styles
1179
+
1180
+ - **misc**: Update i18n, closes [#10235](https://github.com/lobehub/lobe-chat/issues/10235) ([a52c9e5](https://github.com/lobehub/lobe-chat/commit/a52c9e5))
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.64](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.63...v2.0.0-next.64)
1191
+
1192
+ <sup>Released on **2025-11-15**</sup>
1193
+
1194
+ #### ♻ Code Refactoring
1195
+
1196
+ - **misc**: Refactor package types.
1197
+
1198
+ <br/>
1199
+
1200
+ <details>
1201
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1202
+
1203
+ #### Code refactoring
1204
+
1205
+ - **misc**: Refactor package types, closes [#10233](https://github.com/lobehub/lobe-chat/issues/10233) ([9872409](https://github.com/lobehub/lobe-chat/commit/9872409))
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.63](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.62...v2.0.0-next.63)
1216
+
1217
+ <sup>Released on **2025-11-15**</sup>
1218
+
1219
+ #### ✨ Features
1220
+
1221
+ - **misc**: Show orphaned tool message and support delete tool message.
1222
+
1223
+ <br/>
1224
+
1225
+ <details>
1226
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1227
+
1228
+ #### What's improved
1229
+
1230
+ - **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))
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.62](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.61...v2.0.0-next.62)
1241
+
1242
+ <sup>Released on **2025-11-15**</sup>
1243
+
1244
+ #### 🐛 Bug Fixes
1245
+
1246
+ - **next16**: Resolve 'Response body object should not be disturbed or locked' error.
1247
+
1248
+ <br/>
1249
+
1250
+ <details>
1251
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1252
+
1253
+ #### What's fixed
1254
+
1255
+ - **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))
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.61](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.60...v2.0.0-next.61)
1266
+
1267
+ <sup>Released on **2025-11-15**</sup>
1268
+
1269
+ #### 💄 Styles
1270
+
1271
+ - **misc**: Update i18n.
1272
+
1273
+ <br/>
1274
+
1275
+ <details>
1276
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1277
+
1278
+ #### Styles
1279
+
1280
+ - **misc**: Update i18n, closes [#10224](https://github.com/lobehub/lobe-chat/issues/10224) ([ca7551f](https://github.com/lobehub/lobe-chat/commit/ca7551f))
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.60](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.59...v2.0.0-next.60)
1291
+
1292
+ <sup>Released on **2025-11-14**</sup>
1293
+
1294
+ #### 🐛 Bug Fixes
1295
+
1296
+ - **misc**: Reduce threshold.
1297
+
1298
+ <br/>
1299
+
1300
+ <details>
1301
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1302
+
1303
+ #### What's fixed
1304
+
1305
+ - **misc**: Reduce threshold, closes [#10222](https://github.com/lobehub/lobe-chat/issues/10222) ([abdfd06](https://github.com/lobehub/lobe-chat/commit/abdfd06))
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.59](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.58...v2.0.0-next.59)
1316
+
1317
+ <sup>Released on **2025-11-14**</sup>
1318
+
1319
+ #### 💄 Styles
1320
+
1321
+ - **misc**: Update i18n.
1322
+
1323
+ <br/>
1324
+
1325
+ <details>
1326
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1327
+
1328
+ #### Styles
1329
+
1330
+ - **misc**: Update i18n, closes [#10205](https://github.com/lobehub/lobe-chat/issues/10205) ([fc57d2a](https://github.com/lobehub/lobe-chat/commit/fc57d2a))
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.58](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.57...v2.0.0-next.58)
1341
+
1342
+ <sup>Released on **2025-11-14**</sup>
1343
+
1344
+ #### ✨ Features
1345
+
1346
+ - **misc**: Support DeepSeek Interleaved thinking.
1347
+
1348
+ <br/>
1349
+
1350
+ <details>
1351
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1352
+
1353
+ #### What's improved
1354
+
1355
+ - **misc**: Support DeepSeek Interleaved thinking, closes [#10219](https://github.com/lobehub/lobe-chat/issues/10219) ([3736a85](https://github.com/lobehub/lobe-chat/commit/3736a85))
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.57](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.56...v2.0.0-next.57)
1366
+
1367
+ <sup>Released on **2025-11-14**</sup>
1368
+
1369
+ #### 💄 Styles
1370
+
1371
+ - **misc**: Revert background style.
1372
+
1373
+ <br/>
1374
+
1375
+ <details>
1376
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1377
+
1378
+ #### Styles
1379
+
1380
+ - **misc**: Revert background style, closes [#10218](https://github.com/lobehub/lobe-chat/issues/10218) ([97b0413](https://github.com/lobehub/lobe-chat/commit/97b0413))
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.56](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.55...v2.0.0-next.56)
1391
+
1392
+ <sup>Released on **2025-11-14**</sup>
1393
+
1394
+ #### ✨ Features
1395
+
1396
+ - **misc**: Add folder creation UI and clean up debug code.
1397
+
1398
+ <br/>
1399
+
1400
+ <details>
1401
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1402
+
1403
+ #### What's improved
1404
+
1405
+ - **misc**: Add folder creation UI and clean up debug code ([d5ecd0a](https://github.com/lobehub/lobe-chat/commit/d5ecd0a))
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.55](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.54...v2.0.0-next.55)
1416
+
1417
+ <sup>Released on **2025-11-14**</sup>
1418
+
1419
+ #### ✨ Features
1420
+
1421
+ - **image**: Image model show price.
1422
+ - **misc**: Create Pages in Knowledge Base.
1423
+
1424
+ <br/>
1425
+
1426
+ <details>
1427
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1428
+
1429
+ #### What's improved
1430
+
1431
+ - **image**: Image model show price, closes [#10198](https://github.com/lobehub/lobe-chat/issues/10198) ([b87e0e4](https://github.com/lobehub/lobe-chat/commit/b87e0e4))
1432
+ - **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))
1433
+
1434
+ </details>
1435
+
1436
+ <div align="right">
1437
+
1438
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1439
+
1440
+ </div>
1441
+
1442
+ ## [Version 2.0.0-next.54](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.53...v2.0.0-next.54)
1443
+
1444
+ <sup>Released on **2025-11-14**</sup>
1445
+
1446
+ #### 💄 Styles
1447
+
1448
+ - **misc**: Refactor and support move locale file intervention.
1449
+
1450
+ <br/>
1451
+
1452
+ <details>
1453
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1454
+
1455
+ #### Styles
1456
+
1457
+ - **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))
1458
+
1459
+ </details>
1460
+
1461
+ <div align="right">
1462
+
1463
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1464
+
1465
+ </div>
1466
+
1467
+ ## [Version 2.0.0-next.53](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.52...v2.0.0-next.53)
1468
+
1469
+ <sup>Released on **2025-11-14**</sup>
1470
+
1471
+ #### ✨ Features
1472
+
1473
+ - **misc**: Add GPT-5.1 models.
1474
+
1475
+ #### 💄 Styles
1476
+
1477
+ - **misc**: Fix approving render and improve Conversation style.
1478
+
1479
+ <br/>
1480
+
1481
+ <details>
1482
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1483
+
1484
+ #### What's improved
1485
+
1486
+ - **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))
1487
+
1488
+ #### Styles
1489
+
1490
+ - **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))
1491
+
1492
+ </details>
1493
+
1494
+ <div align="right">
1495
+
1496
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1497
+
1498
+ </div>
1499
+
1500
+ ## [Version 2.0.0-next.52](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.51...v2.0.0-next.52)
1501
+
1502
+ <sup>Released on **2025-11-13**</sup>
1503
+
1504
+ #### 🐛 Bug Fixes
1505
+
1506
+ - **misc**: Filter out reasoning fields from messages in ChatCompletion API.
1507
+
1508
+ <br/>
1509
+
1510
+ <details>
1511
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1512
+
1513
+ #### What's fixed
1514
+
1515
+ - **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))
1516
+
1517
+ </details>
1518
+
1519
+ <div align="right">
1520
+
1521
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1522
+
1523
+ </div>
1524
+
1525
+ ## [Version 2.0.0-next.51](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.50...v2.0.0-next.51)
1526
+
1527
+ <sup>Released on **2025-11-13**</sup>
1528
+
1529
+ #### 💄 Styles
1530
+
1531
+ - **misc**: Update ERNIE-5.0-Thinking-Preview model.
1532
+
1533
+ <br/>
1534
+
1535
+ <details>
1536
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1537
+
1538
+ #### Styles
1539
+
1540
+ - **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))
1541
+
1542
+ </details>
1543
+
1544
+ <div align="right">
1545
+
1546
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1547
+
1548
+ </div>
1549
+
1550
+ ## [Version 2.0.0-next.50](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.49...v2.0.0-next.50)
1551
+
1552
+ <sup>Released on **2025-11-13**</sup>
1553
+
1554
+ #### 🐛 Bug Fixes
1555
+
1556
+ - **misc**: Fix oidc accountId mismatch.
1557
+
1558
+ <br/>
1559
+
1560
+ <details>
1561
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1562
+
1563
+ #### What's fixed
1564
+
1565
+ - **misc**: Fix oidc accountId mismatch, closes [#10058](https://github.com/lobehub/lobe-chat/issues/10058) ([0692ba7](https://github.com/lobehub/lobe-chat/commit/0692ba7))
1566
+
1567
+ </details>
1568
+
1569
+ <div align="right">
1570
+
1571
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1572
+
1573
+ </div>
1574
+
1575
+ ## [Version 2.0.0-next.49](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.48...v2.0.0-next.49)
1576
+
1577
+ <sup>Released on **2025-11-13**</sup>
1578
+
1579
+ #### ✨ Features
1580
+
1581
+ - **misc**: Support tool invention.
1582
+
1583
+ #### 🐛 Bug Fixes
1584
+
1585
+ - **misc**: Update lost i18n files.
1586
+
1587
+ <br/>
1588
+
1589
+ <details>
1590
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1591
+
1592
+ #### What's improved
1593
+
1594
+ - **misc**: Support tool invention, closes [#10182](https://github.com/lobehub/lobe-chat/issues/10182) ([4dca708](https://github.com/lobehub/lobe-chat/commit/4dca708))
1595
+
1596
+ #### What's fixed
1597
+
1598
+ - **misc**: Update lost i18n files, closes [#10179](https://github.com/lobehub/lobe-chat/issues/10179) ([b69c7ff](https://github.com/lobehub/lobe-chat/commit/b69c7ff))
1599
+
1600
+ </details>
1601
+
1602
+ <div align="right">
1603
+
1604
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1605
+
1606
+ </div>
1607
+
1608
+ ## [Version 2.0.0-next.48](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.47...v2.0.0-next.48)
1609
+
1610
+ <sup>Released on **2025-11-12**</sup>
1611
+
1612
+ <br/>
1613
+
1614
+ <details>
1615
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1616
+
1617
+ </details>
1618
+
1619
+ <div align="right">
1620
+
1621
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1622
+
1623
+ </div>
1624
+
1625
+ ## [Version 2.0.0-next.47](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.46...v2.0.0-next.47)
1626
+
1627
+ <sup>Released on **2025-11-11**</sup>
1628
+
1629
+ #### 🐛 Bug Fixes
1630
+
1631
+ - **misc**: Fix mcp server return image error.
1632
+
1633
+ <br/>
1634
+
1635
+ <details>
1636
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1637
+
1638
+ #### What's fixed
1639
+
1640
+ - **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))
1641
+
1642
+ </details>
1643
+
1644
+ <div align="right">
1645
+
1646
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1647
+
1648
+ </div>
1649
+
1650
+ ## [Version 2.0.0-next.46](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.45...v2.0.0-next.46)
1651
+
1652
+ <sup>Released on **2025-11-11**</sup>
1653
+
1654
+ #### ♻ Code Refactoring
1655
+
1656
+ - **misc**: Fix thread display.
1657
+
1658
+ <br/>
1659
+
1660
+ <details>
1661
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1662
+
1663
+ #### Code refactoring
1664
+
1665
+ - **misc**: Fix thread display, closes [#10153](https://github.com/lobehub/lobe-chat/issues/10153) ([8fda83e](https://github.com/lobehub/lobe-chat/commit/8fda83e))
1666
+
1667
+ </details>
1668
+
1669
+ <div align="right">
1670
+
1671
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1672
+
1673
+ </div>
1674
+
1675
+ ## [Version 2.0.0-next.45](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.44...v2.0.0-next.45)
1676
+
1677
+ <sup>Released on **2025-11-10**</sup>
1678
+
1679
+ #### ♻ Code Refactoring
1680
+
1681
+ - **misc**: Edge to node runtime.
1682
+
1683
+ <br/>
1684
+
1685
+ <details>
1686
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1687
+
1688
+ #### Code refactoring
1689
+
1690
+ - **misc**: Edge to node runtime, closes [#10149](https://github.com/lobehub/lobe-chat/issues/10149) ([2f4c25d](https://github.com/lobehub/lobe-chat/commit/2f4c25d))
1691
+
1692
+ </details>
1693
+
1694
+ <div align="right">
1695
+
1696
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1697
+
1698
+ </div>
1699
+
1700
+ ## [Version 2.0.0-next.44](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.43...v2.0.0-next.44)
1701
+
1702
+ <sup>Released on **2025-11-10**</sup>
1703
+
1704
+ #### 🐛 Bug Fixes
1705
+
1706
+ - **misc**: Fix reasoning issue with claude and Response API thinking.
1707
+
1708
+ <br/>
1709
+
1710
+ <details>
1711
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1712
+
1713
+ #### What's fixed
1714
+
1715
+ - **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))
1716
+
1717
+ </details>
1718
+
1719
+ <div align="right">
1720
+
1721
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1722
+
1723
+ </div>
1724
+
1725
+ ## [Version 2.0.0-next.43](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.42...v2.0.0-next.43)
1726
+
1727
+ <sup>Released on **2025-11-09**</sup>
1728
+
1729
+ #### 🐛 Bug Fixes
1730
+
1731
+ - **misc**: Abnormal animation of tokens.
1732
+
1733
+ <br/>
1734
+
1735
+ <details>
1736
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1737
+
1738
+ #### What's fixed
1739
+
1740
+ - **misc**: Abnormal animation of tokens, closes [#10106](https://github.com/lobehub/lobe-chat/issues/10106) ([129df7b](https://github.com/lobehub/lobe-chat/commit/129df7b))
1741
+
1742
+ </details>
1743
+
1744
+ <div align="right">
1745
+
1746
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1747
+
1748
+ </div>
1749
+
1750
+ ## [Version 2.0.0-next.42](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.41...v2.0.0-next.42)
1751
+
1752
+ <sup>Released on **2025-11-09**</sup>
1753
+
1754
+ #### 🐛 Bug Fixes
1755
+
1756
+ - **misc**: Fix missing messages when finish runtime.
1757
+
1758
+ <br/>
1759
+
1760
+ <details>
1761
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1762
+
1763
+ #### What's fixed
1764
+
1765
+ - **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))
1766
+
1767
+ </details>
1768
+
1769
+ <div align="right">
1770
+
1771
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1772
+
1773
+ </div>
1774
+
1775
+ ## [Version 2.0.0-next.41](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.40...v2.0.0-next.41)
1776
+
1777
+ <sup>Released on **2025-11-09**</sup>
1778
+
1779
+ #### 💄 Styles
1780
+
1781
+ - **misc**: Update i18n.
1782
+
1783
+ <br/>
1784
+
1785
+ <details>
1786
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1787
+
1788
+ #### Styles
1789
+
1790
+ - **misc**: Update i18n, closes [#10116](https://github.com/lobehub/lobe-chat/issues/10116) ([766772e](https://github.com/lobehub/lobe-chat/commit/766772e))
1791
+
1792
+ </details>
1793
+
1794
+ <div align="right">
1795
+
1796
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1797
+
1798
+ </div>
1799
+
1800
+ ## [Version 2.0.0-next.40](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.39...v2.0.0-next.40)
1801
+
1802
+ <sup>Released on **2025-11-08**</sup>
1803
+
1804
+ #### 🐛 Bug Fixes
1805
+
1806
+ - **database**: Fix deleteMessagesBySession incorrectly deleting all messages.
1807
+
1808
+ <br/>
1809
+
1810
+ <details>
1811
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1812
+
1813
+ #### What's fixed
1814
+
1815
+ - **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))
1816
+
1817
+ </details>
1818
+
1819
+ <div align="right">
1820
+
1821
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1822
+
1823
+ </div>
1824
+
1825
+ ## [Version 2.0.0-next.39](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.38...v2.0.0-next.39)
1826
+
1827
+ <sup>Released on **2025-11-08**</sup>
1828
+
1829
+ <br/>
1830
+
1831
+ <details>
1832
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1833
+
1834
+ </details>
1835
+
1836
+ <div align="right">
1837
+
1838
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1839
+
1840
+ </div>
1841
+
1842
+ ## [Version 2.0.0-next.38](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.37...v2.0.0-next.38)
1843
+
1844
+ <sup>Released on **2025-11-08**</sup>
1845
+
1846
+ #### 🐛 Bug Fixes
1847
+
1848
+ - **TokenUsage**: Prevent animation when toggling between token and credit display.
1849
+
1850
+ #### 💄 Styles
1851
+
1852
+ - **misc**: Update i18n.
1853
+
1854
+ <br/>
1855
+
1856
+ <details>
1857
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1858
+
1859
+ #### What's fixed
1860
+
1861
+ - **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))
1862
+
1863
+ #### Styles
1864
+
1865
+ - **misc**: Update i18n, closes [#10100](https://github.com/lobehub/lobe-chat/issues/10100) ([deb6b5e](https://github.com/lobehub/lobe-chat/commit/deb6b5e))
1866
+
1867
+ </details>
1868
+
1869
+ <div align="right">
1870
+
1871
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1872
+
1873
+ </div>
1874
+
1875
+ ## [Version 2.0.0-next.37](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.36...v2.0.0-next.37)
1876
+
1877
+ <sup>Released on **2025-11-07**</sup>
1878
+
1879
+ #### 🐛 Bug Fixes
1880
+
1881
+ - **misc**: Don't include runtimeProvider in JWT for non-image operations.
1882
+
1883
+ <br/>
1884
+
1885
+ <details>
1886
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1887
+
1888
+ #### What's fixed
1889
+
1890
+ - **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))
1891
+
1892
+ </details>
1893
+
1894
+ <div align="right">
1895
+
1896
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1897
+
1898
+ </div>
1899
+
1900
+ ## [Version 2.0.0-next.36](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.35...v2.0.0-next.36)
1901
+
1902
+ <sup>Released on **2025-11-07**</sup>
1903
+
1904
+ #### ✨ Features
1905
+
1906
+ - **misc**: Refactor to use agent runtime as the generation core and support branch mode.
1907
+
1908
+ <br/>
1909
+
1910
+ <details>
1911
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1912
+
1913
+ #### What's improved
1914
+
1915
+ - **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))
1916
+
1917
+ </details>
1918
+
1919
+ <div align="right">
1920
+
1921
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1922
+
1923
+ </div>
1924
+
1925
+ ## [Version 2.0.0-next.35](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.34...v2.0.0-next.35)
1926
+
1927
+ <sup>Released on **2025-11-07**</sup>
1928
+
1929
+ #### ♻ Code Refactoring
1930
+
1931
+ - **misc**: Use react-router-dom change /chat page to spa mode.
1932
+
1933
+ <br/>
1934
+
1935
+ <details>
1936
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1937
+
1938
+ #### Code refactoring
1939
+
1940
+ - **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))
1941
+
1942
+ </details>
1943
+
1944
+ <div align="right">
1945
+
1946
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1947
+
1948
+ </div>
1949
+
1950
+ ## [Version 2.0.0-next.34](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.33...v2.0.0-next.34)
1951
+
1952
+ <sup>Released on **2025-11-07**</sup>
1953
+
1954
+ #### 💄 Styles
1955
+
1956
+ - **misc**: Add sorting functionality for disabled models and model providers with tooltip support.
1957
+
1958
+ <br/>
1959
+
1960
+ <details>
1961
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1962
+
1963
+ #### Styles
1964
+
1965
+ - **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))
1966
+
1967
+ </details>
1968
+
1969
+ <div align="right">
1970
+
1971
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
1972
+
1973
+ </div>
1974
+
1975
+ ## [Version 2.0.0-next.33](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.32...v2.0.0-next.33)
1976
+
1977
+ <sup>Released on **2025-11-06**</sup>
1978
+
1979
+ #### ♻ Code Refactoring
1980
+
1981
+ - **misc**: Refactor message create name.
1982
+
1983
+ #### 🐛 Bug Fixes
1984
+
1985
+ - **misc**: Model name display in the assistant panel disappears.
1986
+
1987
+ <br/>
1988
+
1989
+ <details>
1990
+ <summary><kbd>Improvements and Fixes</kbd></summary>
1991
+
1992
+ #### Code refactoring
1993
+
1994
+ - **misc**: Refactor message create name, closes [#10074](https://github.com/lobehub/lobe-chat/issues/10074) ([08ec29f](https://github.com/lobehub/lobe-chat/commit/08ec29f))
1995
+
1996
+ #### What's fixed
1997
+
1998
+ - **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))
1999
+
2000
+ </details>
2001
+
2002
+ <div align="right">
2003
+
2004
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2005
+
2006
+ </div>
2007
+
2008
+ ## [Version 2.0.0-next.32](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.31...v2.0.0-next.32)
2009
+
2010
+ <sup>Released on **2025-11-05**</sup>
2011
+
2012
+ #### 🐛 Bug Fixes
2013
+
2014
+ - **misc**: Should install new version after quit this instance.
2015
+
2016
+ <br/>
2017
+
2018
+ <details>
2019
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2020
+
2021
+ #### What's fixed
2022
+
2023
+ - **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))
2024
+
2025
+ </details>
2026
+
2027
+ <div align="right">
2028
+
2029
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2030
+
2031
+ </div>
2032
+
2033
+ ## [Version 2.0.0-next.31](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.30...v2.0.0-next.31)
2034
+
2035
+ <sup>Released on **2025-11-05**</sup>
2036
+
2037
+ <br/>
2038
+
2039
+ <details>
2040
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2041
+
2042
+ </details>
2043
+
2044
+ <div align="right">
2045
+
2046
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2047
+
2048
+ </div>
2049
+
2050
+ ## [Version 2.0.0-next.30](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.29...v2.0.0-next.30)
2051
+
2052
+ <sup>Released on **2025-11-05**</sup>
2053
+
2054
+ #### ♻ Code Refactoring
2055
+
2056
+ - **misc**: Enhance message router with service layer and comprehensive tests.
2057
+
2058
+ <br/>
2059
+
2060
+ <details>
2061
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2062
+
2063
+ #### Code refactoring
2064
+
2065
+ - **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))
2066
+
2067
+ </details>
2068
+
2069
+ <div align="right">
2070
+
2071
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2072
+
2073
+ </div>
2074
+
2075
+ ## [Version 2.0.0-next.29](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.28...v2.0.0-next.29)
2076
+
2077
+ <sup>Released on **2025-11-04**</sup>
2078
+
2079
+ #### ♻ Code Refactoring
2080
+
2081
+ - **misc**: Refactor chat message model to speed up.
2082
+
2083
+ <br/>
2084
+
2085
+ <details>
2086
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2087
+
2088
+ #### Code refactoring
2089
+
2090
+ - **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))
2091
+
2092
+ </details>
2093
+
2094
+ <div align="right">
2095
+
2096
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2097
+
2098
+ </div>
2099
+
2100
+ ## [Version 2.0.0-next.28](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.27...v2.0.0-next.28)
2101
+
2102
+ <sup>Released on **2025-11-04**</sup>
2103
+
2104
+ #### ✨ Features
2105
+
2106
+ - **misc**: Support install sreamable http mcp server on web.
2107
+
2108
+ <br/>
2109
+
2110
+ <details>
2111
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2112
+
2113
+ #### What's improved
2114
+
2115
+ - **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))
2116
+
2117
+ </details>
2118
+
2119
+ <div align="right">
2120
+
2121
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2122
+
2123
+ </div>
2124
+
2125
+ ## [Version 2.0.0-next.27](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.26...v2.0.0-next.27)
2126
+
2127
+ <sup>Released on **2025-11-04**</sup>
2128
+
2129
+ #### ♻ Code Refactoring
2130
+
2131
+ - **misc**: Refactor services to a more clean structure.
2132
+
2133
+ <br/>
2134
+
2135
+ <details>
2136
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2137
+
2138
+ #### Code refactoring
2139
+
2140
+ - **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))
2141
+
2142
+ </details>
2143
+
2144
+ <div align="right">
2145
+
2146
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2147
+
2148
+ </div>
2149
+
2150
+ ## [Version 2.0.0-next.26](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.25...v2.0.0-next.26)
2151
+
2152
+ <sup>Released on **2025-11-04**</sup>
2153
+
2154
+ #### ♻ Code Refactoring
2155
+
2156
+ - **misc**: Add settings (jsonb) column to `ai_models` table.
2157
+
2158
+ <br/>
2159
+
2160
+ <details>
2161
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2162
+
2163
+ #### Code refactoring
2164
+
2165
+ - **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))
2166
+
2167
+ </details>
2168
+
2169
+ <div align="right">
2170
+
2171
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2172
+
2173
+ </div>
2174
+
2175
+ ## [Version 2.0.0-next.25](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.24...v2.0.0-next.25)
2176
+
2177
+ <sup>Released on **2025-11-04**</sup>
2178
+
2179
+ #### ✨ Features
2180
+
2181
+ - **misc**: Display assistant message in group.
2182
+
2183
+ <br/>
2184
+
2185
+ <details>
2186
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2187
+
2188
+ #### What's improved
2189
+
2190
+ - **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))
2191
+
2192
+ </details>
2193
+
2194
+ <div align="right">
2195
+
2196
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2197
+
2198
+ </div>
2199
+
2200
+ ## [Version 2.0.0-next.24](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.23...v2.0.0-next.24)
2201
+
2202
+ <sup>Released on **2025-11-04**</sup>
2203
+
2204
+ #### 💄 Styles
2205
+
2206
+ - **misc**: Improve lab style.
2207
+
2208
+ <br/>
2209
+
2210
+ <details>
2211
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2212
+
2213
+ #### Styles
2214
+
2215
+ - **misc**: Improve lab style, closes [#10040](https://github.com/lobehub/lobe-chat/issues/10040) ([bbf1c0b](https://github.com/lobehub/lobe-chat/commit/bbf1c0b))
2216
+
2217
+ </details>
2218
+
2219
+ <div align="right">
2220
+
2221
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2222
+
2223
+ </div>
2224
+
2225
+ ## [Version 2.0.0-next.23](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.22...v2.0.0-next.23)
2226
+
2227
+ <sup>Released on **2025-11-04**</sup>
2228
+
2229
+ #### 🐛 Bug Fixes
2230
+
2231
+ - **misc**: Fix send message.
2232
+
2233
+ <br/>
2234
+
2235
+ <details>
2236
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2237
+
2238
+ #### What's fixed
2239
+
2240
+ - **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))
2241
+
2242
+ </details>
2243
+
2244
+ <div align="right">
2245
+
2246
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2247
+
2248
+ </div>
2249
+
2250
+ ## [Version 2.0.0-next.22](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.21...v2.0.0-next.22)
2251
+
2252
+ <sup>Released on **2025-11-04**</sup>
2253
+
2254
+ <br/>
2255
+
2256
+ <details>
2257
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2258
+
2259
+ </details>
2260
+
2261
+ <div align="right">
2262
+
2263
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2264
+
2265
+ </div>
2266
+
2267
+ ## [Version 2.0.0-next.21](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.20...v2.0.0-next.21)
2268
+
2269
+ <sup>Released on **2025-11-04**</sup>
2270
+
2271
+ #### 🐛 Bug Fixes
2272
+
2273
+ - **misc**: Fix oidc auth timeout issue on the desktop.
2274
+
2275
+ <br/>
2276
+
2277
+ <details>
2278
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2279
+
2280
+ #### What's fixed
2281
+
2282
+ - **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))
2283
+
2284
+ </details>
2285
+
2286
+ <div align="right">
2287
+
2288
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2289
+
2290
+ </div>
2291
+
2292
+ ## [Version 2.0.0-next.20](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.19...v2.0.0-next.20)
2293
+
2294
+ <sup>Released on **2025-11-03**</sup>
2295
+
2296
+ #### 💄 Styles
2297
+
2298
+ - **misc**: Improve oidc layout style.
2299
+
2300
+ <br/>
2301
+
2302
+ <details>
2303
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2304
+
2305
+ #### Styles
2306
+
2307
+ - **misc**: Improve oidc layout style, closes [#10023](https://github.com/lobehub/lobe-chat/issues/10023) ([5008be7](https://github.com/lobehub/lobe-chat/commit/5008be7))
2308
+
2309
+ </details>
2310
+
2311
+ <div align="right">
2312
+
2313
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2314
+
2315
+ </div>
2316
+
2317
+ ## [Version 2.0.0-next.19](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.18...v2.0.0-next.19)
2318
+
2319
+ <sup>Released on **2025-11-03**</sup>
2320
+
2321
+ #### ♻ Code Refactoring
2322
+
2323
+ - **misc**: Remove `NEXT_PUBLIC_SERVICE_MODE` env and use server by default.
2324
+
2325
+ <br/>
2326
+
2327
+ <details>
2328
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2329
+
2330
+ #### Code refactoring
2331
+
2332
+ - **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))
2333
+
2334
+ </details>
2335
+
2336
+ <div align="right">
2337
+
2338
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2339
+
2340
+ </div>
2341
+
2342
+ ## [Version 2.0.0-next.18](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.17...v2.0.0-next.18)
2343
+
2344
+ <sup>Released on **2025-11-03**</sup>
2345
+
2346
+ #### ♻ Code Refactoring
2347
+
2348
+ - **misc**: Refactor trpc request to use zod schema.
2349
+
2350
+ #### 💄 Styles
2351
+
2352
+ - **misc**: Improve built-in client OIDC user flow.
2353
+
2354
+ <br/>
2355
+
2356
+ <details>
2357
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2358
+
2359
+ #### Code refactoring
2360
+
2361
+ - **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))
2362
+
2363
+ #### Styles
2364
+
2365
+ - **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))
2366
+
2367
+ </details>
2368
+
2369
+ <div align="right">
2370
+
2371
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2372
+
2373
+ </div>
2374
+
2375
+ ## [Version 2.0.0-next.17](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.16...v2.0.0-next.17)
2376
+
2377
+ <sup>Released on **2025-11-03**</sup>
2378
+
2379
+ #### 🐛 Bug Fixes
2380
+
2381
+ - **misc**: Fix regex ReDoS.
2382
+
2383
+ <br/>
2384
+
2385
+ <details>
2386
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2387
+
2388
+ #### What's fixed
2389
+
2390
+ - **misc**: Fix regex ReDoS, closes [#10012](https://github.com/lobehub/lobe-chat/issues/10012) ([1d8d5cd](https://github.com/lobehub/lobe-chat/commit/1d8d5cd))
2391
+
2392
+ </details>
2393
+
2394
+ <div align="right">
2395
+
2396
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2397
+
2398
+ </div>
2399
+
2400
+ ## [Version 2.0.0-next.16](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.15...v2.0.0-next.16)
2401
+
2402
+ <sup>Released on **2025-11-03**</sup>
2403
+
2404
+ #### ♻ Code Refactoring
2405
+
2406
+ - **misc**: Remove deperated code.
2407
+
2408
+ <br/>
2409
+
2410
+ <details>
2411
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2412
+
2413
+ #### Code refactoring
2414
+
2415
+ - **misc**: Remove deperated code, closes [#10001](https://github.com/lobehub/lobe-chat/issues/10001) ([4ee4590](https://github.com/lobehub/lobe-chat/commit/4ee4590))
2416
+
2417
+ </details>
2418
+
2419
+ <div align="right">
2420
+
2421
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2422
+
2423
+ </div>
2424
+
2425
+ ## [Version 2.0.0-next.15](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.14...v2.0.0-next.15)
2426
+
2427
+ <sup>Released on **2025-11-03**</sup>
2428
+
2429
+ <br/>
2430
+
2431
+ <details>
2432
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2433
+
2434
+ </details>
2435
+
2436
+ <div align="right">
2437
+
2438
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2439
+
2440
+ </div>
2441
+
2442
+ ## [Version 2.0.0-next.14](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.13...v2.0.0-next.14)
2443
+
2444
+ <sup>Released on **2025-11-02**</sup>
2445
+
2446
+ #### ♻ Code Refactoring
2447
+
2448
+ - **misc**: Remove client service.
2449
+
2450
+ <br/>
2451
+
2452
+ <details>
2453
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2454
+
2455
+ #### Code refactoring
2456
+
2457
+ - **misc**: Remove client service, closes [#9991](https://github.com/lobehub/lobe-chat/issues/9991) ([9137dba](https://github.com/lobehub/lobe-chat/commit/9137dba))
2458
+
2459
+ </details>
2460
+
2461
+ <div align="right">
2462
+
2463
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2464
+
2465
+ </div>
2466
+
2467
+ ## [Version 2.0.0-next.13](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.12...v2.0.0-next.13)
2468
+
2469
+ <sup>Released on **2025-11-02**</sup>
2470
+
2471
+ #### 🐛 Bug Fixes
2472
+
2473
+ - **misc**: Fix image prompt form.
2474
+
2475
+ <br/>
2476
+
2477
+ <details>
2478
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2479
+
2480
+ #### What's fixed
2481
+
2482
+ - **misc**: Fix image prompt form, closes [#9995](https://github.com/lobehub/lobe-chat/issues/9995) ([799e6fd](https://github.com/lobehub/lobe-chat/commit/799e6fd))
2483
+
2484
+ </details>
2485
+
2486
+ <div align="right">
2487
+
2488
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2489
+
2490
+ </div>
2491
+
2492
+ ## [Version 2.0.0-next.12](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.11...v2.0.0-next.12)
2493
+
2494
+ <sup>Released on **2025-11-02**</sup>
2495
+
2496
+ #### 💄 Styles
2497
+
2498
+ - **misc**: Add padding to TopicList component.
2499
+
2500
+ <br/>
2501
+
2502
+ <details>
2503
+ <summary><kbd>Improvements and Fixes</kbd></summary>
2504
+
2505
+ #### Styles
2506
+
2507
+ - **misc**: Add padding to TopicList component, closes [#9994](https://github.com/lobehub/lobe-chat/issues/9994) ([c1e7381](https://github.com/lobehub/lobe-chat/commit/c1e7381))
2508
+
2509
+ </details>
2510
+
2511
+ <div align="right">
2512
+
2513
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
2514
+
2515
+ </div>
2516
+
5
2517
  ## [Version 2.0.0-next.11](https://github.com/lobehub/lobe-chat/compare/v2.0.0-next.10...v2.0.0-next.11)
6
2518
 
7
2519
  <sup>Released on **2025-11-02**</sup>