<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Hermes Desktop 桌面版快速上手指南]]></title><description><![CDATA[<p dir="auto">最近，Hermes 发布了官方桌面版程序。<br />
它让 Agent 对普通用户再一次降低了使用门槛——你不需要配置复杂的 Message Gateway，不需要摆弄命令行，在一个类似 ChatGPT 的 GUI 环境中就能使用 Hermes 的一切特性。</p>
<p dir="auto">本人也是最近高强度使用了两天桌面模式，我们一起来快速过一下Desktop版本的功能和配置技巧。</p>
<p dir="auto">注：基于本人常用环境。本教程的所有配置均来自于windows11 + wsl2。其他环境（linux、macOS）略有区别，可以自行判断或回帖咨询。<br />
注2：本介绍基于Hermes Agent v0.15.1，因为最近Desktop侧更新迅速，所以尽量使用最新版本。可能我这里是坑的问题，在新版本就已经不是问题了。<br />
注3：目前官方<strong>并没有单独的“桌面版客户端”</strong>，所有的desktop安装引导，最终安装的都是整套hermes agent。所以尽量选择升级hermes来体验客户端功能，如果盲目重复安装，可能带来一些意想不到的麻烦。</p>
<hr />
<h2>为什么要用 Desktop</h2>
<p dir="auto">简单粗暴的列一个对比表格：</p>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>CLI 版</th>
<th>Desktop 版</th>
</tr>
</thead>
<tbody>
<tr>
<td>终端操作，学习成本高</td>
<td>图形界面，开箱即用</td>
</tr>
<tr>
<td>配置靠改 YAML</td>
<td>配置靠点选</td>
</tr>
<tr>
<td>无法直观管理会话</td>
<td>可视化会话搜索 / 恢复 / 删除</td>
</tr>
<tr>
<td>技能 / 工具 / 记忆全靠命令</td>
<td>GUI 管理全部</td>
</tr>
<tr>
<td>不支持图形化调度</td>
<td>可视化 Cron 任务编辑器</td>
</tr>
</tbody>
</table>
<p dir="auto">再简单粗暴的上一个图片：<br />
<img src="https://upload.lcz.me/uploads/d6e70b1d-afcc-4204-9edb-2044daad4e15.jpeg" alt="5727bf1d-3ca8-45e5-a9dd-2202ef4d4e20-image.jpeg" class=" img-fluid img-markdown" /></p>
<p dir="auto">结果不言而喻，所有的命令、sessionID、都不需要进行记忆和查看，可以完全靠鼠标使用Hermes。</p>
<hr />
<h2>我已经正在使用 Hermes Agent，如何连接 Desktop？</h2>
<p dir="auto">你有两种姿势可以在已有的Hermes Agent中接入Desktop。</p>
<h3>直接启动桌面版</h3>
<p dir="auto">执行：</p>
<pre><code>hermes update
</code></pre>
<p dir="auto">将hermes agent更新到最新版本。然后直接在命令行中启动：</p>
<pre><code>hermes desktop
</code></pre>
<h3>远程链接hermes gateway</h3>
<p dir="auto"><strong>这是浪费我时间最多的点，官方没有任何文章阐明到底该如何链接远程的hermes服务。以下内容均为笔者通过读hermes源码复现的，所以可能并非最佳实践，仅供参考。</strong></p>
<p dir="auto"><img src="https://upload.lcz.me/uploads/6c92d026-f917-4e17-a285-a342914d00f9.jpeg" alt="81e964cc-19d2-4a50-9dc1-301d0bec2705-image.jpeg" class=" img-fluid img-markdown" /></p>
<p dir="auto">本质上，hermes desktop是通过hermes api来实现和hermes主进程沟通的。所以，如果想远程链接hermes，需要注意要启动hermes的API服务，要生成固定的token，以及要启动hermes的dashboard。</p>
<p dir="auto">1、打开hermes API Server<br />
你需要在.hermes/.env文件中添加如下内容：</p>
<pre><code>API_SERVER_ENABLED=true
API_SERVER_KEY=hermes-remote-8642
API_SERVER_HOST=0.0.0.0
</code></pre>
<p dir="auto">其中，API_SERVER_KEY是随便的，你只需要定义就好。配置后，重启系统/wsl。</p>
<p dir="auto">2、生成session token<br />
在命令行中执行以下命令：</p>
<pre><code>TOKEN=$(openssl rand -base64 32)
echo "HERMES_DASHBOARD_SESSION_TOKEN=$TOKEN" &gt;&gt; ~/.hermes/.env
chmod 600 ~/.hermes/.env
echo "$TOKEN"
</code></pre>
<p dir="auto">执行后，会在.env文件中多出一行token，这个token也会显示在命令行的结尾，复制出来备用。</p>
<p dir="auto">3、启动 hermes dashboard<br />
在命令行运行：</p>
<pre><code>hermes dashboard --tui --no-open --insecure --host 0.0.0.0 --port 9119
</code></pre>
<p dir="auto">其中，--tui是为了启动聊天功能，--no-open是不需要打开网页后台，--insecure是采用session_token作为验证方式。</p>
<p dir="auto">然后你就可以回到desktop，在设置中勾选Remote gateway，然后输入你的服务器端ip、端口（9119），session token就是刚才你生成的一串字符。</p>
<p dir="auto">点击test remote，如果报：connected to xxx，就是成功了，可以 save and reconnect。</p>
<hr />
<h2>Desktop 的独特功能</h2>
<ul>
<li>放开了部分配置，比如Memory文件长度等。</li>
<li>可以调整模型的thinking长度。</li>
<li>可视化手动指定定时任务</li>
<li>可视化定制Hermes的profile和子Agent人格</li>
<li>免配置的语音对聊</li>
</ul>
<p dir="auto">其他的dashboard包含的可视化功能就不赘述了。</p>
<h2>错误处理</h2>
<p dir="auto">目前桌面版还是属于比较初级的阶段，所以遇到错误的情况还是很多的。一般情况下都可以通过重启desktop来解决。以下列出几种比较棘手的错误：</p>
<p dir="auto"><strong>1、我错误的设置了remote URL，导致hermes desktop一直connecting卡死。</strong><br />
等30秒，会弹出一个修复界面。点击use local gateway就可以回到本地hermes环境。然后再进行配置。</p>
<p dir="auto"><strong>2、打开hermes desktop，强制我必须配置一个模型，而且没有deepseek等供应商。</strong><br />
通过命令行hermes model先配置一个模型，然后再打开hermes desktop就不会再有引导提示了。已经有人提了帖子，人为这个引导提示帮倒忙，希望官方去掉，目前还没有审核通过。</p>
<p dir="auto"><strong>3、部分配置是灰色、空白等</strong><br />
说明你/你的模型之前自定义过这部分配置，导致desktop无法识别其内容。如果没有特殊需求，不要进行改动。改了就回不到你的自定义设置了。</p>
<p dir="auto">其他问题欢迎大家回帖指正，交流。</p>
]]></description><link>https://lcz.me/topic/422/hermes-desktop-桌面版快速上手指南</link><generator>RSS for Node</generator><lastBuildDate>Sat, 06 Jun 2026 07:04:21 GMT</lastBuildDate><atom:link href="https://lcz.me/topic/422.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 04 Jun 2026 07:01:44 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Fri, 05 Jun 2026 09:41:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/wml-ai" aria-label="Profile: wml-ai">@<bdi>wml-ai</bdi></a> WLS2和win本来就可以分别配置2套hermes啊。为啥要搞个云端的呢?</p>
]]></description><link>https://lcz.me/post/5188</link><guid isPermaLink="true">https://lcz.me/post/5188</guid><dc:creator><![CDATA[linghu007]]></dc:creator><pubDate>Fri, 05 Jun 2026 09:41:26 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Fri, 05 Jun 2026 07:54:09 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/linghu007" aria-label="Profile: linghu007">@<bdi>linghu007</bdi></a> <a href="/post/5073">说</a>:</p>
<p dir="auto">AI让我别换。哈哈<br />
<img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/2695.png?v=d348ca29232" class="not-responsive emoji emoji-android emoji--staff_of_aesculapius" style="height:23px;width:auto;vertical-align:middle" title="⚕" alt="⚕" /> Hermes ───────────────────────────────────────────────────────────────────────────────────────────────────────────╮<br />
看完了，总结一下关键信息：</p>
<pre><code>Hermes Desktop 是什么
- 独立桌面 App，自带 GUI，不依赖命令行
- 内置了一个本地 TUI gateway（端口 9119），直接连到本地 Hermes 环境
- 卖点：免配置 Messaging Gateway、语音对聊、视觉化 Profile/Agent 人格、视觉化定时任务

