Use Cerebras with PraisonAI TypeScript
export CEREBRAS_API_KEY=...
import { Agent } from 'praisonai'; const agent = new Agent({ name: 'CerebrasAgent', instructions: 'You are a helpful assistant.', llm: 'cerebras/llama3.3-70b' }); const response = await agent.chat('Hello!');