Lyria 3 Pro Preview
Google
google/lyria-3-pro-preview
Full-length music generation
Context Window
—
Max Output
—
About this model
Full-length music generation
Access it through Chuizi.AI with a single ck- API key — no separate upstream provider account needed.
Highlights
Music generation
Long audio
Text control
DeepMind model
Best For
Background musicGame scoringVideo sound designCreative music drafts
2026-02-01
Capabilities
Audio
Pricing (per 1M tokens)
| Pricing (per 1M tokens) | / 1M tokens |
|---|---|
| Input / 1M | $0 |
| Output / 1M | $0 |
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="google/lyria-3-pro-preview", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)