Models

viv-fast — API, Pricing & Context Window | Vivgrid

viv-fast is Vivgrid's own fast, low-cost multimodal model: text and image input, a 1M-token context window, up to 256K output tokens, and both Chat Completions and Responses API support.

viv-fast is Vivgrid's SLM for fast, high-volume workloads. It accepts text, image input, keeps a 1M-token context window and 256K-token max output, supports function calling, and is priced at $0.13 per 1M input tokens, $0.05 cached, and $0.40 output.

It is available on both OpenAI surfaces — Chat Completions (/chat/completions) and the Responses API (/responses) — so coding CLIs that expect the Responses wire format, such as Codex and Pi, work against the same key.

Specifications

ProviderVivgrid
Model IDviv-fast
Best forGeneral-purpose
Context window1,000,000 tokens
Max output256,000 tokens
ModalitiesText, Image
Tool / function callingYes
Knowledge cutoff2026-09
Acceleration⚡ Geo-Distributed — AMER, EMEA, APAC

Pricing

Pricing in USD per 1M tokens, matching the provider's rates.

InputCached inputOutput
$0.13$0.05$0.40

Quick start

Call viv-fast through Vivgrid's unified, OpenAI-compatible endpoint. Get an API key from the Vivgrid Console.

curl https://api.vivgrid.com/v1/chat/completions \
  -H "Authorization: Bearer $VIVGRID_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "viv-fast",
    "messages": [
      { "role": "user", "content": "Say hello in English, Chinese and Spanish." }
    ],
    "stream": true
  }'

Ideal use cases

  • High-volume agent loops — cheap input and cached-input pricing keeps long, tool-heavy sessions affordable.
  • Multimodal understanding — reason over screenshots, recordings, and audio clips in the same request as text.
  • Long-context work — feed large codebases, transcripts, or document sets into the 1M-token window.
  • Coding CLIs on the Responses API — drop-in for tools such as Codex and Pi.

On this page