A content part with type "text" that represents text content in a request or response message.

interface ChatsUserContentText {
    text: string;
    type: "text";
}

Properties

Properties

text: string

Text contents of this part of the message.

type: "text"

Type of the content part, in this case should always be "text".