Poe API
Runway
By
Runway's Gen-3 Alpha Turbo model creates best-in-class, controllable, and high-fidelity video generations based on your prompts. Both text inputs (max 1000 characters) and image inputs are supported, but we recommend using image inputs for best results.
Parameter controls:
Aspect_ratio (16:9, 9:16) for landscape/portrait videos.
Duration (5, 10) to specify video length in seconds.
Powered by a server managed by @runwayml. Learn more
- OFFICIAL
Build with Runway 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",
messages = [{
"role": "user",
"content": "A man walking through a forest, 1980s horror film style"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.