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