@nikcli-ai/sdk 1.229.0 → 1.231.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 +4 -14
- package/package.json +1 -1
|
@@ -2230,19 +2230,6 @@ export type ImageConfig = {
|
|
|
2230
2230
|
*/
|
|
2231
2231
|
provider?: string;
|
|
2232
2232
|
};
|
|
2233
|
-
/**
|
|
2234
|
-
* Browser Use (browser tool) configuration
|
|
2235
|
-
*/
|
|
2236
|
-
export type BrowserUseConfig = {
|
|
2237
|
-
/**
|
|
2238
|
-
* Default Browser Use model for the `browser` tool (e.g. bu-mini, bu-max, bu-ultra, gemini-3-flash, claude-sonnet-4.6, claude-opus-4.6, claude-opus-4.7, gpt-5.4-mini). Used when the tool call does not specify one.
|
|
2239
|
-
*/
|
|
2240
|
-
model?: string;
|
|
2241
|
-
/**
|
|
2242
|
-
* Default hard cost cap (USD) applied to Browser Use tasks when the tool call does not specify one.
|
|
2243
|
-
*/
|
|
2244
|
-
max_cost_usd?: number;
|
|
2245
|
-
};
|
|
2246
2233
|
/**
|
|
2247
2234
|
* Computer use (computer tool) configuration
|
|
2248
2235
|
*/
|
|
@@ -2728,7 +2715,10 @@ export type Config = {
|
|
|
2728
2715
|
};
|
|
2729
2716
|
rag?: RagConfig;
|
|
2730
2717
|
image?: ImageConfig;
|
|
2731
|
-
|
|
2718
|
+
/**
|
|
2719
|
+
* Deprecated and ignored; the browser_control tool needs no config
|
|
2720
|
+
*/
|
|
2721
|
+
browser?: unknown;
|
|
2732
2722
|
computer?: ComputerConfig;
|
|
2733
2723
|
attachment?: AttachmentConfig;
|
|
2734
2724
|
speak?: SpeakConfig;
|