import type * as SarvamAI from "../index.mjs"; export interface ChatCompletionResponseMessage { /** The contents of the message. */ content?: string | undefined; refusal?: string | undefined; /** The contents of the reasoning message. */ reasoning_content?: string | undefined; /** The role of the author of this message. */ role: SarvamAI.Role; /** The tool calls generated by the model. */ tool_calls?: SarvamAI.ChatCompletionMessageToolCall[] | undefined; }