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!');