Skip to main content

Vercel Provider

Environment Variables

export VERCEL_API_KEY=...

Quick Start

import { Agent } from 'praisonai';

const agent = new Agent({
  name: 'VercelAgent',
  instructions: 'You are a helpful assistant.',
  llm: 'vercel/v0'
});

const response = await agent.chat('Hello!');