Lyria 3 Pro Preview
Google
google/lyria-3-pro-preview
Lyria 3 Pro — full-length AI music generation by Google DeepMind
Context Window
—
Max Output
—
Capabilities
Audio
Aliases
lyria-3-pro-previewPricing (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="google/lyria-3-pro-preview", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)