import { MessageCreateParams } from "https://deno.land/x/openai@v4.69.0/resources/beta/threads/messages.ts";
import { type MessageCreateParams } from "https://deno.land/x/openai@v4.69.0/resources/beta/threads/messages.ts";
Properties
content: string | Array<MessageContentPartParam>
The text contents of the message.
The role of the entity that is creating the message. Allowed values include:
user
: Indicates the message is sent by an actual user and should be used in most cases to represent user-generated messages.assistant
: Indicates the message is generated by the assistant. Use this value to insert messages from the assistant into the conversation.
optional
attachments: Array<MessageCreateParams.Attachment> | nullA list of files attached to the message, and the tools they should be added to.