@nikcli-ai/sdk 1.108.0 → 1.109.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 +14 -0
- package/package.json +1 -1
|
@@ -2151,6 +2151,19 @@ export type ImageConfig = {
|
|
|
2151
2151
|
*/
|
|
2152
2152
|
provider?: string;
|
|
2153
2153
|
};
|
|
2154
|
+
/**
|
|
2155
|
+
* Browser Use (browser tool) configuration
|
|
2156
|
+
*/
|
|
2157
|
+
export type BrowserUseConfig = {
|
|
2158
|
+
/**
|
|
2159
|
+
* 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.
|
|
2160
|
+
*/
|
|
2161
|
+
model?: string;
|
|
2162
|
+
/**
|
|
2163
|
+
* Default hard cost cap (USD) applied to Browser Use tasks when the tool call does not specify one.
|
|
2164
|
+
*/
|
|
2165
|
+
max_cost_usd?: number;
|
|
2166
|
+
};
|
|
2154
2167
|
/**
|
|
2155
2168
|
* Attachment handling configuration
|
|
2156
2169
|
*/
|
|
@@ -2518,6 +2531,7 @@ export type Config = {
|
|
|
2518
2531
|
};
|
|
2519
2532
|
rag?: RagConfig;
|
|
2520
2533
|
image?: ImageConfig;
|
|
2534
|
+
browser?: BrowserUseConfig;
|
|
2521
2535
|
attachment?: AttachmentConfig;
|
|
2522
2536
|
speak?: SpeakConfig;
|
|
2523
2537
|
/**
|