import type * as SarvamAI from "../index.mjs"; export interface ChatCompletionRequestAssistantMessage { /** The contents of the assistant message */ content?: string | undefined; /** The tool calls generated by the model. */ tool_calls?: SarvamAI.ChatCompletionMessageToolCall[] | undefined; }