@ironcode-ai/sdk 1.11.0 → 1.12.1
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.
|
@@ -1604,10 +1604,18 @@ export type Config = {
|
|
|
1604
1604
|
* Enable the batch tool
|
|
1605
1605
|
*/
|
|
1606
1606
|
batch_tool?: boolean;
|
|
1607
|
+
/**
|
|
1608
|
+
* Enable AI SDK DevTools middleware for debugging LLM calls (run 'npx @ai-sdk/devtools' to launch viewer)
|
|
1609
|
+
*/
|
|
1610
|
+
devtools?: boolean;
|
|
1607
1611
|
/**
|
|
1608
1612
|
* Enable OpenTelemetry spans for AI SDK calls (using the 'experimental_telemetry' flag)
|
|
1609
1613
|
*/
|
|
1610
1614
|
openTelemetry?: boolean;
|
|
1615
|
+
/**
|
|
1616
|
+
* Enable provider-specific tools (e.g. 'anthropic:web_search', 'openai:web_search', 'google:google_search', 'xai:x_search'). Use 'anthropic:*' to enable all tools for a provider.
|
|
1617
|
+
*/
|
|
1618
|
+
provider_tools?: Array<string>;
|
|
1611
1619
|
/**
|
|
1612
1620
|
* Tools that should only be available to primary agents.
|
|
1613
1621
|
*/
|