@protolabsai/proto 0.31.2 → 0.33.0
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/bundled/qc-helper/docs/configuration/settings.md +733 -0
- package/cli.js +5430 -2753
- package/locales/de.js +2 -0
- package/locales/en.js +2 -0
- package/locales/fr.js +2097 -0
- package/locales/ja.js +2 -0
- package/locales/pt.js +2 -0
- package/locales/ru.js +2 -0
- package/locales/zh.js +2 -0
- package/package.json +2 -2
package/locales/ja.js
CHANGED
|
@@ -315,6 +315,8 @@ export default {
|
|
|
315
315
|
'Vision Model Preview': 'ビジョンモデルプレビュー',
|
|
316
316
|
'Tool Schema Compliance': 'ツールスキーマ準拠',
|
|
317
317
|
'Auto (detect from system)': '自動(システムから検出)',
|
|
318
|
+
'Auto (detect terminal theme)': '自動(端末テーマを検出)',
|
|
319
|
+
Auto: '自動',
|
|
318
320
|
'check session stats. Usage: /stats [model|tools]':
|
|
319
321
|
'セッション統計を確認。使い方: /stats [model|tools]',
|
|
320
322
|
'Show model-specific usage statistics.': 'モデル別の使用統計を表示',
|
package/locales/pt.js
CHANGED
|
@@ -373,6 +373,8 @@ export default {
|
|
|
373
373
|
|
|
374
374
|
// Settings enum options
|
|
375
375
|
'Auto (detect from system)': 'Automático (detectar do sistema)',
|
|
376
|
+
'Auto (detect terminal theme)': 'Automático (detectar tema do terminal)',
|
|
377
|
+
Auto: 'Automático',
|
|
376
378
|
Text: 'Texto',
|
|
377
379
|
JSON: 'JSON',
|
|
378
380
|
Plan: 'Planejamento',
|
package/locales/ru.js
CHANGED
|
@@ -368,6 +368,8 @@ export default {
|
|
|
368
368
|
'Tool Schema Compliance': 'Соответствие схеме инструмента',
|
|
369
369
|
// Варианты перечислений настроек
|
|
370
370
|
'Auto (detect from system)': 'Авто (определить из системы)',
|
|
371
|
+
'Auto (detect terminal theme)': 'Авто (определить тему терминала)',
|
|
372
|
+
Auto: 'Авто',
|
|
371
373
|
Text: 'Текст',
|
|
372
374
|
JSON: 'JSON',
|
|
373
375
|
Plan: 'План',
|
package/locales/zh.js
CHANGED
|
@@ -412,6 +412,8 @@ export default {
|
|
|
412
412
|
'Tool Schema Compliance': '工具 Schema 兼容性',
|
|
413
413
|
// Settings enum options
|
|
414
414
|
'Auto (detect from system)': '自动(从系统检测)',
|
|
415
|
+
'Auto (detect terminal theme)': '自动(检测终端主题)',
|
|
416
|
+
Auto: '自动',
|
|
415
417
|
Text: '文本',
|
|
416
418
|
JSON: 'JSON',
|
|
417
419
|
Plan: '规划',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@protolabsai/proto",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.33.0",
|
|
4
4
|
"description": "proto - AI-powered coding agent",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"bundled"
|
|
22
22
|
],
|
|
23
23
|
"config": {
|
|
24
|
-
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.
|
|
24
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.33.0"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {},
|
|
27
27
|
"optionalDependencies": {
|