@evolvingmachines/sdk 0.0.26 → 0.0.28
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/index.cjs +31 -31
- package/dist/index.d.cts +8 -5
- package/dist/index.d.ts +8 -5
- package/dist/index.js +31 -31
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -464,8 +464,6 @@ interface AgentConfig {
|
|
|
464
464
|
model?: string;
|
|
465
465
|
/** Reasoning effort for Codex models */
|
|
466
466
|
reasoningEffort?: ReasoningEffort;
|
|
467
|
-
/** Beta headers for Claude (Sonnet 4.5 only) */
|
|
468
|
-
betas?: string[];
|
|
469
467
|
}
|
|
470
468
|
/** Resolved agent config (output of resolution, not an extension of input) */
|
|
471
469
|
interface ResolvedAgentConfig {
|
|
@@ -478,7 +476,6 @@ interface ResolvedAgentConfig {
|
|
|
478
476
|
oauthFileContent?: string;
|
|
479
477
|
model?: string;
|
|
480
478
|
reasoningEffort?: ReasoningEffort;
|
|
481
|
-
betas?: string[];
|
|
482
479
|
}
|
|
483
480
|
/** Options for Agent constructor */
|
|
484
481
|
interface AgentOptions {
|
|
@@ -1001,6 +998,10 @@ declare class Agent {
|
|
|
1001
998
|
* Returns null if no session has started (run() not called yet).
|
|
1002
999
|
*/
|
|
1003
1000
|
getSessionTimestamp(): string | null;
|
|
1001
|
+
/**
|
|
1002
|
+
* Flush pending observability events without closing the session.
|
|
1003
|
+
*/
|
|
1004
|
+
flushObservability(): Promise<void>;
|
|
1004
1005
|
}
|
|
1005
1006
|
|
|
1006
1007
|
/**
|
|
@@ -1470,6 +1471,10 @@ declare class Evolve extends EventEmitter {
|
|
|
1470
1471
|
* Returns null if no session has started (run() not called yet).
|
|
1471
1472
|
*/
|
|
1472
1473
|
getSessionTimestamp(): string | null;
|
|
1474
|
+
/**
|
|
1475
|
+
* Flush pending observability events without killing sandbox.
|
|
1476
|
+
*/
|
|
1477
|
+
flushObservability(): Promise<void>;
|
|
1473
1478
|
}
|
|
1474
1479
|
|
|
1475
1480
|
/**
|
|
@@ -1550,7 +1555,6 @@ interface AgentOverride {
|
|
|
1550
1555
|
type: AgentType;
|
|
1551
1556
|
model?: string;
|
|
1552
1557
|
reasoningEffort?: ReasoningEffort;
|
|
1553
|
-
betas?: string[];
|
|
1554
1558
|
}
|
|
1555
1559
|
interface SwarmConfig {
|
|
1556
1560
|
/** Default agent for all operations (defaults to env resolution) */
|
|
@@ -2342,7 +2346,6 @@ interface BuildCommandOptions {
|
|
|
2342
2346
|
model: string;
|
|
2343
2347
|
isResume: boolean;
|
|
2344
2348
|
reasoningEffort?: string;
|
|
2345
|
-
betas?: string[];
|
|
2346
2349
|
isDirectMode?: boolean;
|
|
2347
2350
|
/** Skills enabled for this run */
|
|
2348
2351
|
skills?: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -464,8 +464,6 @@ interface AgentConfig {
|
|
|
464
464
|
model?: string;
|
|
465
465
|
/** Reasoning effort for Codex models */
|
|
466
466
|
reasoningEffort?: ReasoningEffort;
|
|
467
|
-
/** Beta headers for Claude (Sonnet 4.5 only) */
|
|
468
|
-
betas?: string[];
|
|
469
467
|
}
|
|
470
468
|
/** Resolved agent config (output of resolution, not an extension of input) */
|
|
471
469
|
interface ResolvedAgentConfig {
|
|
@@ -478,7 +476,6 @@ interface ResolvedAgentConfig {
|
|
|
478
476
|
oauthFileContent?: string;
|
|
479
477
|
model?: string;
|
|
480
478
|
reasoningEffort?: ReasoningEffort;
|
|
481
|
-
betas?: string[];
|
|
482
479
|
}
|
|
483
480
|
/** Options for Agent constructor */
|
|
484
481
|
interface AgentOptions {
|
|
@@ -1001,6 +998,10 @@ declare class Agent {
|
|
|
1001
998
|
* Returns null if no session has started (run() not called yet).
|
|
1002
999
|
*/
|
|
1003
1000
|
getSessionTimestamp(): string | null;
|
|
1001
|
+
/**
|
|
1002
|
+
* Flush pending observability events without closing the session.
|
|
1003
|
+
*/
|
|
1004
|
+
flushObservability(): Promise<void>;
|
|
1004
1005
|
}
|
|
1005
1006
|
|
|
1006
1007
|
/**
|
|
@@ -1470,6 +1471,10 @@ declare class Evolve extends EventEmitter {
|
|
|
1470
1471
|
* Returns null if no session has started (run() not called yet).
|
|
1471
1472
|
*/
|
|
1472
1473
|
getSessionTimestamp(): string | null;
|
|
1474
|
+
/**
|
|
1475
|
+
* Flush pending observability events without killing sandbox.
|
|
1476
|
+
*/
|
|
1477
|
+
flushObservability(): Promise<void>;
|
|
1473
1478
|
}
|
|
1474
1479
|
|
|
1475
1480
|
/**
|
|
@@ -1550,7 +1555,6 @@ interface AgentOverride {
|
|
|
1550
1555
|
type: AgentType;
|
|
1551
1556
|
model?: string;
|
|
1552
1557
|
reasoningEffort?: ReasoningEffort;
|
|
1553
|
-
betas?: string[];
|
|
1554
1558
|
}
|
|
1555
1559
|
interface SwarmConfig {
|
|
1556
1560
|
/** Default agent for all operations (defaults to env resolution) */
|
|
@@ -2342,7 +2346,6 @@ interface BuildCommandOptions {
|
|
|
2342
2346
|
model: string;
|
|
2343
2347
|
isResume: boolean;
|
|
2344
2348
|
reasoningEffort?: string;
|
|
2345
|
-
betas?: string[];
|
|
2346
2349
|
isDirectMode?: boolean;
|
|
2347
2350
|
/** Skills enabled for this run */
|
|
2348
2351
|
skills?: string[];
|