几个需要注意的问题（文章里提到的）
- 部分自定义配置（WSL2 里手动改过的）在桌面版里会显示灰色/空白，且改了就回不去了
- Windows 10 上存在中文输入发不出去的问题（跟 TUI 服务有关）
- 打字偶尔会丢末尾几个字（升级有用但不能完全解决）
- 如果配置了错误的 remote URL 会卡在 connecting，需等待 30 秒修复界面

核心矛盾
桌面版走的是自己的 TUI gateway（9119），跟你 WSL2 里配的 systemd gateway 是两套体系。要换过去意味着：
- cronjob 需要迁移到桌面版新的 cron 系统
- Telegram Bot 等 messaging 配置需要重新接
- 各种脚本（监控/信号/推送）不一定能直接用

结论： 这篇文没改变我的判断。如果你现在跑得稳，没必要换——换过去工作量不小，而且还有 bug。如果想尝鲜体验 GUI，可以在另一台机器上装，WSL2 继续当主力。
</code></pre>
</blockquote>
<p dir="auto">这样的话是不是可以配置两套gateway，然后分别运行云端和本地两个模型，分别和两个messenger通信？</p>
]]></description><link>https://lcz.me/post/5176</link><guid isPermaLink="true">https://lcz.me/post/5176</guid><dc:creator><![CDATA[wml-ai]]></dc:creator><pubDate>Fri, 05 Jun 2026 07:54:09 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Fri, 05 Jun 2026 07:30:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/5ccccc" aria-label="Profile: 5ccccc">@<bdi>5ccccc</bdi></a> hermes agent这个项目其实一直commit都很多，之前我都是忽略不管的，但是现在用desktop，是不得不更新XD，所以如果能忍的话，用hermes --tui也不妨是个选择。tui比cli有更好的鼠标支持和界面。唯独就是多媒体功能欠缺</p>
]]></description><link>https://lcz.me/post/5169</link><guid isPermaLink="true">https://lcz.me/post/5169</guid><dc:creator><![CDATA[kop wang]]></dc:creator><pubDate>Fri, 05 Jun 2026 07:30:20 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Fri, 05 Jun 2026 07:28:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kop-wang" aria-label="Profile: kop-wang">@<bdi>kop-wang</bdi></a>  现在这bug也太多了，我每次刚更完，又有更新，感觉我可以先用第三方的GUI了</p>
]]></description><link>https://lcz.me/post/5167</link><guid isPermaLink="true">https://lcz.me/post/5167</guid><dc:creator><![CDATA[5ccccc]]></dc:creator><pubDate>Fri, 05 Jun 2026 07:28:41 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Fri, 05 Jun 2026 02:56:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/laobenxiong" aria-label="Profile: laobenxiong">@<bdi>laobenxiong</bdi></a></p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/5ccccc" aria-label="Profile: 5ccccc">@<bdi>5ccccc</bdi></a></p>
<p dir="auto">确实，我已经双边都升到最新了，但依然还是会出现缺字的情况，我已经大概排查了，是desktop输入框对于需要输入法的语言的输入判断问题。</p>
<p dir="auto">目前最新的版本，如果你一口气输入中文，回车发送是无效的，他会认为你没有输入任何文字。必须输入一个空格或者什么才能生效。</p>
<p dir="auto">目前github上已经有对应问题的帖子了：<a href="https://github.com/NousResearch/hermes-agent/issues/37483" rel="nofollow ugc">https://github.com/NousResearch/hermes-agent/issues/37483</a></p>
<p dir="auto">对应的修复代码也已经被PR，目前还未全数通过，静等就好。</p>
]]></description><link>https://lcz.me/post/5085</link><guid isPermaLink="true">https://lcz.me/post/5085</guid><dc:creator><![CDATA[kop wang]]></dc:creator><pubDate>Fri, 05 Jun 2026 02:56:45 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Fri, 05 Jun 2026 02:39:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kop-wang" aria-label="Profile: kop-wang">@<bdi>kop-wang</bdi></a> 主要我之前迁移过一次从WIN11迁移到WLS2，确实麻烦。而且很多配置在WLS2中是单独设置的，如果迁移到WIN11，使用桌面版确实可能要调试一番。所以它也是比较了解我的系统状况，给的建议我也要参考。</p>
]]></description><link>https://lcz.me/post/5079</link><guid isPermaLink="true">https://lcz.me/post/5079</guid><dc:creator><![CDATA[linghu007]]></dc:creator><pubDate>Fri, 05 Jun 2026 02:39:25 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Fri, 05 Jun 2026 02:27:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/linghu007" aria-label="Profile: linghu007">@<bdi>linghu007</bdi></a> 这里面有很典型的幻觉，比如他没分清desktop和hermes服务之间的关系。如果你是在你目前的本机安装的hermes，那desktop的“安装”是无感的，你hermes update之后，自然可以使用desktop。</p>
]]></description><link>https://lcz.me/post/5075</link><guid isPermaLink="true">https://lcz.me/post/5075</guid><dc:creator><![CDATA[kop wang]]></dc:creator><pubDate>Fri, 05 Jun 2026 02:27:48 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Fri, 05 Jun 2026 02:25:35 GMT]]></title><description><![CDATA[<p dir="auto">AI让我别换。哈哈<br />
<img src="https://lcz.me/assets/plugins/nodebb-plugin-emoji/emoji/android/2695.png?v=d348ca29232" class="not-responsive emoji emoji-android emoji--staff_of_aesculapius" style="height:23px;width:auto;vertical-align:middle" title="⚕" alt="⚕" /> Hermes ───────────────────────────────────────────────────────────────────────────────────────────────────────────╮<br />
看完了，总结一下关键信息：</p>
<pre><code>Hermes Desktop 是什么
- 独立桌面 App，自带 GUI，不依赖命令行
- 内置了一个本地 TUI gateway（端口 9119），直接连到本地 Hermes 环境
- 卖点：免配置 Messaging Gateway、语音对聊、视觉化 Profile/Agent 人格、视觉化定时任务

