惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
A
About on SuperTechFans
Vercel News
Vercel News
B
Blog
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
D
Docker
V
Visual Studio Blog
博客园 - 叶小钗
The Cloudflare Blog
Jina AI
Jina AI
B
Blog RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏

Vercel News

Vercel Open Source Program: Winter 2026 cohort How Notion Workers run untrusted code at scale with Vercel Sandbox How we run Vercel's CDN in front of Discourse From idea to secure checkout in minutes with Stripe Building Slack agents can be easy Scaling redirects to infinity on Vercel Advancing Python typing Gamma builds design-first agents with Vercel How Avalara turns pipe dreams into patent-pending with v0 Keeping community human while scaling with agents How OpenEvidence built a healthcare AI that physicians actually trust Security boundaries in agentic architectures Skills Night: 69,000+ ways agents are getting smarter Video Generation with AI Gateway We Ralph Wiggumed WebStreams to make them 10x faster How Stably ships AI testing agents in hours, not weeks How we built AEO tracking for coding agents Anyone can build agents, but it takes a platform to run them Introducing Geist Pixel The Vercel AI Accelerator is back with $6m in credits Making agent-friendly pages with content negotiation The Vercel OSS Bug Bounty program is now available Introducing the new v0 Run untrusted code with Vercel Sandbox, now generally available How Stripe built a game-changing app in a single flight with v0 How Sensay went from zero to product in six weeks AGENTS.md outperforms skills in our agent evals Agent skills explained: An FAQ Testing if "bash is all you need" AWS databases are now live on the Vercel Marketplace and v0
Kling video models on AI Gateway - Vercel
Authors · 2026-02-19 · via Vercel News

Kling video models are now available in AI Gateway, including the newest Kling 3.0 models. Generate cinematic videos from text, images, or motion references with Kling's state-of-the-art video models, now available through AI Gateway and AI SDK.

Kling models are known for their image to video models and multishot capabilities:

  • Image-to-Video Capabilities: Strong at animating still images into video clips

  • Realistic Motion and Physics: Known for coherent motion, facial expressions, and physical interactions

  • High Resolution Output: Supports up to 1080p generation (pro mode)

  • Multishot Narratives: Kling 3.0 can generate multi-scene videos from a single narrative prompt

  • Audio Generation: Create synchronized sound effects and ambient audio alongside your video

  • First & Last Frame Control: Specify both start and end frames for precise scene transitions

Link to headingTwo ways to get started

Video generation is in beta and currently available for Pro and Enterprise plans and paid AI Gateway users.

  • AI SDK 6: Generate videos programmatically AI SDK 6's generateVideo.

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.',

});

  • Gateway Playground: Experiment with video models with no code in the configurable AI Gateway playground that's embedded in each model page. Compare providers, tweak prompts, and download results without writing code. To access, click any video gen model in the model list.

Link to headingAvailable Models

Model

Type

Description

klingai/kling-v3.0-t2v

Text-to-Video

Latest generation, highest quality with multishot support

klingai/kling-v3.0-i2v

Image-to-Video, First-and-Last-Frame

Animate images with v3 quality and multiple frames

klingai/kling-v2.6-t2v

Text-to-Video

Audio generation support

klingai/kling-v2.6-i2v

Image-to-Video, First-and-Last-Frame

Use images as reference

klingai/kling-v2.5-turbo-t2v

Text-to-Video

Faster generation

klingai/kling-v2.5-turbo-i2v

Image-to-Video, First-and-Last-Frame

Faster generation

Link to headingSimple: Text-to-Video with Audio

Generate a video from a text description.

In this example, model klingai/kling-v3.0-t2v is used to generate a video of a cherry blossom tree with no inputs other than a simple text prompt.

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

Generate a narrative video with multiple scenes with only a single prompt. Using Kling 3.0's multishot feature, the model intelligently cuts between shots to tell a complete story:

The prompt is written as a narrative with multiple distinct scenes for the best results. shotType: 'intelligence' lets the model decide optimal shot composition and sound: 'on' generates synchronized audio for the entire video. Note that the prompt here is in the providerOptions since this functionality is specific to Kling. The Kling 3.0 models support this functionality: here klingai/kling-v3.0-t2v is used.

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

Control exactly how your video starts and ends by providing both a first frame and last frame image. This is perfect for time-lapse effects or precise scene transitions:

These 2 images were provided as start and end frames.

Using AI SDK 6, you can set image and lastFrameImage with your start and end frames. In this example, klingai/kling-v3.0-i2v is used for the model.

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

For more examples and detailed configuration options for Kling models, check out the Video Generation Documentation. You can also find simple getting started scripts with the Video Generation Quick Start.