Pixverse V6
Alibaba
pixverse/pixverse-v6
PixVerse V6, multi-shot video
Context Window
β
Max Output
β
About this model
PixVerse V6 is a general-purpose AI video generation model by PixVerse, supporting multi-shot generation and diverse styles.
Billed per second at $0.06. Access via Chuizi.AI's Bailian gateway with a ck- API key.
Highlights
Multi-shot
Diverse styles
General-purpose
Cost-effective
Best For
Multi-shot narrativesStylized videoSocial mediaContent creation
2026-03-01
Capabilities
video-gen
Aliases
pixverse-v6Pricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $0.0000 |
| Output / 1M | $0.0000 |
Final prices shown
Quick Start
main.py
from openai import OpenAI client = OpenAI( base_url="https://api.chuizi.ai/v1", api_key="ck-your-key-here", ) response = client.chat.completions.create( model="pixverse/pixverse-v6", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)