@evolvingmachines/sdk 0.0.41 → 0.0.43
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 +45 -45
- package/dist/index.d.cts +1 -5
- package/dist/index.d.ts +1 -5
- package/dist/index.js +45 -45
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -695,7 +695,7 @@ interface RunCost {
|
|
|
695
695
|
prompt: number;
|
|
696
696
|
completion: number;
|
|
697
697
|
};
|
|
698
|
-
/** Model used (e.g., "claude-opus-4-
|
|
698
|
+
/** Model used (e.g., "claude-opus-4-8"). Last observed model if multiple models used in a run. */
|
|
699
699
|
model: string;
|
|
700
700
|
/** Number of LLM API requests in this run */
|
|
701
701
|
requests: number;
|
|
@@ -1001,7 +1001,6 @@ declare class Agent {
|
|
|
1001
1001
|
private agentState;
|
|
1002
1002
|
private droidSessionId?;
|
|
1003
1003
|
private managedBrowserSession?;
|
|
1004
|
-
private sandboxGatewayApiKey?;
|
|
1005
1004
|
private readonly skills?;
|
|
1006
1005
|
private readonly storage?;
|
|
1007
1006
|
private lastCheckpointId?;
|
|
@@ -1029,9 +1028,6 @@ declare class Agent {
|
|
|
1029
1028
|
* Build environment variables for sandbox
|
|
1030
1029
|
*/
|
|
1031
1030
|
private buildEnvironmentVariables;
|
|
1032
|
-
private getSandboxGatewayApiKey;
|
|
1033
|
-
private ensureSandboxGatewayApiKey;
|
|
1034
|
-
private resolveSandboxGatewayMcpServers;
|
|
1035
1031
|
private ensureManagedBrowserSession;
|
|
1036
1032
|
private setupManagedBrowser;
|
|
1037
1033
|
private closeManagedBrowserSession;
|
package/dist/index.d.ts
CHANGED
|
@@ -695,7 +695,7 @@ interface RunCost {
|
|
|
695
695
|
prompt: number;
|
|
696
696
|
completion: number;
|
|
697
697
|
};
|
|
698
|
-
/** Model used (e.g., "claude-opus-4-
|
|
698
|
+
/** Model used (e.g., "claude-opus-4-8"). Last observed model if multiple models used in a run. */
|
|
699
699
|
model: string;
|
|
700
700
|
/** Number of LLM API requests in this run */
|
|
701
701
|
requests: number;
|
|
@@ -1001,7 +1001,6 @@ declare class Agent {
|
|
|
1001
1001
|
private agentState;
|
|
1002
1002
|
private droidSessionId?;
|
|
1003
1003
|
private managedBrowserSession?;
|
|
1004
|
-
private sandboxGatewayApiKey?;
|
|
1005
1004
|
private readonly skills?;
|
|
1006
1005
|
private readonly storage?;
|
|
1007
1006
|
private lastCheckpointId?;
|
|
@@ -1029,9 +1028,6 @@ declare class Agent {
|
|
|
1029
1028
|
* Build environment variables for sandbox
|
|
1030
1029
|
*/
|
|
1031
1030
|
private buildEnvironmentVariables;
|
|
1032
|
-
private getSandboxGatewayApiKey;
|
|
1033
|
-
private ensureSandboxGatewayApiKey;
|
|
1034
|
-
private resolveSandboxGatewayMcpServers;
|
|
1035
1031
|
private ensureManagedBrowserSession;
|
|
1036
1032
|
private setupManagedBrowser;
|
|
1037
1033
|
private closeManagedBrowserSession;
|