@nikcli-ai/sdk 1.109.0 → 1.110.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/v2/gen/types.gen.d.ts +18 -0
- package/package.json +1 -1
|
@@ -2164,6 +2164,23 @@ export type BrowserUseConfig = {
|
|
|
2164
2164
|
*/
|
|
2165
2165
|
max_cost_usd?: number;
|
|
2166
2166
|
};
|
|
2167
|
+
/**
|
|
2168
|
+
* Computer use (computer tool) configuration
|
|
2169
|
+
*/
|
|
2170
|
+
export type ComputerConfig = {
|
|
2171
|
+
/**
|
|
2172
|
+
* Where the `computer` tool runs. 'sandbox' (default) drives an isolated background Linux desktop container and never touches your screen; 'host' drives your real machine in real time.
|
|
2173
|
+
*/
|
|
2174
|
+
mode?: "sandbox" | "host";
|
|
2175
|
+
/**
|
|
2176
|
+
* Sandbox desktop width in pixels (default 1280).
|
|
2177
|
+
*/
|
|
2178
|
+
width?: number;
|
|
2179
|
+
/**
|
|
2180
|
+
* Sandbox desktop height in pixels (default 800).
|
|
2181
|
+
*/
|
|
2182
|
+
height?: number;
|
|
2183
|
+
};
|
|
2167
2184
|
/**
|
|
2168
2185
|
* Attachment handling configuration
|
|
2169
2186
|
*/
|
|
@@ -2532,6 +2549,7 @@ export type Config = {
|
|
|
2532
2549
|
rag?: RagConfig;
|
|
2533
2550
|
image?: ImageConfig;
|
|
2534
2551
|
browser?: BrowserUseConfig;
|
|
2552
|
+
computer?: ComputerConfig;
|
|
2535
2553
|
attachment?: AttachmentConfig;
|
|
2536
2554
|
speak?: SpeakConfig;
|
|
2537
2555
|
/**
|