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

推荐订阅源

博客园 - Franky
有赞技术团队
有赞技术团队
宝玉的分享
宝玉的分享
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
V
V2EX
大猫的无限游戏
大猫的无限游戏
博客园 - 司徒正美
D
Docker
T
The Blog of Author Tim Ferriss
罗磊的独立博客
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
J
Java Code Geeks
Jina AI
Jina AI
博客园 - 【当耐特】
C
Check Point Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog

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
Wan models on AI Gateway - Vercel
Authors · 2026-02-19 · via Vercel News

Generate stylized videos and transform existing footage with Alibaba's Wan models, now available through AI Gateway. Try them out now via AI SDK 6 or by selecting the models in the AI Gateway playground.

Wan produces artistic videos with smooth motion and can use existing content to keep videos consistent:

  • Character Reference (R2V): Extract character appearance and voice from reference videos/images to generate new scenes

  • Flash Variants: Faster generation times for quick iterations

  • Flexible Resolutions: Support for 480p, 720p, and 1080p output

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: 'alibaba/wan-v2.6-t2v',

prompt: 'Watercolor painting of a koi pond coming to life.',

});

  • 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

alibaba/wan-v2.6-t2v

Text-to-Video

Generate videos from text prompts

alibaba/wan-v2.6-i2v

Image-to-Video

Animate still images

alibaba/wan-v2.6-i2v-flash

Image-to-Video

Fast image animation

alibaba/wan-v2.6-r2v

Reference-to-Video

Character transfer from references

alibaba/wan-v2.6-r2v-flash

Reference-to-Video

Fast style transfer

alibaba/wan-v2.5-t2v-preview

Text-to-Video

Previous version

Link to headingSimple: Text-to-Video with Audio

Generate a stylized video from a text description.

You can use detailed prompts and specify styles with the Wan models to achieve the desired output generation. The example here uses alibaba/wan-v2.6-t2v:

import { experimental_generateVideo as generateVideo } from 'ai';

const { videos } = await generateVideo({

model: 'alibaba/wan-v2.6-t2v',

prompt:

`Animated rainy Tokyo street at night, anime style,

neon signs reflecting on wet pavement, people with umbrellas

walking past, red and blue lights glowing through the rain.`,

resolution: '1280x720',

duration: 5,

});

Link to headingAdvanced: Reference-to-Video

Generate new scenes using characters extracted from reference images or videos.

In this example, 2 reference images of dogs are used to generate the final video.

Using alibaba/wan-v2.6-r2v-flash here, you can instruct the model to utilize the people/characters within the prompt. Wan suggests using character1, character2, etc. in the prompt for multi-reference to video to get the best results.

import { experimental_generateVideo as generateVideo } from 'ai';

const { videos } = await generateVideo({

model: 'alibaba/wan-v2.6-r2v-flash',

prompt:

`character1 and character2 are playing together on the beach in San Francisco

with the Golden Gate Bridge in the background, sunny day, waves crashing`,

resolution: '1280x720',

duration: 5,

providerOptions: {

alibaba: {

referenceUrls: [shibaImage, yorkieImage],

},

},

});

Link to headingLearn More

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