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