Skip to main content

LM Studio Provider

Run models locally with LM Studio.

Environment Variables

export LM_STUDIO_BASE_URL=http://localhost:1234/v1

Quick Start

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