Llama 3.3 70B Instruct

lmstudio-community

llama

Meta 最新的 Llama 70B 模型,性能与 Llama 3.2 405B 相媲美

模型信息

模型

Llama 3.3 70B Instruct

作者

lmstudio-community

架构

llama

参数量

70B

格式

gguf

磁盘大小

大约 37.14 GB

下载并运行Llama 3.3 70B Instruct

在 LM Studio 中打开以查看下载选项

从终端下载 llama-3.3-70b

使用 lms — LM Studio 的开发者 CLI 下载模型。

lms get llama-3.3-70b

从代码中调用 llama-3.3-70b

curl https://127.0.0.1:1234/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "llama-3.3-70b",
    "messages": [
      { "role": "system", "content": "Always answer in rhymes." },
      { "role": "user", "content": "Introduce yourself." }
    ],
    "temperature": 0.7,
    "max_tokens": -1,
    "stream": true
  }'

下一步:构建!🔨

了解更多