@cruxy/cli 1.1.0 → 1.2.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/dist/config/schema.js +2 -2
- package/package.json +2 -2
package/dist/config/schema.js
CHANGED
|
@@ -6,8 +6,8 @@ export const ProviderSchema = z.enum(["cruxy", "openai", "custom"]);
|
|
|
6
6
|
export const ModelConfigSchema = z
|
|
7
7
|
.object({
|
|
8
8
|
provider: ProviderSchema.default("cruxy"),
|
|
9
|
-
// Cruxy tiers: "kavi" | "vaani" | "mira", or "auto" (
|
|
10
|
-
//
|
|
9
|
+
// Cruxy tiers: "kavi" | "vaani" | "mira", or "auto" (the v2 gateway routes
|
|
10
|
+
// "auto" server-side; the served tier comes back in the response routing).
|
|
11
11
|
model: z.string().default("auto"),
|
|
12
12
|
maxTokens: z.number().int().positive().default(8192),
|
|
13
13
|
temperature: z.number().min(0).max(2).default(0),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cruxy/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "an agentic coding CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"undici": "^6.21.0",
|
|
37
37
|
"zod": "^3.23.8",
|
|
38
38
|
"zod-to-json-schema": "^3.23.5",
|
|
39
|
-
"@cruxy/sdk": "0.
|
|
39
|
+
"@cruxy/sdk": "0.4.0"
|
|
40
40
|
},
|
|
41
41
|
"optionalDependencies": {
|
|
42
42
|
"better-sqlite3": "^12.11.1"
|