import type * as ElevenLabs from "../index"; export interface UnitTestToolCallEvaluationModelInput { /** Parameters to evaluate for the agent's tool call. If empty, the tool call parameters are not evaluated. */ parameters?: ElevenLabs.UnitTestToolCallParameter[]; /** The tool to evaluate a call against. */ referencedTool?: ElevenLabs.ReferencedToolCommonModel; /** Whether to verify that the tool was NOT called. */ verifyAbsence?: boolean; /** Configuration for testing workflow node transitions. When set, the test will verify the agent transitions to the specified workflow node. */ workflowNodeTransition?: ElevenLabs.UnitTestWorkflowNodeTransitionEvaluationNodeId; }