Gemma 3 1B

google

gemma

Gemma 3 的微型纯文本变体:Google 最新的开源权重模型系列

模型信息

模型

Gemma 3 1B

作者

google

架构

gemma

参数

1B

格式

gguf

磁盘占用空间

大约 806.06 MB

下载并运行Gemma 3 1B

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

从终端下载 gemma-3-1b

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

lms get gemma-3-1b

从你的代码中调用 gemma-3-1b

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

下一步:构建!🔨

了解更多