VideoModel - TypeScript SDK

VideoModel type definition

The TypeScript SDK and docs are currently in beta. Report issues on GitHub.

Example Usage

1import { VideoModel } from "@openrouter/sdk/models";
2
3let value: VideoModel = {
4 allowedPassthroughParameters: [],
5 canonicalSlug: "google/veo-3.1",
6 created: 1700000000,
7 generateAudio: true,
8 id: "google/veo-3.1",
9 name: "Veo 3.1",
10 seed: null,
11 supportedAspectRatios: [
12 "16:9",
13 ],
14 supportedDurations: [
15 5,
16 8,
17 ],
18 supportedFrameImages: [
19 "first_frame",
20 "last_frame",
21 ],
22 supportedResolutions: [
23 "720p",
24 ],
25 supportedSizes: null,
26};

Fields

FieldTypeRequiredDescriptionExample
allowedPassthroughParametersstring[]✔️List of parameters that are allowed to be passed through to the provider
canonicalSlugstring✔️Canonical slug for the modelopenai/gpt-4
creatednumber✔️Unix timestamp of when the model was created1692901234
descriptionstringDescription of the modelGPT-4 is a large multimodal model that can solve difficult problems with greater accuracy.
generateAudioboolean✔️Whether the model supports generating audio alongside video
huggingFaceIdstringHugging Face model identifier, if applicablemicrosoft/DialoGPT-medium
idstring✔️Unique identifier for the modelopenai/gpt-4
namestring✔️Display name of the modelGPT-4
pricingSkusRecord<string, *string*>Pricing SKUs with provider prefix stripped, values as strings
seedboolean✔️Whether the model supports deterministic generation via seed parameter
supportedAspectRatiosmodels.SupportedAspectRatio[]✔️Supported output aspect ratios
supportedDurationsnumber[]✔️Supported video durations in seconds
supportedFrameImagesmodels.SupportedFrameImage[]✔️Supported frame image types (e.g. first_frame, last_frame)
supportedResolutionsmodels.SupportedResolution[]✔️Supported output resolutions
supportedSizesmodels.SupportedSize[]✔️Supported output sizes (width x height)