@squidcloud/client 1.0.377 → 1.0.378
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.
|
@@ -410,14 +410,14 @@ export interface AiChatPromptQuotas {
|
|
|
410
410
|
maxAiCallStackSize: number;
|
|
411
411
|
}
|
|
412
412
|
/**
|
|
413
|
-
* Options for AI agent
|
|
414
|
-
* integrations, or functions.
|
|
413
|
+
* Options for AI agent execution plan, allowing the agent to plan what functionality to use (connected agents,
|
|
414
|
+
* connected, integrations, or functions).
|
|
415
415
|
*/
|
|
416
|
-
export interface
|
|
417
|
-
/** Whether to enable
|
|
416
|
+
export interface AiAgentExecutionPlanOptions {
|
|
417
|
+
/** Whether to enable an execution plan for the agent. */
|
|
418
418
|
enabled: boolean;
|
|
419
|
-
/** The model to use for the
|
|
420
|
-
|
|
419
|
+
/** The model to use for the execution plan - defaults to the model used by the agent. */
|
|
420
|
+
model?: AiChatModelName;
|
|
421
421
|
/** In case the model supports reasoning, this will control the level of effort - defaults to `high`. */
|
|
422
422
|
reasoningEffort?: AiReasoningEffort;
|
|
423
423
|
}
|
|
@@ -499,10 +499,10 @@ export interface BaseAiChatOptions {
|
|
|
499
499
|
/** Which provider's reranker to use for reranking the context. Defaults to 'cohere'. */
|
|
500
500
|
rerankProvider?: AiRerankProvider;
|
|
501
501
|
/**
|
|
502
|
-
* Options for AI agent
|
|
503
|
-
* integrations, or functions.
|
|
502
|
+
* Options for AI agent execution plan, allowing the agent to perform an execution plan before invoking
|
|
503
|
+
* connected agents, connected integrations, or functions.
|
|
504
504
|
*/
|
|
505
|
-
|
|
505
|
+
executionPlanOptions?: AiAgentExecutionPlanOptions;
|
|
506
506
|
}
|
|
507
507
|
/**
|
|
508
508
|
* Chat options specific to Gemini models, extending base options.
|