Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use LM Studio local models with PraisonAI TypeScript
export LM_STUDIO_BASE_URL=http://localhost:1234/v1
import { Agent } from 'praisonai'; const agent = new Agent({ name: 'LMStudioAgent', instructions: 'You are a helpful assistant.', llm: 'lm-studio/local-model', llmConfig: { baseUrl: 'http://localhost:1234/v1' } }); const response = await agent.chat('Hello!');