Local-first
LM Studio with Meridian
Load Meridian GGUF models directly in LM Studio and query them through the built-in OpenAI-compatible local server. Zero telemetry, fully offline.
Quickstart
Usage
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "http://localhost:1234/v1",
apiKey: "not-needed",
});
const completion = await client.chat.completions.create({
model: "meridian-7b",
messages: [{ role: "user", content: "Hello" }],
});The LM Studio SDK wraps the same endpoint. Use whichever fits your stack.
🔒
Runs entirely on your machine
Meridian + LM Studio keeps every token local. No API keys, no cloud round-trips, no logging. Your data never leaves the device.