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.
#Related
Explore nearby
- PeerProviders
25 native chat and embedder adapters, plus higher-order adapters that compose candidates. Separate from the 140-provider models catalog.
- PeerChoosing an adapter
Capability decision table and rules of thumb for picking a chat adapter.
- PeerHosted chat adapters
17 managed-LLM adapters. Same contract; swap by changing one import.