import type * as SarvamAI from "../index.mjs"; export interface ChatCompletionTool { /** The type of the tool. Currently, only `function` is supported. */ type: "function"; function: SarvamAI.FunctionDefinition; }