Interface TextChatUserTextContent

The definition of a user text content.

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

Hierarchy (view full)

Properties

Properties

text: string

The text content.

type: "text"

The type of the user content. You can get the list of models supporting text, image, audio, video by using Foundation Model Specs with filters=function_text_chat, filters=function_image_chat, filters=function_audio_chat, filters=function_video_chat respectively.