@rdmind/rdmind 0.2.5-alpha.0 → 0.2.5-alpha.2
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/cli.js +1059 -869
- package/locales/en.js +12 -0
- package/locales/zh.js +11 -0
- package/package.json +2 -2
package/locales/en.js
CHANGED
|
@@ -148,6 +148,8 @@ export default {
|
|
|
148
148
|
'open full RDMind documentation in your browser',
|
|
149
149
|
'Configuration not available.': 'Configuration not available.',
|
|
150
150
|
'change the auth method': 'change the auth method',
|
|
151
|
+
'Configure authentication information for login':
|
|
152
|
+
'Configure authentication information for login',
|
|
151
153
|
'Copy the last result or code snippet to clipboard':
|
|
152
154
|
'Copy the last result or code snippet to clipboard',
|
|
153
155
|
|
|
@@ -1426,8 +1428,18 @@ export default {
|
|
|
1426
1428
|
// ============================================================================
|
|
1427
1429
|
'Please enter your API key:': 'Please enter your API key:',
|
|
1428
1430
|
'API key cannot be empty.': 'API key cannot be empty.',
|
|
1431
|
+
'You can get your exclusive Coding Plan API-KEY here:':
|
|
1432
|
+
'You can get your exclusive Coding Plan API-KEY here:',
|
|
1429
1433
|
'API key is stored in settings.env. You can migrate it to a .env file for better security.':
|
|
1430
1434
|
'API key is stored in settings.env. You can migrate it to a .env file for better security.',
|
|
1435
|
+
'New model configurations are available for Bailian Coding Plan. Update now?':
|
|
1436
|
+
'New model configurations are available for Bailian Coding Plan. Update now?',
|
|
1437
|
+
'Coding Plan configuration updated successfully. New models are now available.':
|
|
1438
|
+
'Coding Plan configuration updated successfully. New models are now available.',
|
|
1439
|
+
'Coding Plan API key not found. Please re-authenticate with Coding Plan.':
|
|
1440
|
+
'Coding Plan API key not found. Please re-authenticate with Coding Plan.',
|
|
1441
|
+
'Failed to update Coding Plan configuration: {{message}}':
|
|
1442
|
+
'Failed to update Coding Plan configuration: {{message}}',
|
|
1431
1443
|
|
|
1432
1444
|
// ============================================================================
|
|
1433
1445
|
// Custom API-KEY Configuration
|
package/locales/zh.js
CHANGED
|
@@ -145,6 +145,7 @@ export default {
|
|
|
145
145
|
'在浏览器中打开完整的 RDMind 文档',
|
|
146
146
|
'Configuration not available.': '配置不可用',
|
|
147
147
|
'change the auth method': '更改认证方法',
|
|
148
|
+
'Configure authentication information for login': '配置登录认证信息',
|
|
148
149
|
'Copy the last result or code snippet to clipboard':
|
|
149
150
|
'将最后的结果或代码片段复制到剪贴板',
|
|
150
151
|
|
|
@@ -1310,8 +1311,18 @@ export default {
|
|
|
1310
1311
|
// ============================================================================
|
|
1311
1312
|
'Please enter your API key:': '请输入您的 API Key:',
|
|
1312
1313
|
'API key cannot be empty.': 'API Key 不能为空。',
|
|
1314
|
+
'You can get your exclusive Coding Plan API-KEY here:':
|
|
1315
|
+
'您可以在这里获取专属的 Coding Plan API-KEY:',
|
|
1313
1316
|
'API key is stored in settings.env. You can migrate it to a .env file for better security.':
|
|
1314
1317
|
'API Key 已存储在 settings.env 中。您可以将其迁移到 .env 文件以获得更好的安全性。',
|
|
1318
|
+
'New model configurations are available for Bailian Coding Plan. Update now?':
|
|
1319
|
+
'百炼 Coding Plan 有新模型配置可用。是否立即更新?',
|
|
1320
|
+
'Coding Plan configuration updated successfully. New models are now available.':
|
|
1321
|
+
'Coding Plan 配置更新成功。新模型现已可用。',
|
|
1322
|
+
'Coding Plan API key not found. Please re-authenticate with Coding Plan.':
|
|
1323
|
+
'未找到 Coding Plan API Key。请重新通过 Coding Plan 认证。',
|
|
1324
|
+
'Failed to update Coding Plan configuration: {{message}}':
|
|
1325
|
+
'更新 Coding Plan 配置失败:{{message}}',
|
|
1315
1326
|
|
|
1316
1327
|
// ============================================================================
|
|
1317
1328
|
// Custom API-KEY Configuration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rdmind/rdmind",
|
|
3
|
-
"version": "0.2.5-alpha.
|
|
3
|
+
"version": "0.2.5-alpha.2",
|
|
4
4
|
"description": "RDMind - AI-powered coding assistant",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "cli.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"locales"
|
|
20
20
|
],
|
|
21
21
|
"config": {
|
|
22
|
-
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.2.5-alpha.
|
|
22
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.2.5-alpha.2"
|
|
23
23
|
},
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"access": "public"
|