it's free*.ai

LM Studio

LM Studio è l’app desktop per chi preferisce non toccare un terminale: sfogli GGUF e MLX, scaricare, chattare, poi aprire la scheda Developer e avviare il server locale su localhost:1234/v1.

LM Studio è l’app desktop per chi preferisce non toccare un terminale: sfogli GGUF e MLX, scaricare, chattare, poi aprire la scheda Developer e avviare il server locale su localhost:1234/v1.

Stesso trattamento di Ollama — illimitato, privato, il tetto è la tua RAM — con interfaccia e chat integrata. Avvia il server prima che il tuo editor provi a chiamarlo.

Contesto massimo
Whatever your RAM allows
Piano gratuito
Illimitato e privato
Requisito
Niente — nessun account

Endpoint

URL basehttp://localhost:1234/v1
Limite di velocitàNone — it is your machine

Esempi di codice

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'http://localhost:1234/v1',
  apiKey: 'not-needed'
})

const response = await client.chat.completions.create({
  model: 'qwen3-8b',
  messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})

console.log(response.choices[0].message.content)

Vale la pena sapere

Modelli che ottieni gratis3