ant:video-genModels that generate video natively.
ant:video-gen hard-requires video-generation capability. Availability tracks what upstream providers expose, so this is the thinnest pool and can be empty when no provider is serving a compatible model.
Live routing over the last 30 days
No requests routed through this pool in the last 30 days yet.
No models currently qualify for this pool. Requests will fall back to the router's general selection.
from openai import OpenAI
client = OpenAI(
base_url="https://api.antbase.ai/v1",
api_key="YOUR_ANT_API_KEY",
)
response = client.chat.completions.create(
model="ant:video-gen",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)Every virtual pool accepts the same request shape — swap the model id to change the routing policy.
Browse all virtual models →