Jan
Jan è un’app desktop open source in forma di ChatGPT che gira al 100% offline. Il server locale sta su localhost:1337/v1, compatibile OpenAI — gli editor gli parlano come parlano a LM Studio.
Jan è un’app desktop open source in forma di ChatGPT che gira al 100% offline. Il server locale sta su localhost:1337/v1, compatibile OpenAI — gli editor gli parlano come parlano a LM Studio.
Scarica, scegli un modello, chatta. Nessun account. Il punto è l’interfaccia, non un nuovo motore — sotto il cofano restano pesi locali sulla tua macchina.
- Contesto massimo
- Whatever your RAM allows
- Piano gratuito
- Illimitato e privato
- Requisito
- Niente — nessun account
Endpoint
URL base
http://localhost:1337/v1Limite di velocità
None — it is your machine- Compatibile OpenAI
- testo
Esempi di codice
npm install openaiimport OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'http://localhost:1337/v1',
apiKey: 'not-needed'
})
const response = await client.chat.completions.create({
model: 'llama3.3-70b',
messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})
console.log(response.choices[0].message.content)pip install openaifrom openai import OpenAI
client = OpenAI(
base_url="http://localhost:1337/v1",
api_key="not-needed",
)
response = client.chat.completions.create(
model="llama3.3-70b",
messages=[{"role": "user", "content": "Explain closures in one paragraph."}],
)
print(response.choices[0].message.content)curl http://localhost:1337/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "llama3.3-70b",
"messages": [{"role": "user", "content": "Explain closures in one paragraph."}]
}'Modelli che ottieni gratis2
- Llama 3.3 70B
llama-3.3-70b - Qwen 3
qwen3