Poe API
Runway Gen 4.5 is an advanced video model that generates cinematic, high‑fidelity video from natural language and images. It offers fine‑grained control over motion, camera behavior, composition, and style, producing physically realistic and temporally consistent scenes.
Optional parameters:
Set aspect ratio. Select from (21:9, 16:9, 4:3, 1:1, 3:4, 9:16). It is set to 16:9 aspect ratio as default.
Set Duration. Select from (5 seconds, 8 seconds, 10 seconds) to specify video length in seconds. Set to 5 seconds as default.
Powered by a server managed by @runwayml. Learn more
- OFFICIAL
Build with Runway-Gen-4.5 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 = "runway-gen-4.5",
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.