@lobehub/lobehub 2.0.0-next.322 → 2.0.0-next.324
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +80 -0
- package/apps/desktop/src/main/core/infrastructure/UpdaterManager.ts +9 -76
- package/apps/desktop/src/main/core/infrastructure/__tests__/UpdaterManager.test.ts +0 -1
- package/apps/desktop/src/main/modules/updater/configs.ts +0 -4
- package/changelog/v1.json +24 -0
- package/e2e/src/mocks/llm/index.ts +3 -3
- package/locales/ar/common.json +5 -0
- package/locales/ar/error.json +10 -1
- package/locales/bg-BG/common.json +5 -0
- package/locales/bg-BG/error.json +10 -1
- package/locales/de-DE/common.json +5 -0
- package/locales/de-DE/error.json +10 -1
- package/locales/en-US/common.json +5 -0
- package/locales/es-ES/common.json +5 -0
- package/locales/es-ES/error.json +10 -1
- package/locales/fa-IR/common.json +5 -0
- package/locales/fa-IR/error.json +10 -1
- package/locales/fr-FR/common.json +5 -0
- package/locales/fr-FR/error.json +10 -1
- package/locales/it-IT/common.json +5 -0
- package/locales/it-IT/error.json +10 -1
- package/locales/ja-JP/common.json +5 -0
- package/locales/ja-JP/error.json +10 -1
- package/locales/ko-KR/common.json +5 -0
- package/locales/ko-KR/error.json +10 -1
- package/locales/nl-NL/common.json +5 -0
- package/locales/nl-NL/error.json +10 -1
- package/locales/pl-PL/common.json +5 -0
- package/locales/pl-PL/error.json +10 -1
- package/locales/pt-BR/common.json +5 -0
- package/locales/pt-BR/error.json +10 -1
- package/locales/ru-RU/common.json +5 -0
- package/locales/ru-RU/error.json +10 -1
- package/locales/tr-TR/common.json +5 -0
- package/locales/tr-TR/error.json +10 -1
- package/locales/vi-VN/common.json +5 -0
- package/locales/vi-VN/error.json +10 -1
- package/locales/zh-CN/common.json +5 -0
- package/locales/zh-TW/common.json +5 -0
- package/locales/zh-TW/error.json +10 -1
- package/package.json +2 -2
- package/packages/business/const/src/branding.ts +1 -0
- package/packages/business/const/src/llm.ts +2 -1
- package/packages/const/src/settings/llm.ts +2 -1
- package/packages/const/src/settings/systemAgent.ts +12 -7
- package/packages/database/src/models/agent.ts +18 -1
- package/packages/database/src/models/chatGroup.ts +18 -1
- package/packages/database/src/types/chatGroup.ts +1 -0
- package/packages/model-bank/package.json +1 -1
- package/packages/model-bank/src/aiModels/index.ts +2 -2
- package/packages/model-bank/src/aiModels/lobehub/chat/anthropic.ts +256 -0
- package/packages/model-bank/src/aiModels/lobehub/chat/deepseek.ts +45 -0
- package/packages/model-bank/src/aiModels/lobehub/chat/google.ts +267 -0
- package/packages/model-bank/src/aiModels/lobehub/chat/index.ts +26 -0
- package/packages/model-bank/src/aiModels/lobehub/chat/minimax.ts +75 -0
- package/packages/model-bank/src/aiModels/lobehub/chat/moonshot.ts +28 -0
- package/packages/model-bank/src/aiModels/lobehub/chat/openai.ts +345 -0
- package/packages/model-bank/src/aiModels/lobehub/chat/xai.ts +32 -0
- package/packages/model-bank/src/aiModels/lobehub/image.ts +240 -0
- package/packages/model-bank/src/aiModels/lobehub/index.ts +10 -0
- package/packages/model-bank/src/aiModels/lobehub/utils.ts +58 -0
- package/packages/model-bank/src/modelProviders/index.ts +10 -10
- package/packages/model-runtime/src/core/streams/qwen.test.ts +320 -0
- package/packages/model-runtime/src/core/streams/qwen.ts +19 -10
- package/packages/types/package.json +1 -1
- package/packages/types/src/agentGroup/index.ts +2 -0
- package/packages/types/src/discover/assistants.ts +9 -0
- package/packages/types/src/discover/fork.ts +163 -0
- package/packages/types/src/discover/groupAgents.ts +13 -4
- package/packages/types/src/discover/index.ts +9 -0
- package/src/app/[variants]/(auth)/_layout/index.tsx +2 -1
- package/src/app/[variants]/(auth)/auth-error/page.tsx +5 -5
- package/src/app/[variants]/(desktop)/desktop-onboarding/components/LobeMessage.tsx +5 -0
- package/src/app/[variants]/(desktop)/desktop-onboarding/features/WelcomeStep.tsx +3 -1
- package/src/app/[variants]/(main)/agent/_layout/Sidebar/Topic/List/Item/index.tsx +1 -2
- package/src/app/[variants]/(main)/community/(detail)/agent/features/Header.tsx +37 -0
- package/src/app/[variants]/(main)/community/(detail)/agent/features/Sidebar/ActionButton/ForkAndChat.tsx +133 -0
- package/src/app/[variants]/(main)/community/(detail)/agent/features/Sidebar/ActionButton/index.tsx +2 -2
- package/src/app/[variants]/(main)/community/(detail)/group_agent/features/Details/index.tsx +7 -10
- package/src/app/[variants]/(main)/community/(detail)/group_agent/features/Sidebar/ActionButton/ForkGroupAndChat.tsx +208 -0
- package/src/app/[variants]/(main)/community/(detail)/group_agent/features/Sidebar/ActionButton/index.tsx +2 -2
- package/src/app/[variants]/(main)/community/(detail)/user/features/DetailProvider.tsx +2 -0
- package/src/app/[variants]/(main)/community/(detail)/user/features/UserContent.tsx +7 -0
- package/src/app/[variants]/(main)/community/(detail)/user/features/UserForkedAgentGroups.tsx +63 -0
- package/src/app/[variants]/(main)/community/(detail)/user/features/UserForkedAgents.tsx +61 -0
- package/src/app/[variants]/(main)/community/(detail)/user/index.tsx +3 -1
- package/src/app/[variants]/(main)/group/_layout/Sidebar/Topic/List/Item/index.tsx +1 -2
- package/src/app/[variants]/(main)/home/features/WelcomeText/index.tsx +3 -1
- package/src/app/[variants]/(main)/settings/profile/index.tsx +92 -68
- package/src/app/[variants]/(mobile)/chat/features/Topic/index.tsx +2 -1
- package/src/app/[variants]/onboarding/components/LobeMessage.tsx +5 -0
- package/src/app/[variants]/onboarding/features/TelemetryStep.tsx +3 -1
- package/src/features/CommandMenu/AskAgentCommands.tsx +105 -0
- package/src/features/CommandMenu/CommandMenuContext.tsx +57 -38
- package/src/features/CommandMenu/components/CommandInput.tsx +43 -9
- package/src/features/CommandMenu/index.tsx +89 -27
- package/src/features/CommandMenu/types.ts +6 -0
- package/src/features/CommandMenu/useCommandMenu.ts +62 -39
- package/src/locales/default/common.ts +5 -0
- package/src/locales/default/discover.ts +371 -0
- package/src/server/globalConfig/parseMemoryExtractionConfig.ts +7 -8
- package/src/server/routers/lambda/agent.ts +14 -0
- package/src/server/routers/lambda/agentGroup.ts +19 -3
- package/src/server/routers/lambda/market/agent.ts +234 -26
- package/src/server/routers/lambda/market/agentGroup.ts +204 -1
- package/src/server/services/discover/index.ts +52 -2
- package/src/services/agent.ts +8 -0
- package/src/services/chatGroup/index.ts +8 -0
- package/src/services/marketApi.ts +78 -0
- package/src/store/user/slices/settings/selectors/__snapshots__/settings.test.ts.snap +12 -12
- package/packages/model-bank/src/aiModels/lobehub.ts +0 -1315
|
@@ -150,383 +150,754 @@ export default {
|
|
|
150
150
|
'footer.desc':
|
|
151
151
|
'Evolve with AI users worldwide. Become a creator to submit your agents and skills to the LobeHub Community.',
|
|
152
152
|
'footer.title': 'Share your creation on LobeHub Community today',
|
|
153
|
+
|
|
154
|
+
'fork.alreadyForked': 'You have already forked this agent. Navigating to your fork...',
|
|
155
|
+
|
|
156
|
+
'fork.failed': 'Fork failed. Please try again.',
|
|
157
|
+
|
|
158
|
+
// Fork related
|
|
159
|
+
'fork.forkAndChat': 'Fork & Chat',
|
|
160
|
+
|
|
161
|
+
'fork.forkedFrom': 'Forked from',
|
|
162
|
+
|
|
163
|
+
'fork.forks': 'forks',
|
|
164
|
+
|
|
165
|
+
'fork.forksCount': '{{count}} fork',
|
|
166
|
+
|
|
167
|
+
'fork.forksCount_other': '{{count}} forks',
|
|
168
|
+
|
|
169
|
+
'fork.success': 'Forked successfully!',
|
|
170
|
+
|
|
171
|
+
'fork.viewAllForks': 'View all forks',
|
|
172
|
+
|
|
153
173
|
'home.communityAgents': 'Community Agents',
|
|
174
|
+
|
|
154
175
|
'home.featuredAssistants': 'Featured Agents',
|
|
176
|
+
|
|
155
177
|
'home.featuredModels': 'Featured Models',
|
|
178
|
+
|
|
156
179
|
'home.featuredPlugins': 'Featured Skills',
|
|
180
|
+
|
|
157
181
|
'home.featuredProviders': 'Featured Providers',
|
|
182
|
+
|
|
158
183
|
'home.featuredTools': 'Featured Skills',
|
|
184
|
+
|
|
159
185
|
'home.more': 'Discover More',
|
|
186
|
+
|
|
160
187
|
'isClaimed': 'Claimed',
|
|
188
|
+
|
|
161
189
|
'isFeatured': 'Featured',
|
|
190
|
+
|
|
162
191
|
'isOfficial': 'Officially Verified',
|
|
192
|
+
|
|
163
193
|
'like': 'Like',
|
|
194
|
+
|
|
164
195
|
'mcp.categories.all.description': 'All MCP Servers',
|
|
196
|
+
|
|
165
197
|
'mcp.categories.all.name': 'All',
|
|
198
|
+
|
|
166
199
|
'mcp.categories.business.description': 'Business and Enterprise Services',
|
|
200
|
+
|
|
167
201
|
'mcp.categories.business.name': 'Business Services',
|
|
202
|
+
|
|
168
203
|
'mcp.categories.developer.description': 'Developer-related Tools and Services',
|
|
204
|
+
|
|
169
205
|
'mcp.categories.developer.name': 'Developer Tools',
|
|
206
|
+
|
|
170
207
|
'mcp.categories.discover.description': 'Recommended and trending MCP servers',
|
|
208
|
+
|
|
171
209
|
'mcp.categories.discover.name': 'Discover',
|
|
210
|
+
|
|
172
211
|
'mcp.categories.gaming-entertainment.description': 'Games, Entertainment, and Leisure Activities',
|
|
212
|
+
|
|
173
213
|
'mcp.categories.gaming-entertainment.name': 'Gaming & Entertainment',
|
|
214
|
+
|
|
174
215
|
'mcp.categories.health-wellness.description': 'Health, Fitness, and Wellness',
|
|
216
|
+
|
|
175
217
|
'mcp.categories.health-wellness.name': 'Health & Wellness',
|
|
218
|
+
|
|
176
219
|
'mcp.categories.lifestyle.description': 'Personal Lifestyle, Habits, and Daily Activities',
|
|
220
|
+
|
|
177
221
|
'mcp.categories.lifestyle.name': 'Lifestyle',
|
|
222
|
+
|
|
178
223
|
'mcp.categories.media-generate.description': 'Media Generation, Editing, and Processing',
|
|
224
|
+
|
|
179
225
|
'mcp.categories.media-generate.name': 'Media Generation',
|
|
226
|
+
|
|
180
227
|
'mcp.categories.news.description': 'News Aggregation, Reporting, and Information Services',
|
|
228
|
+
|
|
181
229
|
'mcp.categories.news.name': 'News & Information',
|
|
230
|
+
|
|
182
231
|
'mcp.categories.productivity.description': 'Task Management, Notes, and Productivity Tools',
|
|
232
|
+
|
|
183
233
|
'mcp.categories.productivity.name': 'Productivity Tools',
|
|
234
|
+
|
|
184
235
|
'mcp.categories.science-education.description':
|
|
185
236
|
'Scientific Research, Learning, and Educational Tools',
|
|
237
|
+
|
|
186
238
|
'mcp.categories.science-education.name': 'Science & Education',
|
|
239
|
+
|
|
187
240
|
'mcp.categories.social.description': 'Social Networks and Communication',
|
|
241
|
+
|
|
188
242
|
'mcp.categories.social.name': 'Social Media',
|
|
243
|
+
|
|
189
244
|
'mcp.categories.stocks-finance.description': 'Financial Markets, Trading, and Investment',
|
|
245
|
+
|
|
190
246
|
'mcp.categories.stocks-finance.name': 'Stocks & Finance',
|
|
247
|
+
|
|
191
248
|
'mcp.categories.tools.description': 'General-purpose Practical Tools and Services',
|
|
249
|
+
|
|
192
250
|
'mcp.categories.tools.name': 'Utility Tools',
|
|
251
|
+
|
|
193
252
|
'mcp.categories.travel-transport.description': 'Travel Planning and Transportation',
|
|
253
|
+
|
|
194
254
|
'mcp.categories.travel-transport.name': 'Travel & Transport',
|
|
255
|
+
|
|
195
256
|
'mcp.categories.weather.description': 'Weather Forecasting and Meteorological Services',
|
|
257
|
+
|
|
196
258
|
'mcp.categories.weather.name': 'Weather',
|
|
259
|
+
|
|
197
260
|
'mcp.categories.web-search.description': 'Web Search and Information Retrieval',
|
|
261
|
+
|
|
198
262
|
'mcp.categories.web-search.name': 'Information Retrieval',
|
|
263
|
+
|
|
199
264
|
'mcp.details.connectionType.hybrid.desc':
|
|
200
265
|
'This service can run locally or in the cloud depending on configuration or usage scenario, offering dual operation capability.',
|
|
266
|
+
|
|
201
267
|
'mcp.details.connectionType.hybrid.title': 'Hybrid Service',
|
|
268
|
+
|
|
202
269
|
'mcp.details.connectionType.local.desc':
|
|
203
270
|
'This server can only run on the client’s local device, requiring installation and relying on local resources.',
|
|
271
|
+
|
|
204
272
|
'mcp.details.connectionType.local.title': 'Local Service',
|
|
273
|
+
|
|
205
274
|
'mcp.details.connectionType.remote.desc':
|
|
206
275
|
'This server is hosted remotely because it mainly depends on remote services and does not rely on the local environment.',
|
|
276
|
+
|
|
207
277
|
'mcp.details.connectionType.remote.title': 'Cloud Service',
|
|
278
|
+
|
|
208
279
|
'mcp.details.deployment.args': 'Arguments',
|
|
280
|
+
|
|
209
281
|
'mcp.details.deployment.checkCommand': 'Check Command',
|
|
282
|
+
|
|
210
283
|
'mcp.details.deployment.command': 'Command',
|
|
284
|
+
|
|
211
285
|
'mcp.details.deployment.commandLine': 'System Dependencies',
|
|
286
|
+
|
|
212
287
|
'mcp.details.deployment.connection': 'Connection Method',
|
|
288
|
+
|
|
213
289
|
'mcp.details.deployment.connectionType': 'Connection Type',
|
|
290
|
+
|
|
214
291
|
'mcp.details.deployment.description': 'Skill Installation and Deployment Method',
|
|
292
|
+
|
|
215
293
|
'mcp.details.deployment.descriptionPlaceholder': 'Optional Description',
|
|
294
|
+
|
|
216
295
|
'mcp.details.deployment.empty': 'No Deployment Options Available',
|
|
296
|
+
|
|
217
297
|
'mcp.details.deployment.env': 'Environment Variables',
|
|
298
|
+
|
|
218
299
|
'mcp.details.deployment.guide': 'Installation Guide',
|
|
300
|
+
|
|
219
301
|
'mcp.details.deployment.installation': 'Install via {{method}}',
|
|
302
|
+
|
|
220
303
|
'mcp.details.deployment.installationMethod': 'Installation Method',
|
|
304
|
+
|
|
221
305
|
'mcp.details.deployment.other': 'Other Settings',
|
|
306
|
+
|
|
222
307
|
'mcp.details.deployment.packageName': 'Package Name',
|
|
308
|
+
|
|
223
309
|
'mcp.details.deployment.platform.steps.claude':
|
|
224
310
|
'- Open the **Claude Desktop** app\n- Go to **Settings**, then select **Developer**\n- Click **Edit Configuration**\n- Open the **claude_desktop_config.json** file\n- Copy and paste the server configuration into the existing file, then save',
|
|
311
|
+
|
|
225
312
|
'mcp.details.deployment.platform.steps.cline':
|
|
226
313
|
'- Open VS Code with the Cline extension installed\n- Click the Cline icon in the sidebar\n- Select **MCP Servers** from the dropdown menu\n- In the **Remote Servers** tab, enter the server name and your MCP server URL\n- Click **Add Server** to connect',
|
|
314
|
+
|
|
227
315
|
'mcp.details.deployment.platform.steps.cursor':
|
|
228
316
|
'- Navigate to **Settings**, then select Cursor settings\n- Choose **MCP** on the left\n- Click **Add New Global MCP Server** at the top right\n- Copy and paste the server configuration into the existing file, then save',
|
|
317
|
+
|
|
229
318
|
'mcp.details.deployment.platform.steps.lobeChat':
|
|
230
319
|
'- Open the **LobeHub Desktop** app\n- Go to **Settings** - **Default Agent**\n- Then select **Skill Settings** - **Custom Skills**\n- Click **Quick Import JSON Configuration**\n- Copy and paste the server configuration into the text box, then install',
|
|
320
|
+
|
|
231
321
|
'mcp.details.deployment.platform.steps.openai':
|
|
232
322
|
'- Open your **OpenAI app** or development environment\n- Configure MCP tools in the **Responses API**\n- Add MCP blocks to the **tools** array in API requests\n- Set **server_url** to your MCP server endpoint\n- Include required authentication headers (API key, token, etc.)\n- Use the `allowed_tools` parameter to restrict exposed tools\n- Set `require_approval` to control tool execution approval',
|
|
323
|
+
|
|
233
324
|
'mcp.details.deployment.platform.steps.vscode':
|
|
234
325
|
'- Open VS Code\n- Open the command palette (`Ctrl+Shift+P` / `Cmd+Shift+P`)\n- Type **MCP: Add Server** and select it\n- Choose to add to workspace or user settings\n- Copy and paste the server configuration',
|
|
326
|
+
|
|
235
327
|
'mcp.details.deployment.platform.title': 'Install on {{platform}}',
|
|
328
|
+
|
|
236
329
|
'mcp.details.deployment.recommended': 'Recommended',
|
|
330
|
+
|
|
237
331
|
'mcp.details.deployment.systemDependencies': 'System Dependencies',
|
|
332
|
+
|
|
238
333
|
'mcp.details.deployment.table.description': 'Description',
|
|
334
|
+
|
|
239
335
|
'mcp.details.deployment.table.name': 'Name',
|
|
336
|
+
|
|
240
337
|
'mcp.details.deployment.table.required': 'Required',
|
|
338
|
+
|
|
241
339
|
'mcp.details.deployment.table.type': 'Type',
|
|
340
|
+
|
|
242
341
|
'mcp.details.deployment.title': 'Installation Method',
|
|
342
|
+
|
|
243
343
|
'mcp.details.githubBadge.desc':
|
|
244
344
|
'LobeHub regularly scans code repositories and documentation to: - Confirm MCP server operational status.\n- Extract server features such as tools, resources, prompts, and required parameters.\n- Our badge helps users quickly assess MCP server security, feature set, and installation instructions. Please copy the following code into your `README.md` file:',
|
|
345
|
+
|
|
245
346
|
'mcp.details.nav.needHelp': 'Need Help?',
|
|
347
|
+
|
|
246
348
|
'mcp.details.nav.reportIssue': 'Report Issue',
|
|
349
|
+
|
|
247
350
|
'mcp.details.nav.viewSourceCode': 'View Source Code',
|
|
351
|
+
|
|
248
352
|
'mcp.details.overview.title': 'Overview',
|
|
353
|
+
|
|
249
354
|
'mcp.details.related.listTitle': 'Related MCP Servers',
|
|
355
|
+
|
|
250
356
|
'mcp.details.related.more': 'View More',
|
|
357
|
+
|
|
251
358
|
'mcp.details.related.title': 'Related Recommendations',
|
|
359
|
+
|
|
252
360
|
'mcp.details.schema.mode.docs': 'Documentation',
|
|
361
|
+
|
|
253
362
|
'mcp.details.schema.prompts.arguments': 'Parameter Configuration',
|
|
363
|
+
|
|
254
364
|
'mcp.details.schema.prompts.desc': 'Interactive templates triggered by user selection',
|
|
365
|
+
|
|
255
366
|
'mcp.details.schema.prompts.empty': 'No Prompts Available',
|
|
367
|
+
|
|
256
368
|
'mcp.details.schema.prompts.instructions': 'Instruction Description',
|
|
369
|
+
|
|
257
370
|
'mcp.details.schema.prompts.table.description': 'Description',
|
|
371
|
+
|
|
258
372
|
'mcp.details.schema.prompts.table.name': 'Name',
|
|
373
|
+
|
|
259
374
|
'mcp.details.schema.prompts.table.required': 'Required',
|
|
375
|
+
|
|
260
376
|
'mcp.details.schema.prompts.title': 'Prompt List',
|
|
377
|
+
|
|
261
378
|
'mcp.details.schema.resources.desc': 'Context data attached and managed by the client',
|
|
379
|
+
|
|
262
380
|
'mcp.details.schema.resources.empty': 'No Resources Available',
|
|
381
|
+
|
|
263
382
|
'mcp.details.schema.resources.table.description': 'Description',
|
|
383
|
+
|
|
264
384
|
'mcp.details.schema.resources.table.mineType': 'MIME Type',
|
|
385
|
+
|
|
265
386
|
'mcp.details.schema.resources.table.name': 'Name',
|
|
387
|
+
|
|
266
388
|
'mcp.details.schema.resources.table.uri': 'URI',
|
|
389
|
+
|
|
267
390
|
'mcp.details.schema.resources.title': 'Resource List',
|
|
391
|
+
|
|
268
392
|
'mcp.details.schema.title': 'Skill Features',
|
|
393
|
+
|
|
269
394
|
'mcp.details.schema.tools.desc':
|
|
270
395
|
'Functional interfaces exposed to large language models (LLM) to perform operations',
|
|
396
|
+
|
|
271
397
|
'mcp.details.schema.tools.empty': 'No Tools Available',
|
|
398
|
+
|
|
272
399
|
'mcp.details.schema.tools.inputSchema': 'Input Description',
|
|
400
|
+
|
|
273
401
|
'mcp.details.schema.tools.instructions': 'Instruction Description',
|
|
402
|
+
|
|
274
403
|
'mcp.details.schema.tools.table.description': 'Description',
|
|
404
|
+
|
|
275
405
|
'mcp.details.schema.tools.table.name': 'Name',
|
|
406
|
+
|
|
276
407
|
'mcp.details.schema.tools.table.required': 'Required',
|
|
408
|
+
|
|
277
409
|
'mcp.details.schema.tools.table.type': 'Type',
|
|
410
|
+
|
|
278
411
|
'mcp.details.schema.tools.title': 'Tool List',
|
|
412
|
+
|
|
279
413
|
'mcp.details.score.claimed.desc':
|
|
280
414
|
'This MCP Server has been claimed by the owner, ensuring its ownership and management.',
|
|
415
|
+
|
|
281
416
|
'mcp.details.score.claimed.title': 'Claimed by Owner',
|
|
417
|
+
|
|
282
418
|
'mcp.details.score.deployMoreThanManual.desc':
|
|
283
419
|
'This MCP Server offers installation methods friendlier than Manual, allowing users to deploy and use it easily.',
|
|
420
|
+
|
|
284
421
|
'mcp.details.score.deployMoreThanManual.title': 'Offers Friendly Installation Methods',
|
|
422
|
+
|
|
285
423
|
'mcp.details.score.deployment.desc':
|
|
286
424
|
'This MCP Server provides at least one installation method, allowing users to deploy and use it.',
|
|
425
|
+
|
|
287
426
|
'mcp.details.score.deployment.descWithCount':
|
|
288
427
|
'This MCP Server provides {{number}} installation methods, allowing users to deploy and use it.',
|
|
428
|
+
|
|
289
429
|
'mcp.details.score.deployment.title': 'Provides At Least One Installation Method',
|
|
430
|
+
|
|
290
431
|
'mcp.details.score.license.desc': 'This repository contains a LICENSE file.',
|
|
432
|
+
|
|
291
433
|
'mcp.details.score.license.descWithlicense': 'This repository is licensed under {{license}}.',
|
|
434
|
+
|
|
292
435
|
'mcp.details.score.license.title': 'Has LICENSE',
|
|
436
|
+
|
|
293
437
|
'mcp.details.score.listTitle': 'Score Details',
|
|
438
|
+
|
|
294
439
|
'mcp.details.score.notClaimed.desc':
|
|
295
440
|
'If you are the owner of this MCP Server, you can claim it by the following methods.',
|
|
441
|
+
|
|
296
442
|
'mcp.details.score.notClaimed.title': 'Not Claimed by Owner',
|
|
443
|
+
|
|
297
444
|
'mcp.details.score.prompts.desc':
|
|
298
445
|
'This MCP Server provides prompts, allowing users to interact with the service.',
|
|
446
|
+
|
|
299
447
|
'mcp.details.score.prompts.descWithCount':
|
|
300
448
|
'This MCP Server provides {{number}} prompts, allowing users to interact with the service.',
|
|
449
|
+
|
|
301
450
|
'mcp.details.score.prompts.title': 'Includes Prompts',
|
|
451
|
+
|
|
302
452
|
'mcp.details.score.readme.desc': 'This repository contains a README.md file.',
|
|
453
|
+
|
|
303
454
|
'mcp.details.score.readme.title': 'Has README',
|
|
455
|
+
|
|
304
456
|
'mcp.details.score.resources.desc':
|
|
305
457
|
'This MCP Server provides resources, allowing users to attach and manage context data.',
|
|
458
|
+
|
|
306
459
|
'mcp.details.score.resources.descWithCount':
|
|
307
460
|
'This MCP Server provides {{number}} resources, allowing users to attach and manage context data.',
|
|
461
|
+
|
|
308
462
|
'mcp.details.score.resources.title': 'Includes Resources',
|
|
463
|
+
|
|
309
464
|
'mcp.details.score.title': 'Score',
|
|
465
|
+
|
|
310
466
|
'mcp.details.score.tools.desc':
|
|
311
467
|
'The service must provide at least one tool, allowing users to perform specific operations.',
|
|
468
|
+
|
|
312
469
|
'mcp.details.score.tools.descWithCount':
|
|
313
470
|
'This MCP Server provides {{number}} tool features, allowing users to perform specific operations.',
|
|
471
|
+
|
|
314
472
|
'mcp.details.score.tools.title': 'Includes At Least One Tool',
|
|
473
|
+
|
|
315
474
|
'mcp.details.score.validated.desc':
|
|
316
475
|
'This MCP Server has passed installation validation, ensuring its quality and reliability.',
|
|
476
|
+
|
|
317
477
|
'mcp.details.score.validated.title': 'Validated',
|
|
478
|
+
|
|
318
479
|
'mcp.details.scoreLevel.a.desc':
|
|
319
480
|
'This MCP Server has been rigorously validated, providing comprehensive features and a high-quality user experience.',
|
|
481
|
+
|
|
320
482
|
'mcp.details.scoreLevel.a.fullTitle': 'Excellent Skill',
|
|
483
|
+
|
|
321
484
|
'mcp.details.scoreLevel.a.title': 'Premium',
|
|
485
|
+
|
|
322
486
|
'mcp.details.scoreLevel.b.desc':
|
|
323
487
|
'This MCP Server offers good features and user experience but may need improvements in some areas.',
|
|
488
|
+
|
|
324
489
|
'mcp.details.scoreLevel.b.fullTitle': 'Good Functionality',
|
|
490
|
+
|
|
325
491
|
'mcp.details.scoreLevel.b.title': 'Good',
|
|
492
|
+
|
|
326
493
|
'mcp.details.scoreLevel.f.desc':
|
|
327
494
|
'This MCP Server is incomplete or of low quality; users are advised to use it cautiously.',
|
|
495
|
+
|
|
328
496
|
'mcp.details.scoreLevel.f.fullTitle': 'Poor Quality',
|
|
497
|
+
|
|
329
498
|
'mcp.details.scoreLevel.f.title': 'Poor',
|
|
499
|
+
|
|
330
500
|
'mcp.details.settings.capabilities.prompts': 'Prompts',
|
|
501
|
+
|
|
331
502
|
'mcp.details.settings.capabilities.resources': 'Resources',
|
|
503
|
+
|
|
332
504
|
'mcp.details.settings.capabilities.title': 'Skill Capabilities',
|
|
505
|
+
|
|
333
506
|
'mcp.details.settings.capabilities.tools': 'Tools',
|
|
507
|
+
|
|
334
508
|
'mcp.details.settings.configuration.title': 'Skill Configuration',
|
|
509
|
+
|
|
335
510
|
'mcp.details.settings.connection.args': 'Startup Arguments',
|
|
511
|
+
|
|
336
512
|
'mcp.details.settings.connection.command': 'Startup Command',
|
|
513
|
+
|
|
337
514
|
'mcp.details.settings.connection.title': 'Connection Information',
|
|
515
|
+
|
|
338
516
|
'mcp.details.settings.connection.type': 'Connection Type',
|
|
517
|
+
|
|
339
518
|
'mcp.details.settings.connection.url': 'Service URL',
|
|
519
|
+
|
|
340
520
|
'mcp.details.settings.saveSettings': 'Save Settings',
|
|
521
|
+
|
|
341
522
|
'mcp.details.settings.title': 'Skill Settings',
|
|
523
|
+
|
|
342
524
|
'mcp.details.sidebar.install': 'Install MCP Server',
|
|
525
|
+
|
|
343
526
|
'mcp.details.sidebar.meta.homepage': 'Official Homepage',
|
|
527
|
+
|
|
344
528
|
'mcp.details.sidebar.meta.installCount': 'Install Count',
|
|
529
|
+
|
|
345
530
|
'mcp.details.sidebar.meta.language': 'Source Language',
|
|
531
|
+
|
|
346
532
|
'mcp.details.sidebar.meta.license': 'License',
|
|
533
|
+
|
|
347
534
|
'mcp.details.sidebar.meta.published': 'Published Date',
|
|
535
|
+
|
|
348
536
|
'mcp.details.sidebar.meta.repo': 'Source Repository',
|
|
537
|
+
|
|
349
538
|
'mcp.details.sidebar.meta.stars': 'Stars',
|
|
539
|
+
|
|
350
540
|
'mcp.details.sidebar.meta.title': 'Details',
|
|
541
|
+
|
|
351
542
|
'mcp.details.sidebar.meta.updated': 'Last Updated',
|
|
543
|
+
|
|
352
544
|
'mcp.details.sidebar.moreServerConfig': 'View Details',
|
|
545
|
+
|
|
353
546
|
'mcp.details.sidebar.recommendServers': 'Related MCP',
|
|
547
|
+
|
|
354
548
|
'mcp.details.sidebar.serverConfig': 'Installation Configuration',
|
|
549
|
+
|
|
355
550
|
'mcp.details.sidebar.toc': 'Table of Contents',
|
|
551
|
+
|
|
356
552
|
'mcp.details.summary.title': 'What can you do with this MCP Server?',
|
|
553
|
+
|
|
357
554
|
'mcp.details.totalScore.description': 'Total score calculated based on various indicators',
|
|
555
|
+
|
|
358
556
|
'mcp.details.totalScore.legend.aGrade': 'Grade A ({{minPercent}}-100%)',
|
|
557
|
+
|
|
359
558
|
'mcp.details.totalScore.legend.bGrade': 'Grade B ({{minPercent}}-{{maxPercent}}%)',
|
|
559
|
+
|
|
360
560
|
'mcp.details.totalScore.legend.fGrade': 'Grade F (0-{{maxPercent}}%)',
|
|
561
|
+
|
|
361
562
|
'mcp.details.totalScore.pointsFormat': '{{score}}/{{total}} points',
|
|
563
|
+
|
|
362
564
|
'mcp.details.totalScore.popover.completedOptional': '✅ Completed Optional Items ({{count}})',
|
|
565
|
+
|
|
363
566
|
'mcp.details.totalScore.popover.completedRequired': '✅ Completed Required Items ({{count}})',
|
|
567
|
+
|
|
364
568
|
'mcp.details.totalScore.popover.incompleteOptional': '⏸️ Incomplete Optional Items ({{count}})',
|
|
569
|
+
|
|
365
570
|
'mcp.details.totalScore.popover.incompleteRequired': '❌ Incomplete Required Items ({{count}})',
|
|
571
|
+
|
|
366
572
|
'mcp.details.totalScore.popover.title': 'Score Details',
|
|
573
|
+
|
|
367
574
|
'mcp.details.totalScore.ratingFormat': 'Rating: {{level}}',
|
|
575
|
+
|
|
368
576
|
'mcp.details.totalScore.scoreInfo.items': 'Items',
|
|
577
|
+
|
|
369
578
|
'mcp.details.totalScore.scoreInfo.points': 'Points',
|
|
579
|
+
|
|
370
580
|
'mcp.details.totalScore.scoreInfo.requiredItems': 'Required Items',
|
|
581
|
+
|
|
371
582
|
'mcp.details.totalScore.title': 'Total Score',
|
|
583
|
+
|
|
372
584
|
'mcp.details.versions.table.isLatest': 'Latest Version',
|
|
585
|
+
|
|
373
586
|
'mcp.details.versions.table.isValidated': 'Validated',
|
|
587
|
+
|
|
374
588
|
'mcp.details.versions.table.publishAt': 'Published Date',
|
|
589
|
+
|
|
375
590
|
'mcp.details.versions.table.version': 'Version',
|
|
591
|
+
|
|
376
592
|
'mcp.details.versions.title': 'Version History',
|
|
593
|
+
|
|
377
594
|
'mcp.hero.desc':
|
|
378
595
|
'An open-source, deployable MCP Server community—helping AI systems access file systems, databases, APIs, and other key resources.',
|
|
596
|
+
|
|
379
597
|
'mcp.hero.subTitle': 'Open-source, ready to run',
|
|
598
|
+
|
|
380
599
|
'mcp.hero.title': 'Open-source MCP Community for AI',
|
|
600
|
+
|
|
381
601
|
'mcp.sorts.createdAt': 'Recently Added',
|
|
602
|
+
|
|
382
603
|
'mcp.sorts.installCount': 'Install Count',
|
|
604
|
+
|
|
383
605
|
'mcp.sorts.isFeatured': 'Featured Skills',
|
|
606
|
+
|
|
384
607
|
'mcp.sorts.isValidated': 'Validated Skills',
|
|
608
|
+
|
|
385
609
|
'mcp.sorts.promptsCount': 'Number of Prompts',
|
|
610
|
+
|
|
386
611
|
'mcp.sorts.ratingCount': 'Number of Ratings',
|
|
612
|
+
|
|
387
613
|
'mcp.sorts.recommended': 'Recommended',
|
|
614
|
+
|
|
388
615
|
'mcp.sorts.resourcesCount': 'Number of Resources',
|
|
616
|
+
|
|
389
617
|
'mcp.sorts.toolsCount': 'Number of Tools',
|
|
618
|
+
|
|
390
619
|
'mcp.sorts.updatedAt': 'Recently Updated',
|
|
620
|
+
|
|
391
621
|
'mcp.title': 'MCP Community',
|
|
622
|
+
|
|
392
623
|
'mcp.unvalidated.desc': 'This MCP Server has not been validated yet',
|
|
624
|
+
|
|
393
625
|
'mcp.unvalidated.title': 'Unvalidated',
|
|
626
|
+
|
|
394
627
|
'mcp.validated.desc': 'This MCP Server has been validated to ensure its quality and reliability.',
|
|
628
|
+
|
|
395
629
|
'mcp.validated.descWithDate':
|
|
396
630
|
'This MCP Server was validated on {{date}} to ensure its quality and reliability.',
|
|
631
|
+
|
|
397
632
|
'mcp.validated.title': 'Validated',
|
|
633
|
+
|
|
398
634
|
'mcpEmpty.description': 'Try adjusting filters or searching with different keywords.',
|
|
635
|
+
|
|
399
636
|
'mcpEmpty.search': 'No matching MCP Servers found',
|
|
637
|
+
|
|
400
638
|
'mcpEmpty.title': 'No MCP Servers found',
|
|
639
|
+
|
|
401
640
|
'models.abilities': 'Model Capabilities',
|
|
641
|
+
|
|
402
642
|
'models.chat': 'Start Conversation',
|
|
643
|
+
|
|
403
644
|
'models.contentLength': 'Maximum Context Length',
|
|
645
|
+
|
|
404
646
|
'models.details.overview.title': 'Overview',
|
|
647
|
+
|
|
405
648
|
'models.details.related.listTitle': 'Related Models',
|
|
649
|
+
|
|
406
650
|
'models.details.related.more': 'View More',
|
|
651
|
+
|
|
407
652
|
'models.details.related.title': 'Related Recommendations',
|
|
653
|
+
|
|
408
654
|
'models.empty.description': 'Try adjusting the filters to see more models',
|
|
655
|
+
|
|
409
656
|
'models.empty.search': 'No matching models found',
|
|
657
|
+
|
|
410
658
|
'models.empty.title': 'No models available',
|
|
659
|
+
|
|
411
660
|
'models.free': 'Free',
|
|
661
|
+
|
|
412
662
|
'models.guide': 'Configuration Guide',
|
|
663
|
+
|
|
413
664
|
'models.list': 'Model List',
|
|
665
|
+
|
|
414
666
|
'models.more': 'More',
|
|
667
|
+
|
|
415
668
|
'models.parameterList.defaultValue': 'Default Value',
|
|
669
|
+
|
|
416
670
|
'models.parameterList.docs': 'View Documentation',
|
|
671
|
+
|
|
417
672
|
'models.parameterList.frequency_penalty.desc':
|
|
418
673
|
'This setting adjusts the frequency at which the model reuses specific vocabulary that has already appeared in the input. Higher values reduce the likelihood of such repetition, while negative values have the opposite effect. Vocabulary penalties do not increase with frequency of occurrence. Negative values encourage vocabulary reuse.',
|
|
674
|
+
|
|
419
675
|
'models.parameterList.frequency_penalty.title': 'Frequency Penalty',
|
|
676
|
+
|
|
420
677
|
'models.parameterList.max_tokens.desc':
|
|
421
678
|
'This setting defines the maximum length that the model can generate in a single response. Setting a higher value allows the model to produce longer replies, while a lower value restricts the length of the response, making it more concise. Adjusting this value appropriately based on different application scenarios can help achieve the desired response length and level of detail.',
|
|
679
|
+
|
|
422
680
|
'models.parameterList.max_tokens.title': 'Single Response Limit',
|
|
681
|
+
|
|
423
682
|
'models.parameterList.presence_penalty.desc':
|
|
424
683
|
'This setting aims to control the reuse of vocabulary based on its frequency in the input. It attempts to use less of those words that appear more frequently in the input, with usage frequency proportional to occurrence frequency. Vocabulary penalties increase with frequency of occurrence. Negative values encourage vocabulary reuse.',
|
|
684
|
+
|
|
425
685
|
'models.parameterList.presence_penalty.title': 'Topic Freshness',
|
|
686
|
+
|
|
426
687
|
'models.parameterList.range': 'Range',
|
|
688
|
+
|
|
427
689
|
'models.parameterList.reasoning_effort.desc':
|
|
428
690
|
'This setting controls the intensity of reasoning the model applies before generating a response. Low intensity prioritizes response speed and saves tokens, while high intensity provides more comprehensive reasoning but consumes more tokens and slows down response time. The default value is medium, balancing reasoning accuracy with response speed.',
|
|
691
|
+
|
|
429
692
|
'models.parameterList.reasoning_effort.title': 'Reasoning Intensity',
|
|
693
|
+
|
|
430
694
|
'models.parameterList.temperature.desc':
|
|
431
695
|
"This setting affects the diversity of the model's responses. Lower values lead to more predictable and typical responses, while higher values encourage more diverse and less common responses. When set to 0, the model always gives the same response to a given input.",
|
|
696
|
+
|
|
432
697
|
'models.parameterList.temperature.title': 'Randomness',
|
|
698
|
+
|
|
433
699
|
'models.parameterList.title': 'Model Parameters',
|
|
700
|
+
|
|
434
701
|
'models.parameterList.top_p.desc':
|
|
435
702
|
"This setting limits the model's selection to a certain proportion of the most likely vocabulary: only selecting those top words whose cumulative probability reaches P. Lower values make the model's responses more predictable, while the default setting allows the model to choose from the entire range of vocabulary.",
|
|
703
|
+
|
|
436
704
|
'models.parameterList.top_p.title': 'Nucleus Sampling',
|
|
705
|
+
|
|
437
706
|
'models.parameterList.type': 'Type',
|
|
707
|
+
|
|
438
708
|
'models.providerInfo.apiTooltip': 'LobeHub supports using a custom API key for this provider.',
|
|
709
|
+
|
|
439
710
|
'models.providerInfo.input': 'Input Price',
|
|
711
|
+
|
|
440
712
|
'models.providerInfo.inputTooltip': 'Cost per million tokens',
|
|
713
|
+
|
|
441
714
|
'models.providerInfo.latency': 'Latency',
|
|
715
|
+
|
|
442
716
|
'models.providerInfo.latencyTooltip':
|
|
443
717
|
'Average response time for the provider to send the first token',
|
|
718
|
+
|
|
444
719
|
'models.providerInfo.maxOutput': 'Maximum Output Length',
|
|
720
|
+
|
|
445
721
|
'models.providerInfo.maxOutputTooltip': 'Maximum number of tokens this endpoint can generate',
|
|
722
|
+
|
|
446
723
|
'models.providerInfo.officialTooltip': 'LobeHub Official Service',
|
|
724
|
+
|
|
447
725
|
'models.providerInfo.output': 'Output Price',
|
|
726
|
+
|
|
448
727
|
'models.providerInfo.outputTooltip': 'Cost per million tokens',
|
|
728
|
+
|
|
449
729
|
'models.providerInfo.streamCancellationTooltip': 'This provider supports stream cancellation.',
|
|
730
|
+
|
|
450
731
|
'models.providerInfo.throughput': 'Throughput',
|
|
732
|
+
|
|
451
733
|
'models.providerInfo.throughputTooltip':
|
|
452
734
|
'Average number of tokens transmitted per second for stream requests',
|
|
735
|
+
|
|
453
736
|
'models.sorts.contextWindowTokens': 'Context Length',
|
|
737
|
+
|
|
454
738
|
'models.sorts.identifier': 'Model ID',
|
|
739
|
+
|
|
455
740
|
'models.sorts.inputPrice': 'Input Price',
|
|
741
|
+
|
|
456
742
|
'models.sorts.outputPrice': 'Output Price',
|
|
743
|
+
|
|
457
744
|
'models.sorts.providerCount': 'Number of Providers',
|
|
745
|
+
|
|
458
746
|
'models.sorts.releasedAt': 'Recently Released',
|
|
747
|
+
|
|
459
748
|
'models.suggestions': 'Related Models',
|
|
749
|
+
|
|
460
750
|
'models.supportedProviders': 'Providers Supporting This Model',
|
|
751
|
+
|
|
461
752
|
'plugins.builtinTag': 'Built-in',
|
|
753
|
+
|
|
462
754
|
'plugins.community': 'Community Skills',
|
|
755
|
+
|
|
463
756
|
'plugins.details.settings.title': 'Skill Settings',
|
|
757
|
+
|
|
464
758
|
'plugins.details.summary.title': 'What can you do with this skill?',
|
|
759
|
+
|
|
465
760
|
'plugins.details.tools.title': 'Skill Tools',
|
|
761
|
+
|
|
466
762
|
'plugins.install': 'Install Skill',
|
|
763
|
+
|
|
467
764
|
'plugins.installed': 'Installed',
|
|
765
|
+
|
|
468
766
|
'plugins.legacyTag': 'Legacy',
|
|
767
|
+
|
|
469
768
|
'plugins.list': 'Skill List',
|
|
769
|
+
|
|
470
770
|
'plugins.meta.description': 'Description',
|
|
771
|
+
|
|
471
772
|
'plugins.meta.parameter': 'Parameter',
|
|
773
|
+
|
|
472
774
|
'plugins.meta.title': 'Tool Parameters',
|
|
775
|
+
|
|
473
776
|
'plugins.meta.type': 'Type',
|
|
777
|
+
|
|
474
778
|
'plugins.more': 'More',
|
|
779
|
+
|
|
475
780
|
'plugins.official': 'Official Skills',
|
|
781
|
+
|
|
476
782
|
'plugins.recentSubmits': 'Recently Updated',
|
|
783
|
+
|
|
477
784
|
'plugins.sorts.createdAt': 'Recently Published',
|
|
785
|
+
|
|
478
786
|
'plugins.sorts.identifier': 'Skill ID',
|
|
787
|
+
|
|
479
788
|
'plugins.sorts.title': 'Skill Name',
|
|
789
|
+
|
|
480
790
|
'plugins.suggestions': 'Related Recommendations',
|
|
791
|
+
|
|
481
792
|
'providers.config': 'Configure Provider',
|
|
793
|
+
|
|
482
794
|
'providers.details.guide.title': 'Integration guide',
|
|
795
|
+
|
|
483
796
|
'providers.details.overview.title': 'Overview',
|
|
797
|
+
|
|
484
798
|
'providers.details.related.listTitle': 'Related Providers',
|
|
799
|
+
|
|
485
800
|
'providers.details.related.more': 'View More',
|
|
801
|
+
|
|
486
802
|
'providers.details.related.title': 'Related Recommendations',
|
|
803
|
+
|
|
487
804
|
'providers.empty.description': 'Try adjusting filters to see more Providers.',
|
|
805
|
+
|
|
488
806
|
'providers.empty.search': 'No matching Providers found',
|
|
807
|
+
|
|
489
808
|
'providers.empty.title': 'No Providers found',
|
|
809
|
+
|
|
490
810
|
'providers.list': 'Provider list',
|
|
811
|
+
|
|
491
812
|
'providers.modelCount': '{{count}} models',
|
|
813
|
+
|
|
492
814
|
'providers.modelName': 'Model Name',
|
|
815
|
+
|
|
493
816
|
'providers.modelSite': 'Model Documentation',
|
|
817
|
+
|
|
494
818
|
'providers.more': 'More',
|
|
819
|
+
|
|
495
820
|
'providers.officialSite': 'Official Website',
|
|
821
|
+
|
|
496
822
|
'providers.showAllModels': 'Show All Models',
|
|
823
|
+
|
|
497
824
|
'providers.sorts.default': 'Default',
|
|
825
|
+
|
|
498
826
|
'providers.sorts.identifier': 'Provider ID',
|
|
827
|
+
|
|
499
828
|
'providers.sorts.modelCount': 'Number of Models',
|
|
829
|
+
|
|
500
830
|
'providers.suggestions': 'Related Providers',
|
|
831
|
+
|
|
501
832
|
'providers.supportedModels': 'Supported Models',
|
|
833
|
+
|
|
502
834
|
'publishedTime': 'Published',
|
|
835
|
+
|
|
503
836
|
'search.placeholder': 'Search by name, description, or keywords...',
|
|
837
|
+
|
|
504
838
|
'search.result': '{{count}} results about <highlight>{{keyword}}</highlight>',
|
|
839
|
+
|
|
505
840
|
'search.searching': 'Searching...',
|
|
841
|
+
|
|
506
842
|
'tab.assistant': 'Agent',
|
|
843
|
+
|
|
507
844
|
'tab.home': 'Home',
|
|
845
|
+
|
|
508
846
|
'tab.model': 'Model',
|
|
847
|
+
|
|
509
848
|
'tab.plugin': 'Skill',
|
|
849
|
+
|
|
510
850
|
'tab.provider': 'Provider',
|
|
851
|
+
|
|
511
852
|
'tab.user': 'User',
|
|
853
|
+
|
|
512
854
|
'user.agents': 'Agents',
|
|
855
|
+
|
|
513
856
|
'user.downloads': 'Downloads',
|
|
857
|
+
|
|
514
858
|
'user.editProfile': 'Edit Profile',
|
|
859
|
+
|
|
515
860
|
'user.favoriteAgents': 'Saved Agents',
|
|
861
|
+
|
|
516
862
|
'user.favoritePlugins': 'Saved Skills',
|
|
863
|
+
|
|
517
864
|
'user.follow': 'Follow',
|
|
865
|
+
|
|
518
866
|
'user.followers': 'Followers',
|
|
867
|
+
|
|
519
868
|
'user.following': 'Following',
|
|
869
|
+
|
|
870
|
+
'user.forkedAgentGroups': 'Forked Agent Groups',
|
|
871
|
+
|
|
872
|
+
// User fork lists
|
|
873
|
+
'user.forkedAgents': 'Forked Agents',
|
|
874
|
+
|
|
520
875
|
'user.login': 'Become a Creator',
|
|
876
|
+
|
|
521
877
|
'user.logout': 'Logout',
|
|
878
|
+
|
|
522
879
|
'user.myProfile': 'My Profile',
|
|
880
|
+
|
|
523
881
|
'user.noAgents': 'This user hasn’t published any Agents yet',
|
|
882
|
+
|
|
524
883
|
'user.noFavoriteAgents': 'No saved Agents yet',
|
|
884
|
+
|
|
525
885
|
'user.noFavoritePlugins': 'No saved Skills yet',
|
|
886
|
+
|
|
887
|
+
'user.noForkedAgentGroups': 'No forked Agent Groups yet',
|
|
888
|
+
|
|
889
|
+
'user.noForkedAgents': 'No forked Agents yet',
|
|
890
|
+
|
|
526
891
|
'user.publishedAgents': 'Created Agents',
|
|
892
|
+
|
|
527
893
|
'user.tabs.favorites': 'Favorites',
|
|
894
|
+
|
|
895
|
+
'user.tabs.forkedAgents': 'Forked',
|
|
896
|
+
|
|
528
897
|
'user.tabs.publishedAgents': 'Created',
|
|
898
|
+
|
|
529
899
|
'user.unfavorite': 'Unsave',
|
|
900
|
+
|
|
530
901
|
'user.unfavoriteFailed': 'Failed to unsave',
|
|
531
902
|
'user.unfavoriteSuccess': 'Unsaved',
|
|
532
903
|
'user.unfollow': 'Unfollow',
|