Back to Models

Google Veo 3.0 Fast

google/veo-3.0-fast
Google Video

Description

Google Veo 3.0 Fast by Google. This model supports video capabilities.

Specifications

Pricing

Per Video Cost:
$1.60000000

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: "google/veo-3.0-fast",
  messages: [{ role: "user", content: "Hello!" }],
});