@vm0/runner 3.9.3 → 3.9.4
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/index.js +6 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -7743,7 +7743,8 @@ import { z as z17 } from "zod";
|
|
|
7743
7743
|
var c11 = initContract();
|
|
7744
7744
|
var modelProviderTypeSchema = z17.enum([
|
|
7745
7745
|
"claude-code-oauth-token",
|
|
7746
|
-
"anthropic-api-key"
|
|
7746
|
+
"anthropic-api-key",
|
|
7747
|
+
"moonshot-api-key"
|
|
7747
7748
|
]);
|
|
7748
7749
|
var modelProviderFrameworkSchema = z17.enum(["claude-code", "codex"]);
|
|
7749
7750
|
var modelProviderResponseSchema = z17.object({
|
|
@@ -7752,6 +7753,7 @@ var modelProviderResponseSchema = z17.object({
|
|
|
7752
7753
|
framework: modelProviderFrameworkSchema,
|
|
7753
7754
|
credentialName: z17.string(),
|
|
7754
7755
|
isDefault: z17.boolean(),
|
|
7756
|
+
selectedModel: z17.string().nullable(),
|
|
7755
7757
|
createdAt: z17.string(),
|
|
7756
7758
|
updatedAt: z17.string()
|
|
7757
7759
|
});
|
|
@@ -7761,7 +7763,8 @@ var modelProviderListResponseSchema = z17.object({
|
|
|
7761
7763
|
var upsertModelProviderRequestSchema = z17.object({
|
|
7762
7764
|
type: modelProviderTypeSchema,
|
|
7763
7765
|
credential: z17.string().min(1, "Credential is required"),
|
|
7764
|
-
convert: z17.boolean().optional()
|
|
7766
|
+
convert: z17.boolean().optional(),
|
|
7767
|
+
selectedModel: z17.string().optional()
|
|
7765
7768
|
});
|
|
7766
7769
|
var upsertModelProviderResponseSchema = z17.object({
|
|
7767
7770
|
provider: modelProviderResponseSchema,
|
|
@@ -11229,7 +11232,7 @@ var benchmarkCommand = new Command4("benchmark").description(
|
|
|
11229
11232
|
});
|
|
11230
11233
|
|
|
11231
11234
|
// src/index.ts
|
|
11232
|
-
var version = true ? "3.9.
|
|
11235
|
+
var version = true ? "3.9.4" : "0.1.0";
|
|
11233
11236
|
program.name("vm0-runner").version(version).description("Self-hosted runner for VM0 agents");
|
|
11234
11237
|
program.addCommand(startCommand);
|
|
11235
11238
|
program.addCommand(doctorCommand);
|