Use RunPod with PraisonAI TypeScript
export RUNPOD_API_KEY=...
import { Agent } from 'praisonai'; const agent = new Agent({ name: 'RunPodAgent', instructions: 'You are a helpful assistant.', llm: 'runpod/model' }); const response = await agent.chat('Hello!');