几个需要注意的问题（文章里提到的）
- 部分自定义配置（WSL2 里手动改过的）在桌面版里会显示灰色/空白，且改了就回不去了
- Windows 10 上存在中文输入发不出去的问题（跟 TUI 服务有关）
- 打字偶尔会丢末尾几个字（升级有用但不能完全解决）
- 如果配置了错误的 remote URL 会卡在 connecting，需等待 30 秒修复界面

核心矛盾
桌面版走的是自己的 TUI gateway（9119），跟你 WSL2 里配的 systemd gateway 是两套体系。要换过去意味着：
- cronjob 需要迁移到桌面版新的 cron 系统
- Telegram Bot 等 messaging 配置需要重新接
- 各种脚本（监控/信号/推送）不一定能直接用

结论： 这篇文没改变我的判断。如果你现在跑得稳，没必要换——换过去工作量不小，而且还有 bug。如果想尝鲜体验 GUI，可以在另一台机器上装，WSL2 继续当主力跑。
</code></pre>
]]></description><link>https://lcz.me/post/5073</link><guid isPermaLink="true">https://lcz.me/post/5073</guid><dc:creator><![CDATA[linghu007]]></dc:creator><pubDate>Fri, 05 Jun 2026 02:25:35 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Fri, 05 Jun 2026 02:19:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/laobenxiong" aria-label="Profile: laobenxiong">@<bdi>laobenxiong</bdi></a>  更新到最新了，但是有时候还是会出现这个问题</p>
]]></description><link>https://lcz.me/post/5071</link><guid isPermaLink="true">https://lcz.me/post/5071</guid><dc:creator><![CDATA[5ccccc]]></dc:creator><pubDate>Fri, 05 Jun 2026 02:19:16 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Fri, 05 Jun 2026 02:14:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/5ccccc" aria-label="Profile: 5ccccc">@<bdi>5ccccc</bdi></a> 打开 cmd 敲 hermes update 先升一下级试试? 我早上升级到了 (+32) <img src="https://upload.lcz.me/uploads/49646d0e-8f1e-426e-99d7-b820acbff166.jpeg" alt="8df55dc5-9f45-4c65-b65a-4cf2c60f8aa1-image.jpeg" class=" img-fluid img-markdown" /> 目前好像没碰到这个问题.</p>
]]></description><link>https://lcz.me/post/5068</link><guid isPermaLink="true">https://lcz.me/post/5068</guid><dc:creator><![CDATA[laobenxiong]]></dc:creator><pubDate>Fri, 05 Jun 2026 02:14:00 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Thu, 04 Jun 2026 15:49:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/%E7%99%BE%E5%B7%9D%E5%90%9E%E5%B1%B1%E6%B5%B7" aria-label="Profile: 百川吞山海">@<bdi>百川吞山海</bdi></a>  我也发现有这问题</p>
]]></description><link>https://lcz.me/post/5032</link><guid isPermaLink="true">https://lcz.me/post/5032</guid><dc:creator><![CDATA[5ccccc]]></dc:creator><pubDate>Thu, 04 Jun 2026 15:49:10 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Thu, 04 Jun 2026 14:43:17 GMT]]></title><description><![CDATA[<p dir="auto">桌面版hermes我打了个一排字（调用deepseek 里面是有钱的），总是会少最后面几个字，是的网原因还是硬件（除了4060ti，其余都是洋垃圾），还是软件。有谁出现过这种情况不。</p>
]]></description><link>https://lcz.me/post/5025</link><guid isPermaLink="true">https://lcz.me/post/5025</guid><dc:creator><![CDATA[百川吞山海]]></dc:creator><pubDate>Thu, 04 Jun 2026 14:43:17 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Thu, 04 Jun 2026 13:48:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/tide" aria-label="Profile: Tide">@<bdi>Tide</bdi></a> 对话发不出去应该是 tui服务没能正常启动，试试hermes --tui是否能正常运行</p>
]]></description><link>https://lcz.me/post/5017</link><guid isPermaLink="true">https://lcz.me/post/5017</guid><dc:creator><![CDATA[kop wang]]></dc:creator><pubDate>Thu, 04 Jun 2026 13:48:30 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Thu, 04 Jun 2026 12:45:06 GMT]]></title><description><![CDATA[<p dir="auto">windows10pro，安装倒是挺快的。但死活设置不了中文，对话框下面显示本地模型正确，对话内容却发送不出去。AI换了一个又一个，没一个AI能解决。。。脑壳疼呀。等我换台电脑再试下。。。</p>
<p dir="auto">skin: default<br />
language: zh-CN<br />
tui_status_indicator: kaomoji<br />
user_message_preview:<br />
first_lines: 2<br />
last_lines: 2</p>
<p dir="auto"><img src="https://upload.lcz.me/uploads/4c0fd7c8-7fb4-4675-bed5-c2a169ec7053.PNG" alt="捕获.PNG" class=" img-fluid img-markdown" /></p>
]]></description><link>https://lcz.me/post/5003</link><guid isPermaLink="true">https://lcz.me/post/5003</guid><dc:creator><![CDATA[Tide]]></dc:creator><pubDate>Thu, 04 Jun 2026 12:45:06 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Thu, 04 Jun 2026 09:59:01 GMT]]></title><description><![CDATA[<p dir="auto">喊 deepseek-v4-pro 给 hermes 画了一个图, 和它来来回回讨论/修改了半天, 也不知对错:<br />
<img src="https://upload.lcz.me/uploads/0d7a2065-0495-4677-946a-7c3a9ecdaf08.jpeg" alt="711f9c1f-fde0-458f-8b60-45411958db1c-image.jpeg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://lcz.me/post/4988</link><guid isPermaLink="true">https://lcz.me/post/4988</guid><dc:creator><![CDATA[laobenxiong]]></dc:creator><pubDate>Thu, 04 Jun 2026 09:59:01 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Thu, 04 Jun 2026 09:58:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/laobenxiong" aria-label="Profile: laobenxiong">@<bdi>laobenxiong</bdi></a> 以后翻译成汉语，不要发这么大一段AI内容。</p>
]]></description><link>https://lcz.me/post/4987</link><guid isPermaLink="true">https://lcz.me/post/4987</guid><dc:creator><![CDATA[terry]]></dc:creator><pubDate>Thu, 04 Jun 2026 09:58:43 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Thu, 04 Jun 2026 09:19:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kop-wang" aria-label="Profile: kop-wang">@<bdi>kop-wang</bdi></a> 我试了一下, 好像确实是不需要起 8642 这个端口, 就可以连上.  所以, 目前理解, desktop app 使用的是 dashboard 自己使用的 tui-gateway, 而不是那个 api-server (msg-gateway的一部分).</p>
]]></description><link>https://lcz.me/post/4984</link><guid isPermaLink="true">https://lcz.me/post/4984</guid><dc:creator><![CDATA[laobenxiong]]></dc:creator><pubDate>Thu, 04 Jun 2026 09:19:14 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Thu, 04 Jun 2026 08:34:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kop-wang" aria-label="Profile: kop-wang">@<bdi>kop-wang</bdi></a> 好的, 多谢!</p>
]]></description><link>https://lcz.me/post/4979</link><guid isPermaLink="true">https://lcz.me/post/4979</guid><dc:creator><![CDATA[laobenxiong]]></dc:creator><pubDate>Thu, 04 Jun 2026 08:34:40 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Thu, 04 Jun 2026 08:34:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/applejuice" aria-label="Profile: applejuice">@<bdi>applejuice</bdi></a> 还没有，主要是没用过第三方的webui，hermes之前也是有网页端的，对应功能是dashboard，但是那个更偏向于管理后台，所以美观度和友好度不如第三方webui，有空我会对比下看看。</p>
]]></description><link>https://lcz.me/post/4978</link><guid isPermaLink="true">https://lcz.me/post/4978</guid><dc:creator><![CDATA[kop wang]]></dc:creator><pubDate>Thu, 04 Jun 2026 08:34:14 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Thu, 04 Jun 2026 08:32:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/laobenxiong" aria-label="Profile: laobenxiong">@<bdi>laobenxiong</bdi></a> 我重新检查了一下，好像没有关于8642端口的内容。AI确实会回复类似8642端口，8642对应的是Hermes 的 API服务端口，比如类似<a href="http://xxx:8642/v1/model%EF%BC%8C%E4%BC%9A%E5%88%97%E5%87%BA%E4%BD%A0Hermes" rel="nofollow ugc">http://xxx:8642/v1/model，会列出你Hermes</a> Agent的接入模型。但是我测试，desktop侧其实并不需要真正连接这个API，他主要走的其实是dashboard服务，也就是9119的接口流程。</p>
<p dir="auto">具体8642在desktop侧起什么作用，因为要抢时间，所以没仔细研读hermes源码，如果有发现我会再修订主帖。</p>
]]></description><link>https://lcz.me/post/4977</link><guid isPermaLink="true">https://lcz.me/post/4977</guid><dc:creator><![CDATA[kop wang]]></dc:creator><pubDate>Thu, 04 Jun 2026 08:32:19 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Thu, 04 Jun 2026 08:26:47 GMT]]></title><description><![CDATA[<p dir="auto">有对比WEBUI 吗？<br />
我现在用webui 用得很开心<br />
我看到这个的界面好像比webui更简单</p>
<p dir="auto">重点是webui 还可以手机电脑同步<br />
配合fold7 根本就是我想要的办公效果</p>
]]></description><link>https://lcz.me/post/4975</link><guid isPermaLink="true">https://lcz.me/post/4975</guid><dc:creator><![CDATA[applejuice]]></dc:creator><pubDate>Thu, 04 Jun 2026 08:26:47 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Thu, 04 Jun 2026 08:26:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kop-wang" aria-label="Profile: kop-wang">@<bdi>kop-wang</bdi></a> 帖子中说要起这个服务, 即8642端口要起来. 可是在desktop 的配置中只 用了 9119. 所以我的问题是, 起这个 8642 是怎么起作用的.</p>
]]></description><link>https://lcz.me/post/4974</link><guid isPermaLink="true">https://lcz.me/post/4974</guid><dc:creator><![CDATA[laobenxiong]]></dc:creator><pubDate>Thu, 04 Jun 2026 08:26:17 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Thu, 04 Jun 2026 08:22:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/laobenxiong" aria-label="Profile: laobenxiong">@<bdi>laobenxiong</bdi></a> API_SERVER_KEY=hermes-remote-8642<br />
这只是Hermes Agent对于API server key的配置，没有实际意义，可以随便起名字。</p>
]]></description><link>https://lcz.me/post/4973</link><guid isPermaLink="true">https://lcz.me/post/4973</guid><dc:creator><![CDATA[kop wang]]></dc:creator><pubDate>Thu, 04 Jun 2026 08:22:05 GMT</pubDate></item><item><title><![CDATA[Reply to Hermes Desktop 桌面版快速上手指南 on Thu, 04 Jun 2026 08:18:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kop-wang" aria-label="Profile: kop-wang">@<bdi>kop-wang</bdi></a> 非常好. 感谢... 这里有两个 port, 9119 和 8642, desktop 好像只知道第一个, 第二个起什么作用, 怎么起作用? 另外, 好像 desktop 的字体大小还不能调整...</p>
]]></description><link>https://lcz.me/post/4972</link><guid isPermaLink="true">https://lcz.me/post/4972</guid><dc:creator><![CDATA[laobenxiong]]></dc:creator><pubDate>Thu, 04 Jun 2026 08:18:15 GMT</pubDate></item></channel></rss>