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