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