@lobehub/chat 0.152.4 → 0.152.6

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 (214) hide show
  1. package/CHANGELOG.md +10 -35
  2. package/README.md +8 -8
  3. package/README.zh-CN.md +8 -8
  4. package/locales/ar/common.json +0 -14
  5. package/locales/ar/setting.json +1 -4
  6. package/locales/bg-BG/common.json +0 -14
  7. package/locales/bg-BG/setting.json +1 -4
  8. package/locales/de-DE/common.json +0 -14
  9. package/locales/de-DE/setting.json +1 -4
  10. package/locales/en-US/common.json +0 -14
  11. package/locales/en-US/setting.json +1 -4
  12. package/locales/es-ES/common.json +0 -14
  13. package/locales/es-ES/setting.json +1 -4
  14. package/locales/fr-FR/common.json +0 -14
  15. package/locales/fr-FR/setting.json +1 -4
  16. package/locales/it-IT/common.json +0 -14
  17. package/locales/it-IT/setting.json +1 -4
  18. package/locales/ja-JP/common.json +0 -14
  19. package/locales/ja-JP/setting.json +1 -4
  20. package/locales/ko-KR/common.json +0 -14
  21. package/locales/ko-KR/setting.json +1 -4
  22. package/locales/nl-NL/common.json +0 -14
  23. package/locales/nl-NL/setting.json +1 -4
  24. package/locales/pl-PL/common.json +0 -14
  25. package/locales/pl-PL/setting.json +1 -4
  26. package/locales/pt-BR/common.json +0 -14
  27. package/locales/pt-BR/setting.json +1 -4
  28. package/locales/ru-RU/common.json +0 -14
  29. package/locales/ru-RU/setting.json +1 -4
  30. package/locales/tr-TR/common.json +0 -14
  31. package/locales/tr-TR/setting.json +1 -4
  32. package/locales/vi-VN/common.json +0 -14
  33. package/locales/vi-VN/setting.json +1 -4
  34. package/locales/zh-CN/common.json +0 -14
  35. package/locales/zh-CN/setting.json +1 -4
  36. package/locales/zh-TW/common.json +0 -14
  37. package/locales/zh-TW/setting.json +1 -4
  38. package/package.json +1 -1
  39. package/src/app/(main)/@nav/_layout/Desktop/Avatar.tsx +11 -0
  40. package/src/app/(main)/@nav/_layout/Desktop/BottomActions.tsx +120 -7
  41. package/src/app/(main)/@nav/_layout/Desktop/index.tsx +2 -7
  42. package/src/app/(main)/@nav/_layout/Mobile.tsx +3 -3
  43. package/src/app/(main)/chat/(mobile)/features/SessionHeader.tsx +1 -1
  44. package/src/app/(main)/chat/_layout/Desktop/index.tsx +8 -6
  45. package/src/app/(main)/chat/_layout/Mobile/index.tsx +3 -5
  46. package/src/app/(main)/chat/features/SettingButton.tsx +5 -4
  47. package/src/app/(main)/chat/layout.ts +2 -5
  48. package/src/app/(main)/chat/settings/{_layout/Desktop → (desktop)}/Header.tsx +0 -2
  49. package/src/app/(main)/chat/settings/(desktop)/index.tsx +23 -0
  50. package/src/app/(main)/chat/settings/{_layout/Mobile → (mobile)}/Header.tsx +2 -3
  51. package/src/app/(main)/chat/settings/(mobile)/index.tsx +16 -0
  52. package/src/app/(main)/chat/settings/features/HeaderContent.tsx +9 -15
  53. package/src/app/(main)/chat/settings/features/SubmitAgentButton/SubmitAgentModal.tsx +0 -2
  54. package/src/app/(main)/chat/settings/features/SubmitAgentButton/index.tsx +8 -16
  55. package/src/app/(main)/chat/settings/layout.tsx +2 -9
  56. package/src/app/(main)/chat/settings/page.tsx +9 -2
  57. package/src/app/(main)/market/{_layout/Desktop/DetailSidebar.tsx → @detail/_layout/Desktop.tsx} +2 -2
  58. package/src/app/(main)/market/{_layout/Mobile/DetailModal.tsx → @detail/_layout/Mobile.tsx} +2 -2
  59. package/src/app/(main)/market/@detail/default.tsx +10 -1
  60. package/src/app/(main)/market/_layout/Desktop/index.tsx +1 -2
  61. package/src/app/(main)/market/_layout/Mobile/index.tsx +1 -3
  62. package/src/app/(main)/settings/(desktop)/index.tsx +23 -0
  63. package/src/app/(main)/settings/(mobile)/features/AvatarBanner.tsx +68 -0
  64. package/src/app/(main)/settings/(mobile)/features/ExtraList.tsx +65 -0
  65. package/src/app/(main)/settings/(mobile)/index.tsx +53 -0
  66. package/src/app/(main)/settings/_layout/Desktop/Header.tsx +23 -78
  67. package/src/app/(main)/settings/_layout/Desktop/SideBar.tsx +27 -39
  68. package/src/app/(main)/settings/_layout/Desktop/index.tsx +17 -41
  69. package/src/app/(main)/settings/_layout/Mobile/{Header.tsx → SubSettingHeader.tsx} +1 -3
  70. package/src/app/(main)/settings/_layout/Mobile/index.tsx +18 -7
  71. package/src/app/(main)/settings/about/AboutList.tsx +53 -0
  72. package/src/app/(main)/settings/about/Analytics.tsx +40 -0
  73. package/src/app/(main)/settings/about/page.tsx +33 -13
  74. package/src/app/(main)/settings/about/style.ts +22 -0
  75. package/src/app/(main)/settings/agent/Agent.tsx +29 -0
  76. package/src/app/(main)/settings/agent/loading.tsx +3 -0
  77. package/src/app/(main)/settings/agent/page.tsx +16 -8
  78. package/src/app/(main)/settings/common/{features/Common.tsx → Common.tsx} +5 -7
  79. package/src/app/(main)/settings/common/{features/Theme/index.tsx → Theme.tsx} +6 -8
  80. package/src/app/(main)/settings/common/index.tsx +16 -11
  81. package/src/app/(main)/settings/common/loading.tsx +3 -0
  82. package/src/app/(main)/settings/common/page.tsx +7 -8
  83. package/src/app/(main)/settings/features/Footer.tsx +0 -2
  84. package/src/app/(main)/settings/features/SettingList/index.tsx +47 -0
  85. package/src/app/(main)/settings/features/UpgradeAlert.tsx +13 -21
  86. package/src/app/(main)/settings/hooks/useSyncSettings.ts +2 -2
  87. package/src/app/(main)/settings/layout.ts +1 -4
  88. package/src/app/(main)/settings/llm/Anthropic/index.tsx +10 -4
  89. package/src/app/(main)/settings/llm/Azure/index.tsx +1 -3
  90. package/src/app/(main)/settings/llm/Bedrock/index.tsx +1 -3
  91. package/src/app/(main)/settings/llm/Google/index.tsx +2 -4
  92. package/src/app/(main)/settings/llm/Groq/index.tsx +1 -3
  93. package/src/app/(main)/settings/llm/Minimax/index.tsx +9 -3
  94. package/src/app/(main)/settings/llm/Mistral/index.tsx +9 -3
  95. package/src/app/(main)/settings/llm/Moonshot/index.tsx +1 -3
  96. package/src/app/(main)/settings/llm/Ollama/index.tsx +1 -3
  97. package/src/app/(main)/settings/llm/OpenAI/index.tsx +0 -2
  98. package/src/app/(main)/settings/llm/OpenRouter/index.tsx +9 -3
  99. package/src/app/(main)/settings/llm/Perplexity/index.tsx +9 -3
  100. package/src/app/(main)/settings/llm/TogetherAI/index.tsx +9 -3
  101. package/src/app/(main)/settings/llm/ZeroOne/index.tsx +9 -3
  102. package/src/app/(main)/settings/llm/Zhipu/index.tsx +10 -3
  103. package/src/app/(main)/settings/llm/components/Checker.tsx +0 -2
  104. package/src/app/(main)/settings/llm/components/ProviderConfig/index.tsx +1 -16
  105. package/src/app/(main)/settings/llm/index.tsx +24 -12
  106. package/src/app/(main)/settings/llm/layout.tsx +11 -0
  107. package/src/app/(main)/settings/llm/loading.tsx +3 -0
  108. package/src/app/(main)/settings/llm/page.tsx +0 -15
  109. package/src/app/(main)/settings/page.tsx +14 -2
  110. package/src/app/(main)/settings/sync/{features/DeviceInfo → DeviceInfo}/Card.tsx +5 -6
  111. package/src/app/(main)/settings/sync/DeviceInfo/DeviceName.tsx +66 -0
  112. package/src/app/(main)/settings/sync/{features/DeviceInfo → DeviceInfo}/index.tsx +36 -22
  113. package/src/app/(main)/settings/sync/PageTitle.tsx +11 -0
  114. package/src/app/(main)/settings/sync/{features/WebRTC → WebRTC}/ChannelNameInput.tsx +3 -3
  115. package/src/app/(main)/settings/sync/{features/WebRTC → WebRTC}/index.tsx +9 -10
  116. package/src/app/(main)/settings/sync/{features/DeviceInfo → components}/SystemIcon.tsx +14 -6
  117. package/src/app/(main)/settings/sync/layout.tsx +12 -0
  118. package/src/app/(main)/settings/sync/loading.tsx +3 -0
  119. package/src/app/(main)/settings/sync/page.tsx +15 -11
  120. package/src/app/(main)/settings/tts/{features/STT.tsx → TTS/index.tsx} +27 -11
  121. package/src/app/(main)/settings/tts/loading.tsx +3 -0
  122. package/src/app/(main)/settings/tts/page.tsx +16 -8
  123. package/src/app/layout.tsx +3 -11
  124. package/src/const/url.ts +0 -1
  125. package/src/features/AgentSetting/AgentConfig/index.tsx +202 -0
  126. package/src/features/AgentSetting/AgentConfig/useSyncConfig.ts +23 -0
  127. package/src/features/AgentSetting/AgentMeta/index.tsx +3 -4
  128. package/src/features/AgentSetting/AgentPlugin/index.tsx +66 -65
  129. package/src/features/AgentSetting/AgentPrompt/index.tsx +47 -101
  130. package/src/features/AgentSetting/AgentTTS/index.tsx +0 -4
  131. package/src/features/AgentSetting/StoreUpdater.tsx +0 -2
  132. package/src/features/AgentSetting/index.tsx +6 -6
  133. package/src/features/AgentSetting/store/index.ts +0 -2
  134. package/src/features/AvatarWithUpload/index.tsx +0 -2
  135. package/src/features/Conversation/components/ChatItem/HistoryDivider.tsx +1 -1
  136. package/src/locales/default/common.ts +0 -14
  137. package/src/locales/default/setting.ts +0 -3
  138. package/src/store/global/initialState.ts +0 -1
  139. package/src/app/(main)/(mobile)/me/features/AvatarBanner.tsx +0 -52
  140. package/src/app/(main)/(mobile)/me/features/Cate.tsx +0 -35
  141. package/src/app/(main)/(mobile)/me/features/ExtraCate.tsx +0 -26
  142. package/src/app/(main)/(mobile)/me/features/useExtraCate.tsx +0 -68
  143. package/src/app/(main)/(mobile)/me/layout.tsx +0 -11
  144. package/src/app/(main)/(mobile)/me/loading.tsx +0 -17
  145. package/src/app/(main)/(mobile)/me/page.tsx +0 -31
  146. package/src/app/(main)/@nav/features/UserAvatar.tsx +0 -24
  147. package/src/app/(main)/@nav/features/UserPanel/LangButton.tsx +0 -55
  148. package/src/app/(main)/@nav/features/UserPanel/Popover.tsx +0 -34
  149. package/src/app/(main)/@nav/features/UserPanel/ThemeButton.tsx +0 -70
  150. package/src/app/(main)/@nav/features/UserPanel/UserInfo.tsx +0 -35
  151. package/src/app/(main)/@nav/features/UserPanel/index.tsx +0 -69
  152. package/src/app/(main)/@nav/features/UserPanel/useMenu.tsx +0 -142
  153. package/src/app/(main)/@nav/features/UserPanel/useNewVersion.tsx +0 -12
  154. package/src/app/(main)/chat/_layout/type.ts +0 -5
  155. package/src/app/(main)/chat/settings/_layout/Desktop/index.tsx +0 -32
  156. package/src/app/(main)/chat/settings/_layout/Mobile/index.tsx +0 -15
  157. package/src/app/(main)/chat/settings/error.tsx +0 -5
  158. package/src/app/(main)/chat/settings/loading.tsx +0 -3
  159. package/src/app/(main)/chat/settings/m/page.tsx +0 -15
  160. package/src/app/(main)/chat/settings/not-found.tsx +0 -3
  161. package/src/app/(main)/market/@detail/loading.tsx +0 -1
  162. package/src/app/(main)/settings/@category/default.tsx +0 -16
  163. package/src/app/(main)/settings/@category/features/CategoryContent.tsx +0 -37
  164. package/src/app/(main)/settings/@category/features/UpgradeAlert.tsx +0 -38
  165. package/src/app/(main)/settings/_layout/type.ts +0 -6
  166. package/src/app/(main)/settings/about/features/AboutList.tsx +0 -122
  167. package/src/app/(main)/settings/about/features/Analytics.tsx +0 -42
  168. package/src/app/(main)/settings/about/index.tsx +0 -35
  169. package/src/app/(main)/settings/agent/index.tsx +0 -48
  170. package/src/app/(main)/settings/error.tsx +0 -5
  171. package/src/app/(main)/settings/hooks/useCategory.tsx +0 -54
  172. package/src/app/(main)/settings/llm/components/Footer.tsx +0 -26
  173. package/src/app/(main)/settings/loading.tsx +0 -9
  174. package/src/app/(main)/settings/m/page.tsx +0 -19
  175. package/src/app/(main)/settings/not-found.tsx +0 -3
  176. package/src/app/(main)/settings/sync/features/DeviceInfo/DeviceName.tsx +0 -63
  177. package/src/app/(main)/settings/sync/index.tsx +0 -17
  178. package/src/app/(main)/settings/tts/features/OpenAI.tsx +0 -54
  179. package/src/app/(main)/settings/tts/index.tsx +0 -15
  180. package/src/app/@modal/(.)settings/m/index.tsx +0 -34
  181. package/src/app/@modal/(.)settings/m/layout.tsx +0 -28
  182. package/src/app/@modal/(.)settings/m/loading.tsx +0 -5
  183. package/src/app/@modal/(.)settings/m/page.tsx +0 -10
  184. package/src/app/@modal/_layout/Desktop.tsx +0 -32
  185. package/src/app/@modal/_layout/Mobile.tsx +0 -1
  186. package/src/app/@modal/_layout/SettingModalLayout.tsx +0 -59
  187. package/src/app/@modal/chat/(.)settings/m/features/CategoryContent.tsx +0 -36
  188. package/src/app/@modal/chat/(.)settings/m/features/useCategory.tsx +0 -62
  189. package/src/app/@modal/chat/(.)settings/m/layout.tsx +0 -55
  190. package/src/app/@modal/chat/(.)settings/m/loading.tsx +0 -5
  191. package/src/app/@modal/chat/(.)settings/m/page.tsx +0 -34
  192. package/src/app/@modal/default.tsx +0 -1
  193. package/src/app/@modal/layout.tsx +0 -30
  194. package/src/app/@modal/loading.tsx +0 -5
  195. package/src/components/BrandWatermark/index.tsx +0 -39
  196. package/src/components/Cell/Divider.tsx +0 -19
  197. package/src/components/Cell/index.tsx +0 -38
  198. package/src/components/Menu/index.tsx +0 -97
  199. package/src/components/SkeletonLoading/index.tsx +0 -21
  200. package/src/features/AgentSetting/AgentChat/index.tsx +0 -135
  201. package/src/features/AgentSetting/AgentModal/index.tsx +0 -95
  202. package/src/hooks/useQuery.ts +0 -7
  203. package/src/hooks/useQueryRoute.ts +0 -16
  204. package/src/server/redirectHard.ts +0 -9
  205. /package/src/app/(main)/settings/{about/features → features/SettingList}/Item.tsx +0 -0
  206. /package/src/app/(main)/settings/{common/features/Theme → features}/ThemeSwatches/ThemeSwatchesNeutral.tsx +0 -0
  207. /package/src/app/(main)/settings/{common/features/Theme → features}/ThemeSwatches/ThemeSwatchesPrimary.tsx +0 -0
  208. /package/src/app/(main)/settings/{common/features/Theme → features}/ThemeSwatches/index.ts +0 -0
  209. /package/src/app/(main)/settings/sync/{features/Alert.tsx → Alert.tsx} +0 -0
  210. /package/src/app/(main)/settings/sync/{features/WebRTC → components}/SyncSwitch/index.css +0 -0
  211. /package/src/app/(main)/settings/sync/{features/WebRTC → components}/SyncSwitch/index.tsx +0 -0
  212. /package/src/app/(main)/settings/sync/{features/WebRTC/generateRandomRoomName.ts → util.ts} +0 -0
  213. /package/src/app/(main)/settings/tts/{features/const.ts → TTS/options.ts} +0 -0
  214. /package/src/features/AgentSetting/{AgentModal → AgentConfig}/ModelSelect.tsx +0 -0
