Back to Models
Sora 2 Pro
openai/sora-2-pro
OpenAI
Video
Description
Sora 2 Pro by OpenAI. This model supports video capabilities.
Specifications
Pricing
- Per Video Cost:
- $4.80000000
Usage Example
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.yourproxy.com/v1",
apiKey: process.env.PROXY_KEY,
});
const completion = await client.chat.completions.create({
model: "openai/sora-2-pro",
messages: [{ role: "user", content: "Hello!" }],
});