/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; export interface CallToolResponse { /** Whether the API call was successful */ success: boolean; /** The result of the tool call, if successful */ result?: Klavis.CallToolResult; /** Error message, if the tool call failed */ error?: string; }