it's free*.ai

Jan

Jan 是一個開源的、ChatGPT 形狀的桌面應用,100% 離線執行。本機伺服器在 localhost:1337/v1,OpenAI 相容,編輯器可以像連 LM Studio 一樣連它。

Jan 是一個開源的、ChatGPT 形狀的桌面應用,100% 離線執行。本機伺服器在 localhost:1337/v1,OpenAI 相容,編輯器可以像連 LM Studio 一樣連它。

下載、挑模型、對話。不需要帳號。它的賣点是介面而不是新引擎 —— 底層還是你機器上的本機權重。

最大上下文
Whatever your RAM allows
免費額度
無限且私密
註冊要求
什麼都不用 —— 無帳號

端點

基底網址http://localhost:1337/v1
速率限制None — it is your machine

程式碼範例

npm install openai
import 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)

你能免費使用的模型2