Providers
lmstudio
LM Studio — desktop app that exposes an OpenAI-compatible server over local models.
import { lmstudio } from '@agentskit/adapters'
const adapter = lmstudio({
model: 'lmstudio-community/Llama-3.3-70B-Instruct-GGUF',
url: 'http://localhost:1234/v1',
})Options
| Option | Type | Default |
|---|---|---|
model | string | required |
url | string | http://localhost:1234/v1 |
apiKey | string | — (optional if enabled) |
fetch | typeof fetch | global |
Notes
- GUI-first: download models via LM Studio app, then hit the local server.
- OpenAI-compatible; most tooling works unchanged.