Interface TextChatUserVideoURLContent

The definition of a user video content.

interface TextChatUserVideoURLContent {
    data_asset?: TextChatDataAsset;
    type: "video_url";
    video_url?: TextChatUserVideoURL;
}

Hierarchy (view full)

Properties

data_asset?: TextChatDataAsset

The data asset of a video uploaded into the space_id or project_id. If data_asset is specified, the url field in video_url will be automatically set with the URL of the uploaded video.

type: "video_url"

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.

The video URL configuration.