Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
ChatContentItems type definition
models.ChatContentFile
const value: models.ChatContentFile = { file: {}, type: "file", };
models.ChatContentImage
const value: models.ChatContentImage = { imageUrl: { url: "https://vague-assist.org/", }, type: "image_url", };
models.ChatContentAudio
const value: models.ChatContentAudio = { inputAudio: { data: "<value>", format: "<value>", }, type: "input_audio", };
models.LegacyChatContentVideo
const value: models.LegacyChatContentVideo = { type: "input_video", videoUrl: { url: "https://example.com/video.mp4", }, };
models.ChatContentText
const value: models.ChatContentText = { text: "Hello, world!", type: "text", };
models.ChatContentVideo
const value: models.ChatContentVideo = { type: "video_url", videoUrl: { url: "https://example.com/video.mp4", }, };