@vm0/runner 2.13.4 → 2.13.5

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.
Files changed (2) hide show
  1. package/index.js +3 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -5638,6 +5638,8 @@ var unifiedRunRequestSchema = z6.object({
5638
5638
  volumeVersions: z6.record(z6.string(), z6.string()).optional(),
5639
5639
  // Debug flag to force real Claude in mock environments (internal use only)
5640
5640
  debugNoMockClaude: z6.boolean().optional(),
5641
+ // Model provider for automatic LLM credential injection
5642
+ modelProvider: z6.string().optional(),
5641
5643
  // Required
5642
5644
  prompt: z6.string().min(1, "Missing prompt")
5643
5645
  });
@@ -10079,7 +10081,7 @@ var benchmarkCommand = new Command4("benchmark").description(
10079
10081
  });
10080
10082
 
10081
10083
  // src/index.ts
10082
- var version = true ? "2.13.4" : "0.1.0";
10084
+ var version = true ? "2.13.5" : "0.1.0";
10083
10085
  program.name("vm0-runner").version(version).description("Self-hosted runner for VM0 agents");
10084
10086
  program.addCommand(startCommand);
10085
10087
  program.addCommand(doctorCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/runner",
3
- "version": "2.13.4",
3
+ "version": "2.13.5",
4
4
  "description": "Self-hosted runner for VM0 agents",
5
5
  "repository": {
6
6
  "type": "git",