Skip to content
Dashboard

Link to headingTwo ways to get started

import { experimental_generateVideo as generateVideo } from 'ai';
const { videos } = await generateVideo({
model: 'klingai/kling-v2.6-t2v',
prompt: 'A chef plates a dessert with caramel drizzle. Kitchen ambiance.',
});

Link to headingAvailable Models

Link to headingSimple: Text-to-Video with Audio

import { experimental_generateVideo as generateVideo } from 'ai';
const { videos } = await generateVideo({
model: 'klingai/kling-v3.0-t2v',
prompt:
`Cherry blossom petals falling in slow motion through golden sunlight,
Japanese garden with a stone lantern, peaceful atmosphere, cinematic`,
aspectRatio: '16:9',
duration: 5,
providerOptions: {
klingai: {
mode: 'pro',
},
},
});

Link to headingAdvanced: Multishot Video

import { experimental_generateVideo as generateVideo } from 'ai';
const { videos } = await generateVideo({
model: 'klingai/kling-v3.0-t2v',
prompt: '',
aspectRatio: '16:9',
duration: 10,
providerOptions: {
klingai: {
mode: 'pro',
multiShot: true,
shotType: 'intelligence',
prompt:
`Elephants walk across a golden savanna under gathering storm clouds.
Lightning cracks in the distance. Rain begins to fall heavily.
The herd finds shelter under acacia trees.
The storm clears revealing a double rainbow.`,
sound: 'on',
},
},
});

Link to headingAdvanced: First & Last Frame Control

import { experimental_generateVideo as generateVideo } from 'ai';
const { videos } = await generateVideo({
model: 'klingai/kling-v3.0-i2v',
prompt: {
image: startImage,
text: `Time-lapse of a pink peony flower blooming.
The tight bud slowly unfurls, petals gently separating and opening outward.
Smooth organic movement. Soft natural lighting.`,
},
duration: 10,
providerOptions: {
klingai: {
lastFrameImage: endImage,
mode: 'pro',
},
},
});

Link to headingLearn More


Ready to deploy?