Poe API
Google’s Veo 3.1 is an updated version of the Veo family of models that features richer native audio, from natural conversations to synchronized sound effects, and offers greater narrative control with an improved understanding of cinematic styles. Enhanced image-to-video capabilities ensure better prompt adherence while delivering superior audio and visual quality and maintaining character consistency across multiple scenes.
Optional parameters:
- Set the aspect ratio (either `16:9` or `9:16`), which defaults to `16:9`
- Negative prompt can be set on elements to avoid
- Set the duration (one of `4s`, `6s`, or `8s`), which defaults to `8s`
- Seed to set the seed (set number value)
- Resolution (set from 720p or 1080p)
- Reference mode. Toggle to use input images (3 max) as reference for video generation
For first & last frame video generation and references support, please use www.poe.com/Veo-v3.1
Powered by a server managed by @google. Learn more
- OFFICIAL
Build with Veo-3.1 using the Poe API
Start by creating an API key, for use with any bot on Poe:
Code samples
python
import openai
client = openai.OpenAI(
api_key = "YOUR_POE_API_KEY", # or os.getenv("POE_API_KEY")
base_url = "https://api.poe.com/v1",
)
chat = client.chat.completions.create(
model = "veo-3.1",
messages = [{
"role": "user",
"content": "A delicious shot of an ice cream cone for a commercial"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.