@evolvingmachines/sdk 0.0.31 → 0.0.33
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/LICENSE +113 -201
- package/dist/index.cjs +29 -29
- package/dist/index.d.cts +1 -3
- package/dist/index.d.ts +1 -3
- package/dist/index.js +29 -29
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -384,8 +384,6 @@ interface SkillsConfig {
|
|
|
384
384
|
sourceDir: string;
|
|
385
385
|
/** Target directory where skills are copied for this CLI */
|
|
386
386
|
targetDir: string;
|
|
387
|
-
/** CLI flag to enable skills (e.g., "--experimental-skills") */
|
|
388
|
-
enableFlag?: string;
|
|
389
387
|
}
|
|
390
388
|
/** Reasoning effort for models that support it (Codex only) */
|
|
391
389
|
type ReasoningEffort = "low" | "medium" | "high" | "xhigh";
|
|
@@ -605,7 +603,7 @@ interface RunCost {
|
|
|
605
603
|
prompt: number;
|
|
606
604
|
completion: number;
|
|
607
605
|
};
|
|
608
|
-
/** Model used (e.g., "claude-opus-4-
|
|
606
|
+
/** Model used (e.g., "claude-opus-4-7"). Last observed model if multiple models used in a run. */
|
|
609
607
|
model: string;
|
|
610
608
|
/** Number of LLM API requests in this run */
|
|
611
609
|
requests: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -384,8 +384,6 @@ interface SkillsConfig {
|
|
|
384
384
|
sourceDir: string;
|
|
385
385
|
/** Target directory where skills are copied for this CLI */
|
|
386
386
|
targetDir: string;
|
|
387
|
-
/** CLI flag to enable skills (e.g., "--experimental-skills") */
|
|
388
|
-
enableFlag?: string;
|
|
389
387
|
}
|
|
390
388
|
/** Reasoning effort for models that support it (Codex only) */
|
|
391
389
|
type ReasoningEffort = "low" | "medium" | "high" | "xhigh";
|
|
@@ -605,7 +603,7 @@ interface RunCost {
|
|
|
605
603
|
prompt: number;
|
|
606
604
|
completion: number;
|
|
607
605
|
};
|
|
608
|
-
/** Model used (e.g., "claude-opus-4-
|
|
606
|
+
/** Model used (e.g., "claude-opus-4-7"). Last observed model if multiple models used in a run. */
|
|
609
607
|
model: string;
|
|
610
608
|
/** Number of LLM API requests in this run */
|
|
611
609
|
requests: number;
|