Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/openai/resources/mod.ts>ChatCompletionAssistantMessageParam

Deno build of the official Typescript library for the OpenAI API.
Extremely Popular
Go to Latest
namespace ChatCompletionAssistantMessageParam
import { ChatCompletionAssistantMessageParam } from "https://deno.land/x/openai@v4.52.0/resources/mod.ts";
interface ChatCompletionAssistantMessageParam
import { type ChatCompletionAssistantMessageParam } from "https://deno.land/x/openai@v4.52.0/resources/mod.ts";

Properties

role: "assistant"

The role of the messages author, in this case assistant.

optional
content: string | null

The contents of the assistant message. Required unless tool_calls or function_call is specified.

optional
deprecated
function_call: ChatCompletionAssistantMessageParam.FunctionCall | null
optional
name: string

An optional name for the participant. Provides the model information to differentiate between participants of the same role.

optional
tool_calls: Array<ChatCompletionMessageToolCall>

The tool calls generated by the model, such as function calls.