@aexhq/sdk 1.0.2-canary → 1.0.3-canary
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/cli.mjs +5 -0
- package/dist/cli.mjs.sha256 +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +2 -2
package/dist/cli.mjs
CHANGED
|
@@ -6859,6 +6859,11 @@ async function resolveStartConfig(io2, args) {
|
|
|
6859
6859
|
if (!args.model) {
|
|
6860
6860
|
return { ok: false, error: startValidationMessage("--model", "is required when --config is not provided") };
|
|
6861
6861
|
}
|
|
6862
|
+
try {
|
|
6863
|
+
parseModelSlug(args.model, "--model");
|
|
6864
|
+
} catch (err2) {
|
|
6865
|
+
return { ok: false, error: startValidationMessage("--model", err2 instanceof Error ? err2.message : String(err2)) };
|
|
6866
|
+
}
|
|
6862
6867
|
model = args.model;
|
|
6863
6868
|
if (args.prompts.length === 0)
|
|
6864
6869
|
return { ok: false, error: startValidationMessage("--prompt", "is required (repeatable)") };
|
package/dist/cli.mjs.sha256
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
421b0b2b218564bbea270556e101a5debc6df6c845c3a7f68afa5050bd54f6fb cli.mjs
|
package/dist/version.d.ts
CHANGED
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aexhq/sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3-canary",
|
|
4
4
|
"description": "TypeScript SDK for autonomous agent sessions with managed Vercel AI Gateway model access.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -53,6 +53,6 @@
|
|
|
53
53
|
"ignore": "7.0.5"
|
|
54
54
|
},
|
|
55
55
|
"aexRelease": {
|
|
56
|
-
"sourceSha": "
|
|
56
|
+
"sourceSha": "bf8e948b1260501ebb830ced1d73c1eb4b69231c"
|
|
57
57
|
}
|
|
58
58
|
}
|