import type * as SarvamAI from "../index.mjs"; export interface ChatCompletionMessageToolCall { /** The ID of the tool call. */ id: string; /** The type of the tool call, currently only `function`. */ type: "function"; function: SarvamAI.FunctionCall; }