vigthoria-cli 1.10.0 → 1.10.1
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/dist/utils/config.js
CHANGED
|
@@ -18,7 +18,7 @@ const defaultConfig = {
|
|
|
18
18
|
expiresAt: null,
|
|
19
19
|
},
|
|
20
20
|
preferences: {
|
|
21
|
-
defaultModel: '
|
|
21
|
+
defaultModel: 'agent',
|
|
22
22
|
theme: 'dark',
|
|
23
23
|
autoApplyFixes: false,
|
|
24
24
|
showDiffs: true,
|
|
@@ -185,12 +185,12 @@ export class Config {
|
|
|
185
185
|
// VIGTHORIA LOCAL - Self-hosted operational models
|
|
186
186
|
// ═══════════════════════════════════════════════════════════════
|
|
187
187
|
const models = [
|
|
188
|
-
{ id: 'agent', name: 'Vigthoria Agent
|
|
188
|
+
{ id: 'agent', name: 'Vigthoria V3 Code Agent', description: 'Blackwell autonomous agent workflow', tier: 'local', backendModel: 'vigthoria-v3-code-35b' },
|
|
189
189
|
{ id: 'code', name: 'Vigthoria v3 Code 35B', description: 'Native 35B coding model on Blackwell', tier: 'local', backendModel: 'vigthoria-v3-code-35b' },
|
|
190
190
|
{ id: 'code-35b', name: 'Vigthoria v3 Code 35B', description: 'Same flagship model as code', tier: 'local', backendModel: 'vigthoria-v3-code-35b' },
|
|
191
191
|
{ id: 'code-9b', name: 'Vigthoria v3 Code 9B', description: 'Efficient coding specialist for quick tasks', tier: 'local', backendModel: 'vigthoria-v3-code-9b' },
|
|
192
|
-
{ id: 'balanced', name: 'Vigthoria
|
|
193
|
-
{ id: 'balanced-4b', name: 'Vigthoria
|
|
192
|
+
{ id: 'balanced', name: 'Vigthoria Balanced 4B', description: 'Balanced general-purpose local model', tier: 'local', backendModel: 'vigthoria-v3-balanced-4b' },
|
|
193
|
+
{ id: 'balanced-4b', name: 'Vigthoria Balanced 4B', description: 'Efficient 4B general-purpose model (Qwen3.5-4B based)', tier: 'local', backendModel: 'vigthoria-v3-balanced-4b' },
|
|
194
194
|
];
|
|
195
195
|
// ═══════════════════════════════════════════════════════════════
|
|
196
196
|
// VIGTHORIA CLOUD - Premium cloud models (Pro subscription)
|
package/package.json
CHANGED
|
@@ -7,6 +7,8 @@ cd "$ROOT"
|
|
|
7
7
|
CLI="node dist/index.js"
|
|
8
8
|
unset V3_SERVICE_KEY
|
|
9
9
|
unset HYPERLOOP_SERVICE_KEY
|
|
10
|
+
# Release validation runs against local model-router in this environment
|
|
11
|
+
export VIGTHORIA_SELF_HOSTED_MODELS_API_URL="http://127.0.0.1:4009"
|
|
10
12
|
|
|
11
13
|
echo "[0.1-0.6] source/dist consistency"
|
|
12
14
|
node scripts/release/verify-runtime-consistency.mjs >/tmp/vig-verify-runtime.json
|
|
@@ -83,7 +85,7 @@ print('[pass] operator flow')
|
|
|
83
85
|
PY
|
|
84
86
|
|
|
85
87
|
echo "[7.1/7.3/7.4] local service health"
|
|
86
|
-
for u in http://localhost:8030/health http://localhost:
|
|
88
|
+
for u in http://localhost:8030/health http://localhost:4009/health http://localhost:4011/health; do
|
|
87
89
|
code=$(curl -s -o /dev/null -w "%{http_code}" "$u")
|
|
88
90
|
echo "$u => $code"
|
|
89
91
|
[[ "$code" == "200" ]]
|