The Vercel v0 API provides large language models, designed for building modern web applications. It supports text and image inputs, provides fast streaming responses, and is compatible with the OpenAI Chat Completions API format. It is optimized for frontend and full-stack web development code generation. For more details, refer to the official Vercel v0 API documentation.Documentation Index
Fetch the complete documentation index at: https://docs-v1.agno.com/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
Set yourV0_API_KEY environment variable. You can create an API key on v0.dev.
Example
Usev0 with your Agent. The following example assumes you have the v0 Python class (as you provided) located at agno/models/vercel.py.
View more examples here.
Params
| Parameter | Type | Default | Description |
|---|---|---|---|
id | str | "v0-1.0-md" | The specific model ID used for generating responses. |
name | str | "v0" | The name identifier for the v0 agent. |
provider | str | "Vercel" | The provider of the model, combining "v0" with the model ID. |
api_key | Optional[str] | - | The API key for authenticating requests to the v0 service. Retrieved from the environment variable V0_API_KEY. |
base_url | str | "https://api.v0.dev/v1/" | The base URL for making API requests to the v0 service. |