package/CHANGELOG.md CHANGED
@@ -2,22 +2,22 @@
2
2
 
3
3
  # Changelog
4
4
 
5
- ### [Version 0.152.4](https://github.com/lobehub/lobe-chat/compare/v0.152.3...v0.152.4)
5
+ ### [Version 0.152.6](https://github.com/lobehub/lobe-chat/compare/v0.152.5...v0.152.6)
6
6
 
7
- <sup>Released on **2024-05-01**</sup>
7
+ <sup>Released on **2024-05-02**</sup>
8
8
 
9
- #### 🐛 Bug Fixes
9
+ #### 💄 Styles
10
10
 
11
- - **misc**: Fix router path in UserPanel.
11
+ - **misc**: AutoScroll to the fully end.
12
12
 
13
13
  <br/>
14
14
 
15
15
  <details>
16
16
  <summary><kbd>Improvements and Fixes</kbd></summary>
17
17
 
18
- #### What's fixed
18
+ #### Styles
19
19
 
20
- - **misc**: Fix router path in UserPanel ([c779e02](https://github.com/lobehub/lobe-chat/commit/c779e02))
20
+ - **misc**: AutoScroll to the fully end, closes [#2345](https://github.com/lobehub/lobe-chat/issues/2345) ([5458e98](https://github.com/lobehub/lobe-chat/commit/5458e98))
21
21
 
22
22
  </details>
23
23
 
@@ -27,13 +27,13 @@
27
27
 
28
28
  </div>
29
29
 
30
- ### [Version 0.152.3](https://github.com/lobehub/lobe-chat/compare/v0.152.2...v0.152.3)
30
+ ### [Version 0.152.5](https://github.com/lobehub/lobe-chat/compare/v0.152.4...v0.152.5)
31
31
 
32
- <sup>Released on **2024-05-01**</sup>
32
+ <sup>Released on **2024-05-02**</sup>
33
33
 
34
34
  #### 🐛 Bug Fixes
35
35
 
36
- - **misc**: Fix intercepting-routes on mobile.
36
+ - **misc**: Fix Setings Layout.
37
37
 
38
38
  <br/>
39
39
 
@@ -42,32 +42,7 @@
42
42
 
43
43
  #### What's fixed
44
44
 
45
- - **misc**: Fix intercepting-routes on mobile ([abe228c](https://github.com/lobehub/lobe-chat/commit/abe228c))
46
-
47
- </details>
48
-
49
- <div align="right">
50
-
51
- [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
52
-
53
- </div>
54
-
55
- ### [Version 0.152.2](https://github.com/lobehub/lobe-chat/compare/v0.152.1...v0.152.2)
56
-
57
- <sup>Released on **2024-05-01**</sup>
58
-
59
- #### ♻ Code Refactoring
60
-
61
- - **misc**: Refactor Setting Layout.
62
-
63
- <br/>
64
-
65
- <details>
66
- <summary><kbd>Improvements and Fixes</kbd></summary>
67
-
68
- #### Code refactoring
69
-
70
- - **misc**: Refactor Setting Layout, closes [#2336](https://github.com/lobehub/lobe-chat/issues/2336) ([282082e](https://github.com/lobehub/lobe-chat/commit/282082e))
45
+ - **misc**: Fix Setings Layout, closes [#2340](https://github.com/lobehub/lobe-chat/issues/2340) ([6a2e9a9](https://github.com/lobehub/lobe-chat/commit/6a2e9a9))
71
46
 
72
47
  </details>
73
48
 
package/README.md CHANGED
@@ -222,14 +222,14 @@ In addition, these plugins are not limited to news aggregation, but can also ext
222
222
 
223
223
  <!-- PLUGIN LIST -->
224
224
 
225
- | Recent Submits | Description |
226
- | ------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
227
- | [Search Google via Serper](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **Barry** on **2024-04-30**</sup> | Google search engine via Serper.dev free API (2500x🆓/month)<br/>`web` `search` |
228
- | [Speak](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **speak** on **2024-04-30**</sup> | Learn how to say anything in another language with Speak, your AI-powered language tutor.<br/>`education` `language` |
229
- | [NFT Guru](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **swap** on **2024-04-03**</sup> | Discover current prices of NFTs across major platforms and keep track of the rapidly changing marketplace with real-time<br/>`crypto` `nft` |
230
- | [Calendar Assistant](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **cc** on **2024-03-13**</sup> | A plugin to manage your calendar events # will auto generate i18n in workflow<br/>`calendar` `schedule` `will-auto-generate-i-18-n-in-workflow` |
231
-
232
- > 📊 Total plugins: [<kbd>**56**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
225
+ | Recent Submits | Description |
226
+ | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
227
+ | [Social Search](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **say-apps** on **2024-05-02**</sup> | The Social Search provides access to tweets, users, followers, images, media and more.<br/>`social` `twitter` `x` `search` |
228
+ | [Search Google via Serper](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **Barry** on **2024-04-30**</sup> | Google search engine via Serper.dev free API (2500x🆓/month)<br/>`web` `search` |
229
+ | [Speak](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **speak** on **2024-04-30**</sup> | Learn how to say anything in another language with Speak, your AI-powered language tutor.<br/>`education` `language` |
230
+ | [NFT Guru](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **swap** on **2024-04-03**</sup> | Discover current prices of NFTs across major platforms and keep track of the rapidly changing marketplace with real-time<br/>`crypto` `nft` |
231
+
232
+ > 📊 Total plugins: [<kbd>**57**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
233
233
 
234
234
  <!-- PLUGIN LIST -->
235
235
 
package/README.zh-CN.md CHANGED
@@ -214,14 +214,14 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
214
214
 
215
215
  <!-- PLUGIN LIST -->
216
216
 
217
- | 最近新增 | 插件描述 |
218
- | ------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------- |
219
- | [通过 Serper 搜索 Google](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **Barry** on **2024-04-30**</sup> | 通过 Serper.dev 免费 API 进行 Google 搜索引擎(每月 2500 次🆓)<br/>`网络` `搜索` |
220
- | [Speak](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **speak** on **2024-04-30**</sup> | 使用 Speak,您的 AI 语言导师,学习如何用另一种语言说任何事情。<br/>`教育` `语言` |
221
- | [NFT Guru](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **swap** on **2024-04-03**</sup> | 发现主要平台上 NFT 的当前价格,并通过实时跟踪快速变化的市场了解情况<br/>`加密货币` `nft` |
222
- | [日历助手](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **cc** on **2024-03-13**</sup> | 一个用于管理日历事件的插件 # 将自动生成工作流程中的 i18n<br/>`日历` `日程安排` `将自动生成工作流程中的-i-18-n` |
223
-
224
- > 📊 Total plugins: [<kbd>**56**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
217
+ | 最近新增 | 插件描述 |
218
+ | ------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------- |
219
+ | [社交搜索](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **say-apps** on **2024-05-02**</sup> | 社交搜索提供访问推文、用户、关注者、图片、媒体等功能。<br/>`社交` `推特` `x` `搜索` |
220
+ | [通过 Serper 搜索 Google](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **Barry** on **2024-04-30**</sup> | 通过 Serper.dev 免费 API 进行 Google 搜索引擎(每月 2500 次🆓)<br/>`网络` `搜索` |
221
+ | [Speak](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **speak** on **2024-04-30**</sup> | 使用 Speak,您的 AI 语言导师,学习如何用另一种语言说任何事情。<br/>`教育` `语言` |
222
+ | [NFT Guru](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **swap** on **2024-04-03**</sup> | 发现主要平台上 NFT 的当前价格,并通过实时跟踪快速变化的市场了解情况<br/>`加密货币` `nft` |
223
+
224
+ > 📊 Total plugins: [<kbd>**57**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
225
225
 
226
226
  <!-- PLUGIN LIST -->
227
227
 
@@ -140,7 +140,6 @@
140
140
  "tab": {
141
141
  "chat": "الدردشة",
142
142
  "market": "الاكتشاف",
143
- "me": "أنا",
144
143
  "setting": "الإعدادات"
145
144
  },
146
145
  "telemetry": {
@@ -157,18 +156,5 @@
157
156
  "action": "ترقية",
158
157
  "hasNew": "يوجد تحديث متاح",
159
158
  "newVersion": "هناك إصدار جديد متاح: {{version}}"
160
- },
161
- "userPanel": {
162
- "billing": "إدارة الفواتير",
163
- "discord": "الدعم المجتمعي",
164
- "docs": "وثائق الاستخدام",
165
- "email": "الدعم عبر البريد الإلكتروني",
166
- "feedback": "التغذية الراجعة والاقتراحات",
167
- "help": "مركز المساعدة",
168
- "plans": "الخطط الاشتراكية",
169
- "profile": "إدارة الحساب",
170
- "setting": "إعدادات التطبيق",
171
- "usages": "إحصاءات الاستخدام",
172
- "warn": "هذا الدخول سيتم إيقافه قريبًا، يرجى استدعاء هذه القائمة من زاوية الصورة الرمزية في الزاوية اليسرى العلوية"
173
159
  }
174
160
  }
@@ -27,12 +27,9 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
- "desc": "إعدادات التفضيلات والنماذج.",
31
30
  "global": "إعدادات عامة",
32
31
  "session": "إعدادات الجلسة",
33
- "sessionDesc": "إعداد الشخصية وتفضيلات الجلسة.",
34
- "sessionWithName": "إعدادات الجلسة · {{name}}",
35
- "title": "إعدادات"
32
+ "sessionWithName": "إعدادات الجلسة · {{name}}"
36
33
  },
37
34
  "llm": {
38
35
  "checker": {
@@ -140,7 +140,6 @@
140
140
  "tab": {
141
141
  "chat": "Чат",
142
142
  "market": "Открий",
143
- "me": "我",
144
143
  "setting": "Настройки"
145
144
  },
146
145
  "telemetry": {
@@ -157,18 +156,5 @@
157
156
  "action": "Надстрой",
158
157
  "hasNew": "Налична е нова актуализация",
159
158
  "newVersion": "Налична е нова версия: {{version}}"
160
- },
161
- "userPanel": {
162
- "billing": "Сметки",
163
- "discord": "Общностна поддръжка",
164
- "docs": "Документация",
165
- "email": "Имейл поддръжка",
166
- "feedback": "Обратна връзка и предложения",
167
- "help": "Център за помощ",
168
- "plans": "Планове за абонамент",
169
- "profile": "Управление на профила",
170
- "setting": "Настройки на приложението",
171
- "usages": "Статистика за използване",
172
- "warn": "Този вход скоро ще бъде премахнат, моля използвайте менюто в горния ляв ъгъл, за да достъпите тази информация"
173
159
  }
174
160
  }
@@ -27,12 +27,9 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
- "desc": "Предпочитания и настройки на модела.",
31
30
  "global": "Глобални настройки",
32
31
  "session": "Настройки на сесията",
33
- "sessionDesc": "Задаване на роля и предпочитания за сесия.",
34
- "sessionWithName": "Настройки на сесията · {{name}}",
35
- "title": "Настройки"
32
+ "sessionWithName": "Настройки на сесията · {{name}}"
36
33
  },
37
34
  "llm": {
38
35
  "checker": {
@@ -140,7 +140,6 @@
140
140
  "tab": {
141
141
  "chat": "Chat",
142
142
  "market": "Entdecken",
143
- "me": "Ich",
144
143
  "setting": "Einstellung"
145
144
  },
146
145
  "telemetry": {
@@ -157,18 +156,5 @@
157
156
  "action": "Aktualisieren",
158
157
  "hasNew": "Neue Version verfügbar",
159
158
  "newVersion": "Neue Version verfügbar: {{version}}"
160
- },
161
- "userPanel": {
162
- "billing": "Abrechnung",
163
- "discord": "Community-Support",
164
- "docs": "Dokumentation",
165
- "email": "E-Mail-Support",
166
- "feedback": "Feedback und Vorschläge",
167
- "help": "Hilfezentrum",
168
- "plans": "Pläne",
169
- "profile": "Profil",
170
- "setting": "Einstellungen",
171
- "usages": "Nutzung",
172
- "warn": "Dieser Zugang wird bald entfernt. Bitte rufen Sie das Menü über das Profilbild oben links auf."
173
159
  }
174
160
  }
@@ -27,12 +27,9 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
- "desc": "Präferenzen und Modellkonfigurationen.",
31
30
  "global": "Global Einstellungen",
32
31
  "session": "Sitzungseinstellungen",
33
- "sessionDesc": "Rollenkonfiguration und Sitzungspräferenzen.",
34
- "sessionWithName": "Sitzungseinstellungen · {{name}}",
35
- "title": "Einstellungen"
32
+ "sessionWithName": "Sitzungseinstellungen · {{name}}"
36
33
  },
37
34
  "llm": {
38
35
  "checker": {
@@ -140,7 +140,6 @@
140
140
  "tab": {
141
141
  "chat": "Chat",
142
142
  "market": "Discover",
143
- "me": "Me",
144
143
  "setting": "Settings"
145
144
  },
146
145
  "telemetry": {
@@ -157,18 +156,5 @@
157
156
  "action": "Upgrade",
158
157
  "hasNew": "New update available",
159
158
  "newVersion": "New version available: {{version}}"
160
- },
161
- "userPanel": {
162
- "billing": "Billing",
163
- "discord": "Community Support",
164
- "docs": "Documentation",
165
- "email": "Email Support",
166
- "feedback": "Feedback & Suggestions",
167
- "help": "Help Center",
168
- "plans": "Subscription Plans",
169
- "profile": "Account Management",
170
- "setting": "App Settings",
171
- "usages": "Usage Statistics",
172
- "warn": "This entry will be deprecated soon. Please access this menu from the profile icon on the top left corner."
173
159
  }
174
160
  }
@@ -27,12 +27,9 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
- "desc": "Preferences and model settings.",
31
30
  "global": "Global Settings",
32
31
  "session": "Session Settings",
33
- "sessionDesc": "Role settings and session preferences.",
34
- "sessionWithName": "Session Settings · {{name}}",
35
- "title": "Settings"
32
+ "sessionWithName": "Session Settings · {{name}}"
36
33
  },
37
34
  "llm": {
38
35
  "checker": {
@@ -140,7 +140,6 @@
140
140
  "tab": {
141
141
  "chat": "Chat",
142
142
  "market": "Descubrir",
143
- "me": "Yo",
144
143
  "setting": "Configuración"
145
144
  },
146
145
  "telemetry": {
@@ -157,18 +156,5 @@
157
156
  "action": "Actualizar",
158
157
  "hasNew": "Hay una nueva actualización disponible",
159
158
  "newVersion": "Nueva versión disponible: {{version}}"
160
- },
161
- "userPanel": {
162
- "billing": "Gestión de facturación",
163
- "discord": "Soporte comunitario",
164
- "docs": "Documentación de uso",
165
- "email": "Soporte por correo electrónico",
166
- "feedback": "Comentarios y sugerencias",
167
- "help": "Centro de ayuda",
168
- "plans": "Planes de suscripción",
169
- "profile": "Gestión de cuenta",
170
- "setting": "Configuración de la aplicación",
171
- "usages": "Estadísticas de uso",
172
- "warn": "Esta entrada pronto se eliminará, por favor, acceda a este menú desde la imagen de perfil en la esquina superior izquierda"
173
159
  }
174
160
  }
@@ -27,12 +27,9 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
- "desc": "Preferencias y configuración del modelo.",
31
30
  "global": "Configuración global",
32
31
  "session": "Configuración de la sesión",
33
- "sessionDesc": "Configuración de roles y preferencias de sesión.",
34
- "sessionWithName": "Configuración de la sesión · {{name}}",
35
- "title": "Configuración"
32
+ "sessionWithName": "Configuración de la sesión · {{name}}"
36
33
  },
37
34
  "llm": {
38
35
  "checker": {
@@ -140,7 +140,6 @@
140
140
  "tab": {
141
141
  "chat": "Conversation",
142
142
  "market": "Découvrir",
143
- "me": "我",
144
143
  "setting": "Paramètre"
145
144
  },
146
145
  "telemetry": {
@@ -157,18 +156,5 @@
157
156
  "action": "Mettre à jour",
158
157
  "hasNew": "Nouvelle mise à jour disponible",
159
158
  "newVersion": "Nouvelle version disponible : {{version}}"
160
- },
161
- "userPanel": {
162
- "billing": "Gestion de la facturation",
163
- "discord": "Support communautaire",
164
- "docs": "Documentation d'utilisation",
165
- "email": "Support par e-mail",
166
- "feedback": "Retours et suggestions",
167
- "help": "Centre d'aide",
168
- "plans": "Forfaits d'abonnement",
169
- "profile": "Gestion du compte",
170
- "setting": "Paramètres de l'application",
171
- "usages": "Statistiques d'utilisation",
172
- "warn": "Cette entrée sera bientôt supprimée. Veuillez accéder à ce menu en cliquant sur l'avatar en haut à gauche."
173
159
  }
174
160
  }
@@ -27,12 +27,9 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
- "desc": "Préférences et paramètres du modèle.",
31
30
  "global": "Paramètres globaux",
32
31
  "session": "Paramètres de session",
33
- "sessionDesc": "Paramètres de personnage et préférences de session.",
34
- "sessionWithName": "Paramètres de session · {{name}}",
35
- "title": "Paramètres"
32
+ "sessionWithName": "Paramètres de session · {{name}}"
36
33
  },
37
34
  "llm": {
38
35
  "checker": {
@@ -140,7 +140,6 @@
140
140
  "tab": {
141
141
  "chat": "Chat",
142
142
  "market": "Scopri",
143
- "me": "io",
144
143
  "setting": "Impostazioni"
145
144
  },
146
145
  "telemetry": {
@@ -157,18 +156,5 @@
157
156
  "action": "Aggiorna",
158
157
  "hasNew": "Nuovo aggiornamento disponibile",
159
158
  "newVersion": "Nuova versione disponibile: {{version}}"
160
- },
161
- "userPanel": {
162
- "billing": "Gestione fatturazione",
163
- "discord": "Supporto comunità",
164
- "docs": "Documentazione",
165
- "email": "Supporto email",
166
- "feedback": "Feedback e suggerimenti",
167
- "help": "Centro assistenza",
168
- "plans": "Piani di abbonamento",
169
- "profile": "Gestione account",
170
- "setting": "Impostazioni app",
171
- "usages": "Statistiche utilizzo",
172
- "warn": "Questa voce verrà presto rimossa, successivamente accedi a questo menu dall'icona in alto a sinistra"
173
159
  }
174
160
  }
@@ -27,12 +27,9 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
- "desc": "Preferenze e impostazioni del modello.",
31
30
  "global": "Impostazioni globali",
32
31
  "session": "Impostazioni della sessione",
33
- "sessionDesc": "Impostazioni del personaggio e preferenze di sessione.",
34
- "sessionWithName": "Impostazioni della sessione · {{name}}",
35
- "title": "Impostazioni"
32
+ "sessionWithName": "Impostazioni della sessione · {{name}}"
36
33
  },
37
34
  "llm": {
38
35
  "checker": {
@@ -140,7 +140,6 @@
140
140
  "tab": {
141
141
  "chat": "チャット",
142
142
  "market": "探す",
143
- "me": "私",
144
143
  "setting": "設定"
145
144
  },
146
145
  "telemetry": {
@@ -157,18 +156,5 @@
157
156
  "action": "アップグレード",
158
157
  "hasNew": "利用可能な更新があります",
159
158
  "newVersion": "新しいバージョンが利用可能です:{{version}}"
160
- },
161
- "userPanel": {
162
- "billing": "請求管理",
163
- "discord": "コミュニティサポート",
164
- "docs": "ドキュメント",
165
- "email": "メールサポート",
166
- "feedback": "フィードバック",
167
- "help": "ヘルプセンター",
168
- "plans": "プラン",
169
- "profile": "アカウント管理",
170
- "setting": "アプリ設定",
171
- "usages": "利用状況",
172
- "warn": "このエントリは近日廃止予定です。今後は左上のアイコンからこのメニューを呼び出してください"
173
159
  }
174
160
  }
@@ -27,12 +27,9 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
- "desc": "設定優先順位和模型設置。",
31
30
  "global": "グローバル設定",
32
31
  "session": "セッション設定",
33
- "sessionDesc": "キャラクター設定とセッションの好み。",
34
- "sessionWithName": "セッション設定 · {{name}}",
35
- "title": "設定"
32
+ "sessionWithName": "セッション設定 · {{name}}"
36
33
  },
37
34
  "llm": {
38
35
  "checker": {
@@ -140,7 +140,6 @@
140
140
  "tab": {
141
141
  "chat": "채팅",
142
142
  "market": "발견",
143
- "me": "나",
144
143
  "setting": "설정"
145
144
  },
146
145
  "telemetry": {
@@ -157,18 +156,5 @@
157
156
  "action": "업그레이드",
158
157
  "hasNew": "사용 가능한 업데이트가 있습니다",
159
158
  "newVersion": "새 버전 사용 가능: {{version}}"
160
- },
161
- "userPanel": {
162
- "billing": "청구서 관리",
163
- "discord": "커뮤니티 지원",
164
- "docs": "사용 설명서",
165
- "email": "이메일 지원",
166
- "feedback": "피드백 및 제안",
167
- "help": "도움말 센터",
168
- "plans": "요금제",
169
- "profile": "계정 관리",
170
- "setting": "앱 설정",
171
- "usages": "사용량 통계",
172
- "warn": "이 항목은 곧 제거될 예정이며, 향후에는 왼쪽 상단의 프로필 아이콘을 클릭하여 이 메뉴를 열어주세요"
173
159
  }
174
160
  }
@@ -27,12 +27,9 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
- "desc": "설정 및 모델 설정.",
31
30
  "global": "전역 설정",
32
31
  "session": "세션 설정",
33
- "sessionDesc": "캐릭터 설정 세션 환경 설정.",
34
- "sessionWithName": "세션 설정 · {{name}}",
35
- "title": "설정"
32
+ "sessionWithName": "세션 설정 · {{name}}"
36
33
  },
37
34
  "llm": {
38
35
  "checker": {
@@ -140,7 +140,6 @@
140
140
  "tab": {
141
141
  "chat": "会话",
142
142
  "market": "发现",
143
- "me": "我",
144
143
  "setting": "设置"
145
144
  },
146
145
  "telemetry": {
@@ -157,18 +156,5 @@
157
156
  "action": "升级",
158
157
  "hasNew": "有可用更新",
159
158
  "newVersion": "有新版本可用:{{version}}"
160
- },
161
- "userPanel": {
162
- "billing": "账单管理",
163
- "discord": "社区支持",
164
- "docs": "使用文档",
165
- "email": "邮件支持",
166
- "feedback": "反馈与建议",
167
- "help": "帮助中心",
168
- "plans": "订阅方案",
169
- "profile": "账户管理",
170
- "setting": "应用设置",
171
- "usages": "用量统计",
172
- "warn": "此入口即将下线,后续请从左上角头像唤起本菜单"
173
159
  }
174
160
  }
@@ -27,12 +27,9 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
- "desc": "Voorkeuren en modelinstellingen.",
31
30
  "global": "Algemene instellingen",
32
31
  "session": "Sessie-instellingen",
33
- "sessionDesc": "Rolinstellingen en sessievoorkeuren.",
34
- "sessionWithName": "Sessie-instellingen · {{name}}",
35
- "title": "Instellingen"
32
+ "sessionWithName": "Sessie-instellingen · {{name}}"
36
33
  },
37
34
  "llm": {
38
35
  "checker": {
@@ -140,7 +140,6 @@
140
140
  "tab": {
141
141
  "chat": "Czat",
142
142
  "market": "Odkrywaj",
143
- "me": "我",
144
143
  "setting": "Ustawienia"
145
144
  },
146
145
  "telemetry": {
@@ -157,18 +156,5 @@
157
156
  "action": "Aktualizuj",
158
157
  "hasNew": "Dostępna jest nowa aktualizacja",
159
158
  "newVersion": "Dostępna jest nowa wersja: {{version}}"
160
- },
161
- "userPanel": {
162
- "billing": "Zarządzanie rachunkiem",
163
- "discord": "Wsparcie społeczności",
164
- "docs": "Dokumentacja",
165
- "email": "Wsparcie mailowe",
166
- "feedback": "Opinie i sugestie",
167
- "help": "Centrum pomocy",
168
- "plans": "Plan abonamentu",
169
- "profile": "Zarządzanie kontem",
170
- "setting": "Ustawienia aplikacji",
171
- "usages": "Statystyki użycia",
172
- "warn": "To wejście zostanie wkrótce usunięte, prosimy o skorzystanie z menu wywoływanego z lewego górnego rogu"
173
159
  }
174
160
  }
@@ -27,12 +27,9 @@
27
27
  }
28
28
  },
29
29
  "header": {
30
- "desc": "Preferencje i ustawienia modelu.",
31
30
  "global": "Ustawienia globalne",
32
31
  "session": "Ustawienia sesji",
33
- "sessionDesc": "Ustawienia postaci i preferencje sesji.",
34
- "sessionWithName": "Ustawienia sesji · {{name}}",
35
- "title": "Ustawienia"
32
+ "sessionWithName": "Ustawienia sesji · {{name}}"
36
33
  },
37
34
  "llm": {
38
35
  "checker": {
@@ -140,7 +140,6 @@
140
140
  "tab": {
141
141
  "chat": "Chat",
142
142
  "market": "Descobrir",
143
- "me": "eu",
144
143
  "setting": "Configuração"
145
144
  },
146
145
  "telemetry": {
@@ -157,18 +156,5 @@
157
156
  "action": "Atualizar",
158
157
  "hasNew": "Nova atualização disponível",
159
158
  "newVersion": "Nova versão disponível: {{version}}"
160
- },
161
- "userPanel": {
162
- "billing": "gerenciamento de faturas",
163
- "discord": "suporte da comunidade",
164
- "docs": "documentação",
165
- "email": "suporte por e-mail",
166
- "feedback": "feedback e sugestões",
167
- "help": "centro de ajuda",
168
- "plans": "planos de assinatura",
169
- "profile": "gerenciamento de conta",
170
- "setting": "configurações do aplicativo",
171
- "usages": "estatísticas de uso",
172
- "warn": "Este acesso será descontinuado em breve. Por favor, acesse este menu a partir do ícone do perfil no canto superior esquerdo."
173
159
  }
174
160
  }