Skip to main content

Requesty Provider

Environment Variables

export REQUESTY_API_KEY=...

Quick Start

import { Agent } from 'praisonai';

const agent = new Agent({
  name: 'RequestyAgent',
  instructions: 'You are a helpful assistant.',
  llm: 'requesty/model'
});

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