Use Requesty with PraisonAI TypeScript
export REQUESTY_API_KEY=...
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!');