> For the complete documentation index, see [llms.txt](https://unsloth.ai/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://unsloth.ai/docs/zh/ji-cheng/hermes-agent.md).

# 如何使用 Hermes Agent 运行本地 AI 模型

本指南使你能够在本地运行开源 LLM，并使用 **Hermes 代理** 通过 [**Unsloth**](https://github.com/unslothai/unsloth)。Nous Research 的 Hermes Agent 是一个 **开源的** 自主 AI 代理，它连接到模型端点、执行任务，并通过记忆和已学习的技能不断改进。

{% columns %}
{% column width="58.333333333333336%" %}
Hermes 可与任何 **本地模型** 通过 Unsloth 的 **OpenAI 兼容 API**公开提供，包括：DeepSeek、Qwen、Gemma 等。Hermes 充当代理客户端，而 Unsloth 则通过 [本地 API](/docs/zh/ji-chu/api.md) 完全离线。

完成设置后，所有通过 Hermes 发送的提示都会使用你设备上的本地模型运行。
{% endcolumn %}

{% column width="41.666666666666664%" %}

<figure><img src="/files/a52b96e2d89aed91db4be9eaf73657a9a6282d8b" alt=""><figcaption><p>在 Hermes 中通过 Unsloth 本地运行的 Qwen3.5。</p></figcaption></figure>
{% endcolumn %}
{% endcolumns %}

<a href="https://unsloth.ai/docs/integrations/hermes-agent#setup-hermes-agent" class="button primary" data-icon="caduceus">设置 Hermes</a><a href="https://unsloth.ai/docs/integrations/hermes-agent#integrate-hermes-with-unsloth-api" class="button primary">🦥 连接你的本地模型</a>

{% hint style="info" %}
在本教程中，你将安装 Hermes 并将其配置为使用 `unsloth/Qwen3.6-27B-GGUF` 由 Unsloth 提供。如果你想用别的模型？只需在 Unsloth 中加载另一个模型并更新配置即可。
{% endhint %}

### <i class="fa-caduceus">:caduceus:</i> 设置 Hermes Agent

**先决条件：**

该 [Hermes](https://github.com/NousResearch/hermes-agent/blob/main/website/docs/getting-started/installation.md) 命令行安装程序支持 Linux、macOS 和 WSL2。请确保 **Git** 已安装；在 Linux 上，还需安装 **curl** 和 **xz-utils**。安装程序会自动提供 `uv`、Python 3.11、Node.js 22、 `ripgrep`，以及 `ffmpeg`.

#### 1. 运行安装程序

```bash
curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash
```

安装程序：

* 检测你的平台并检查依赖项。
* 将 Hermes 克隆到 `~/.hermes/hermes-agent/`.
* 创建 Python 虚拟环境并安装 Python 依赖。
* 安装浏览器工具依赖项和 Playwright 的 Chromium 引擎。
* 添加 `hermes` 命令并启动设置向导。

{% columns %}
{% column %}
Playwright 可能会要求 `sudo` 来安装 Chromium 的共享系统库。Hermes 本身不需要 root 权限。
{% endcolumn %}

{% column %}

<figure><img src="/files/04d6404e95fe6674852d1a9fb6e770993754442a" alt="" width="375"><figcaption></figcaption></figure>
{% endcolumn %}
{% endcolumns %}

#### **2. 重新加载你的 shell** 以便 `hermes` 命令已在你的 `PATH`:

{% code title="bash" %}

```bash
source ~/.bashrc
```

{% endcode %}

{% code title="zsh" %}

```bash
source ~/.zshrc
```

{% endcode %}

#### **3. 验证安装：**

```bash
hermes --version
```

如果该命令能被解析，说明 Hermes 已安装。一切都位于 `~/.hermes/`:

| 路径                                      | 内容                      |
| --------------------------------------- | ----------------------- |
| `~/.hermes/config.yaml`                 | 主要设置（模型、提供方、工具、TTS 等）   |
| `~/.hermes/.env`                        | API 密钥和其他机密信息           |
| `~/.hermes/hermes-agent/`               | Hermes 源代码 + 虚拟环境       |
| `~/.hermes/cron/`, `sessions/`, `logs/` | 运行时数据                   |
| `~/.hermes/skills/`                     | 已安装的技能（从 Skills Hub 同步） |

{% hint style="info" %}
完整安装参考： [hermes-agent.nousresearch.com/docs/getting-started/installation](https://hermes-agent.nousresearch.com/docs/getting-started/installation)。如果安装程序报告缺少先决条件，请先安装它，然后重新运行这个一键命令。安装程序是幂等的。
{% endhint %}

### ⚡ 快速开始

安装 Hermes 之后，我们还需要安装 Unsloth Desktop，以便让 Hermes 能够提供服务并对本地模型进行推理。

{% stepper %}
{% step %}

#### 下载 Unsloth

最简单的入门方式是安装 [Unsloth Desktop](/docs/zh/desktop.md) 应用。它支持 [MacOS](/docs/zh/kuai-su-kai-shi/install/mac.md)、Linux、 [Windows](/docs/zh/kuai-su-kai-shi/install/windows-installation.md), [NVIDIA](/docs/zh/kuai-su-kai-shi/install/pip-install.md), [AMD](/docs/zh/kuai-su-kai-shi/install/amd.md)、Intel 和 CPU 配置。

<a href="https://unsloth.ai/download" class="button primary" data-icon="down-to-bracket">下载 Unsloth</a>

* <i class="fa-apple">:apple:</i> [下载 macOS 版本](https://unsloth.ai/download/mac)
* <i class="fa-windows">:windows:</i> [下载 Windows 版本](https://unsloth.ai/download/windows)
* <i class="fa-linux">:linux:</i> [下载 Linux 版本](https://unsloth.ai/download/linux)

或者，如果你更喜欢手动安装：

**MacOS、Linux、WSL：**

```bash
curl -fsSL https://unsloth.ai/install.sh | sh
```

**Windows PowerShell：**

```bash
irm https://unsloth.ai/install.ps1 | iex
```

{% endstep %}

{% step %}

#### 安装

1. 打开 Unsloth 安装程序（`.dmg`, `.exe` 文件）
2. 在 Mac 上将 Unsloth 拖到 Applications，或在 Windows 上完成安装。
3. 启动应用并等待安装完成
   {% endstep %}

{% step %}

#### 选择模型

打开顶部的“选择模型”下拉菜单或“模型中心”标签页，选择适合你设备的模型和量化方式，然后下载它。完成后，直接开始聊天——无需额外设置。

<figure><img src="/files/ee716919ab359455030e8acd4d55b5ec13ca328d" alt="" width="563"><figcaption></figcaption></figure>
{% endstep %}

{% step %}

### Unsloth 已准备就绪

要开始聊天，输入消息并按 Enter。

**连接 Hermes。** 运行 `unsloth start hermes` 在 Unsloth 打开时在终端中运行。它会生成一个 API 密钥、写入配置，并让 Hermes 针对你加载的模型启动。

<figure><img src="/files/b0dfb852351654c29812a5aa23885913432eaa10" alt="" width="563"><figcaption></figcaption></figure>
{% endstep %}
{% endstepper %}

### ⚡ 使用 Hermes Agent 与 `unsloth start`

要直接使用模型启动 Hermes，请运行：

```bash
unsloth start hermes \\
    --model unsloth/qwen3.8-27B-GGUF-GGUF:UD-Q4_K_XL
    --temp 1.0 \
    --top-p 0.95 \
    --top-k 20 \
    --min-p 0.0 \
    --chat-template-kwargs '{"reasoning_effort":"medium"}'
```

Unsloth 会自动选择正确的参数，但你仍然可以更改它。

在 Unsloth Studio 中加载了模型后，请运行：

```bash
unsloth start hermes
```

<figure><img src="/files/d6fe3eafb5eefb4f06186d6f0243413b8259a331" alt="Hermes Agent connected to a local model through Unsloth Studio"><figcaption><p>Hermes Agent 通过其 Unsloth Studio 提供方运行。</p></figcaption></figure>

Unsloth 会从一个单独受管理的主目录启动 Hermes，其中已预先配置好 Unsloth 提供方、模型和上下文设置。你现有的 Hermes 设置不会更改。

这个受管理的主目录默认是临时的。若要保留你的会话和状态，请添加 `--persist` 从首次启动开始：

```bash
unsloth start hermes --persist
```

若之后要返回到你最近的会话，请运行：

```bash
unsloth start hermes --persist --continue
```

若要重新打开某个特定会话，请使用 `--resume <session-id-or-title>` 来替代。

查看完整的 [unsloth start](/docs/zh/ji-cheng/unsloth-start.md) 用于模型选择、远程连接和高级选项的参考。

如果你更愿意自行管理 Hermes 提供方，下方的设置向导仍然可用。

### 🔑 创建 API 密钥

1. 打开侧边栏，点击左下角的 **Unsloth** 头像。
2. 前往 **设置** → **API**.
3. 输入一个友好的名称（例如 `hermes-agent-macbook`).
4. *（可选）* 设置过期时间。
5. 点击 **创建**.
6. **立即复制该密钥。** Unsloth 只保存哈希值，你将无法再次查看它。

<figure><img src="/files/3432517ab3e4dadf17eb7ea5f319b43cc5902dd2" alt="" width="375"><figcaption></figcaption></figure>

所有密钥都以 `sk-unsloth-` 前缀开头。你可以随时在同一页面撤销密钥。使用已撤销密钥发出的请求将失败，并返回 `401 未授权`.

### 🦥 将 Hermes 与 Unsloth API 集成

Hermes 会将每轮聊天发送到已配置的推理提供方，并连接到 **兼容 OpenAI 的** 端点。你可以在安装期间或之后的设置向导中配置该提供方。

**1. 打开设置向导：**

{% columns %}
{% column %}

```bash
hermes setup
```

选择 **模型与提供方** 在“您想做什么？”菜单中，只配置推理端点，或者 **完整设置** 来逐步完成所有内容（TTS、工具、消息网关、代理设置）。
{% endcolumn %}

{% column %}

<figure><img src="/files/20c0847f2c95efbf12dd192e60073358e5c626b0" alt="" width="539"><figcaption></figcaption></figure>
{% endcolumn %}
{% endcolumns %}

**2. 当 Hermes 提示你选择推理提供方时，选择自定义的 OpenAI 兼容端点** 。

<figure><img src="/files/55bd2e2cc388c2e79277f009b1e32e6e7119c685" alt="" width="563"><figcaption></figcaption></figure>

**3. 按照 Hermes 的提示填写** ：

| 提示                   | 值                                                    |
| -------------------- | ---------------------------------------------------- |
| **API 基础 URL**       | `http://localhost:8888/v1` *（你的 Unsloth 端口 + `/v1`)* |
| **API 密钥**           | 你的 `sk-unsloth-…` 键                                  |
| **检测到的模型：… 使用此模型吗？** | `Y` *（Hermes 会通过 `GET /v1/models`)*                  |
| **上下文长度（以 token 计）** | *（留空以自动检测）*                                          |
| **显示名称**             | 任意你喜欢的名称，例如 `unsloth-api`                            |

Hermes 会根据 `/v1/models` 验证端点，并在继续前确认检测到的模型。

<figure><img src="/files/798728f0782b24a51720a0282ec31117bd055955" alt=""><figcaption></figcaption></figure>

**4. 对其余提示接受默认值** （TTS、工具、消息网关、代理设置）你之后都可以重新配置。Hermes 会将所有内容写入 `~/.hermes/config.yaml` 和 `~/.hermes/.env`.

<figure><img src="/files/a9c7dc16e1b551a3d5d18708d8c9173dbf1057b9" alt=""><figcaption></figcaption></figure>

**5. 启动 Hermes：**

```bash
hermes
```

启动横幅会在状态栏中显示你的 Unsloth 模型名称（例如 `unsloth/Qwen3.6-27B-GGUF`），然后提示符就可输入了。

<figure><img src="/files/0a57c1749d3ab6ec7d6153c364c30bb7651ce3e2" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
若之后只想重新配置模型，请运行 `hermes setup model`。若要直接编辑配置文件， `hermes config edit` 会打开 `~/.hermes/config.yaml` 在你的 `$EDITOR`.
{% endhint %}

### 可选：调整 Unsloth 服务器

`unsloth run` 会启动本地 API 服务器并加载一个模型供你的应用连接。你也可以在启动时自定义服务器行为。

```bash
# 提供 Hermes 服务（--disable-tools 会透传代理自身的工具）
unsloth run \\
  --model unsloth/gemma-4-26B-A4B-it-GGUF \\
  --disable-tools \\
  --reasoning off \\
  -p 8888
```

{% hint style="warning" %}
使用 `--disable-tools` 在驱动 Hermes（或任何带有自身工具的外部代理）时。默认情况下，Unsloth Studio 会运行其自身的服务器端工具，这会吞掉代理的工具调用，因此 Hermes 会回答，但不会执行其工具。 `--disable-tools` 会切换为透传模式，因此会使用 Hermes 自身的工具。
{% endhint %}

使用 `--reasoning off` 用于关闭思考，或者使用 `--reasoning on` 为支持推理的模型开启它。

```bash
# 在本地网络上暴露 API
unsloth run \\
  --model unsloth/gemma-4-26B-A4B-it-GGUF \\
  -H 0.0.0.0 \\
  -p 8888
```

这会在 `0.0.0.0:8888`上启动服务器，从而允许本地网络中的其他设备连接。 `-p` 会更改服务器运行的端口。如果你希望手机、笔记本或网络中的其他设备连接到 API 服务器，请使用以下方式启动它 `-H 0.0.0.0`.

某些应用仍可能针对单个请求覆盖生成设置。有关更高级的运行时配置，请参阅主 [API 调优](https://unsloth.ai/docs/basics/api#unsloth-run-command) 部分。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://unsloth.ai/docs/zh/ji-cheng/hermes-agent.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
