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