Claude Code 差在哪

Hermes 是谁?跟 Claude Code 差在哪
用过 Claude Code 或 Cursor 的话,Hermes 上手几乎没成本。它就是一个跑在终端里的 AI 代理,但多了一层派发能力。

最直观的对比:

Claude Code / Cursor:你打开一个 tab,AI 在里面干活,干完你接着提需求。
Hermes:你打开一个 tab,AI 叫出另外几个 tab 一起干。Hermes 负责拆任务、传上下文、收结果。
Hermes 比单 Agent 工具多出来的核心能力就三件:

多 Provider 路由。一条命令切 OpenAI / Anthropic / Google / xAI 后端,业务代码不用动。
多 Agent 派发。delegate_task() 拉起子 Agent,每个子 Agent 独立上下文,互不污染。
Skills 系统。把写公众号、做调研、出配图 prompt 这些套路写成 SKILL.md,Agent 加载就会用。
剩下的 toolsets(白名单授权)、profiles(多场景隔离)、depends_on(DAG 调度)都是配套的工程能力。

只想跑单 Agent 串行活,Claude Code 够用。但凡你想让多个步骤并发、让上下文拆分不互相污染、让工具按 Agent 最小授权,Hermes 的多 Agent 模型就是为这些场景做的。

二、10 分钟起一个 3 Agent 流水线
不再绕弯子。咱们直接上手。

2.1 装环境
# PyPI 一行装(推荐新手)
pip install hermes-agent

# 启动 REPL
hermes chat

# 切到你想用的模型
hermes config set provider anthropic
hermes config set model claude-sonnet-4
装完跑 hermes tools 看下当前账号可用的工具集。默认会有 browser / file / terminal / web / image_gen / delegation / search 这几类。

2.2 写一份 YAML 配置
Hermes 的精髓在 YAML 流水线配置文件。把 Agent 当成函数声明,依赖关系写在 depends_on 里,Hermes 自己按 DAG 排调度。

下面这份配置就是公众号写作流水线的最小可运行版本。5 个 Agent、5 个文件产物、链式 DAG 调度。

# =========================================================
# Hermes 多 Agent 流水线:公众号写作 5 步曲
# 跑法:hermes run --config hermes_agents.yaml --topic "Hermes 入门"
# =========================================================
agents:
topic_scout: # 第 1 步:选题侦察兵
model: anthropic/claude-sonnet-4
toolsets: [web, search] # 只给联网 + 搜索,文件操作不要开
role: leaf # 关键:声明 leaf,禁止递归 spawn

researcher: # 第 2 步:资料研究员
model: anthropic/claude-sonnet-4
toolsets: [file, web] # file 用来读 01-topics.md、写出 02-research.md
role: leaf

writer: # 第 3 步:执笔写手
model: anthropic/claude-sonnet-4
toolsets: [file, skills] # skills 让它能加载「公众号写作」技能
role: leaf

editor: # 第 4 步:审校编辑
model: anthropic/claude-sonnet-4
toolsets: [file] # 最小集:只让它改文件
role: leaf

illustrator: # 第 5 步:配图提示词
model: anthropic/claude-sonnet-4
toolsets: [skills] # 用 image_gen 技能生成配图 prompt
role: leaf

pipeline:
- call: topic_scout # 入口节点,无需 depends_on
goal: "为「{TOPIC}」出 3 个公众号选题候选,输出到 01-topics.md"

- call: researcher
goal: "基于 01-topics.md 整理 6 section 研究资料包到 02-research.md"
depends_on: topic_scout

- call: writer
goal: "据 02-research.md 起草 2500-3000 字实操教程到 03-draft.md"
depends_on: researcher

- call: editor
goal: "审校 03-draft.md,输出三栏 Markdown 表格存到 04-review.md"
depends_on: writer

- call: illustrator
goal: "为 03-draft.md 配 2-3 张图,给出图名+节点文字+用途"
depends_on: editor
这里有几个细节需要注意一下:

role: leaf 必须显式写。不写默认是 general,子 Agent 自己会 spawn 孙子 Agent,token 几分钟烧光。
toolsets 走白名单,能少一个就少一个。Editor 只给 file,连 web 都不开。
depends_on 替代手写串行,你只声明依赖,Hermes 自己排调度。
2.3 嫌 YAML 不够灵活?上 Python
YAML 适合配置固定的流水线。想动态生成任务、加条件分支、用 Python 拼装任务列表,就走 delegate_task API。

下面这段 Python 是同样的 5 步流水线,能看出它和 YAML 的对应关系。YAML 是声明式,Python 是命令式,干的事一样。

"""
Hermes 多 Agent 流水线 —— Python 入口
跑法:python run_pipeline.py
依赖:pip install hermes-agent
"""
from hermes_tools import delegate_task # Hermes 官方派发 API

# ----------------------------------------------------------------
# 1) 定义 5 个子 Agent 任务(顺序由 depends_on 字段控制)
# ----------------------------------------------------------------
tasks = [
{
"goal": "你是 topic_scout。用户主题:{TOPIC}。请用 web+search 工具调研,"
"输出 3 个公众号选题候选到 01-topics.md。",
"toolsets": ["web", "search"],
"role": "leaf", # 关键:明确 leaf,禁止递归
},
{
"goal": "你是 researcher。据 01-topics.md 整理 6 section 资料包"
"(核心概念/代码/坑点/最佳实践/参考/配图)写到 02-research.md。",
"toolsets": ["file", "web"],
"role": "leaf",
"depends_on": ["topic_scout"],
},
{
"goal": "你是 writer。据 02-research.md 起草 2800 字实操教程,"
"输出到 03-draft.md,必须有 YAML + Python 两段代码。",
"toolsets": ["file", "skills"],
"role": "leaf",
"depends_on": ["researcher"],
},
{
"goal": "你是 editor。审校 03-draft.md,输出三栏 Markdown 表格"
"(原文 / 问题 / 建议)到 04-review.md。",
"toolsets": ["file"],
"role": "leaf",
"depends_on": ["writer"],
},
{
"goal": "你是 illustrator。为 03-draft.md 配 2-3 张图,"
"给出图名+用途+节点文字到 05-illustrations.md。",
"toolsets": ["skills"],
"role": "leaf",
"depends_on": ["editor"],
},
]

# ----------------------------------------------------------------
# 2) 一次性派发:Hermes 默认就是批派发,主 Agent 不阻塞
# Hermes 会按 tasks 里的 depends_on 字段自动排 DAG,
# 没有依赖的同级任务自动并发跑。
# ----------------------------------------------------------------
results = delegate_task(
tasks=tasks,
shared_context={"TOPIC": "Hermes Agent 入门:多 Agent 协作"},
)

# ----------------------------------------------------------------
# 3) 打印每个子 Agent 的 summary(调试用)
# ----------------------------------------------------------------
for r in results:
print(f"[{r['agent']}] -> {r['summary']}")
注意我没像一些老博客那样写 parallel=True。Hermes 的 delegate_task(tasks=[...]) 默认就是批派发,依赖关系由 depends_on 字段决定。它会自动识别哪些任务没依赖、把没依赖的扔到并发队列里跑。parallel=True 是早期接口的遗留,新版 API 不用管。

多 Provider 路由。一条命令切 OpenAI / Anthropic / Google / xAI 后端,业务代码不用动。
多 Agent 派发。delegate_task() 拉起子 Agent,每个子 Agent 独立上下文,互不污染。
Skills 系统。把写公众号、做调研、出配图 prompt 这些套路写成 SKILL.md,Agent 加载就会用。
剩下的 toolsets(白名单授权)、profiles(多场景隔离)、depends_on(DAG 调度)都是配套的工程能力。

只想跑单 Agent 串行活,Claude Code 够用。但凡你想让多个步骤并发、让上下文拆分不互相污染、让工具按 Agent 最小授权,Hermes 的多 Agent 模型就是为这些场景做的。

二、10 分钟起一个 3 Agent 流水线
不再绕弯子。咱们直接上手。

2.1 装环境
# PyPI 一行装(推荐新手)
pip install hermes-agent

# 启动 REPL
hermes chat

# 切到你想用的模型
hermes config set provider anthropic
hermes config set model claude-sonnet-4
装完跑 hermes tools 看下当前账号可用的工具集。默认会有 browser / file / terminal / web / image_gen / delegation / search 这几类。

2.2 写一份 YAML 配置
Hermes 的精髓在 YAML 流水线配置文件。把 Agent 当成函数声明,依赖关系写在 depends_on 里,Hermes 自己按 DAG 排调度。

下面这份配置就是公众号写作流水线的最小可运行版本。5 个 Agent、5 个文件产物、链式 DAG 调度。

# =========================================================
# Hermes 多 Agent 流水线:公众号写作 5 步曲
# 跑法:hermes run --config hermes_agents.yaml --topic "Hermes 入门"
# =========================================================
agents:
topic_scout: # 第 1 步:选题侦察兵
model: anthropic/claude-sonnet-4
toolsets: [web, search] # 只给联网 + 搜索,文件操作不要开
role: leaf # 关键:声明 leaf,禁止递归 spawn

researcher: # 第 2 步:资料研究员
model: anthropic/claude-sonnet-4
toolsets: [file, web] # file 用来读 01-topics.md、写出 02-research.md
role: leaf

writer: # 第 3 步:执笔写手
model: anthropic/claude-sonnet-4
toolsets: [file, skills] # skills 让它能加载「公众号写作」技能
role: leaf

editor: # 第 4 步:审校编辑
model: anthropic/claude-sonnet-4
toolsets: [file] # 最小集:只让它改文件
role: leaf

illustrator: # 第 5 步:配图提示词
model: anthropic/claude-sonnet-4
toolsets: [skills] # 用 image_gen 技能生成配图 prompt
role: leaf

pipeline:
- call: topic_scout # 入口节点,无需 depends_on
goal: "为「{TOPIC}」出 3 个公众号选题候选,输出到 01-topics.md"

- call: researcher
goal: "基于 01-topics.md 整理 6 section 研究资料包到 02-research.md"
depends_on: topic_scout

- call: writer
goal: "据 02-research.md 起草 2500-3000 字实操教程到 03-draft.md"
depends_on: researcher

- call: editor
goal: "审校 03-draft.md,输出三栏 Markdown 表格存到 04-review.md"
depends_on: writer

- call: illustrator
goal: "为 03-draft.md 配 2-3 张图,给出图名+节点文字+用途"
depends_on: editor
这里有几个细节需要注意一下:

role: leaf 必须显式写。不写默认是 general,子 Agent 自己会 spawn 孙子 Agent,token 几分钟烧光。
toolsets 走白名单,能少一个就少一个。Editor 只给 file,连 web 都不开。
depends_on 替代手写串行,你只声明依赖,Hermes 自己排调度。
2.3 嫌 YAML 不够灵活?上 Python
YAML 适合配置固定的流水线。想动态生成任务、加条件分支、用 Python 拼装任务列表,就走 delegate_task API。

下面这段 Python 是同样的 5 步流水线,能看出它和 YAML 的对应关系。YAML 是声明式,Python 是命令式,干的事一样。

"""
Hermes 多 Agent 流水线 —— Python 入口
跑法:python run_pipeline.py
依赖:pip install hermes-agent
"""
from hermes_tools import delegate_task # Hermes 官方派发 API

# ----------------------------------------------------------------
# 1) 定义 5 个子 Agent 任务(顺序由 depends_on 字段控制)
# ----------------------------------------------------------------
tasks = [
{
"goal": "你是 topic_scout。用户主题:{TOPIC}。请用 web+search 工具调研,"
"输出 3 个公众号选题候选到 01-topics.md。",
"toolsets": ["web", "search"],
"role": "leaf", # 关键:明确 leaf,禁止递归
},
{
"goal": "你是 researcher。据 01-topics.md 整理 6 section 资料包"
"(核心概念/代码/坑点/最佳实践/参考/配图)写到 02-research.md。",
"toolsets": ["file", "web"],
"role": "leaf",
"depends_on": ["topic_scout"],
},
{
"goal": "你是 writer。据 02-research.md 起草 2800 字实操教程,"
"输出到 03-draft.md,必须有 YAML + Python 两段代码。",
"toolsets": ["file", "skills"],
"role": "leaf",
"depends_on": ["researcher"],
},
{
"goal": "你是 editor。审校 03-draft.md,输出三栏 Markdown 表格"
"(原文 / 问题 / 建议)到 04-review.md。",
"toolsets": ["file"],
"role": "leaf",
"depends_on": ["writer"],
},
{
"goal": "你是 illustrator。为 03-draft.md 配 2-3 张图,"
"给出图名+用途+节点文字到 05-illustrations.md。",
"toolsets": ["skills"],
"role": "leaf",
"depends_on": ["editor"],
},
]

# ----------------------------------------------------------------
# 2) 一次性派发:Hermes 默认就是批派发,主 Agent 不阻塞
# Hermes 会按 tasks 里的 depends_on 字段自动排 DAG,
# 没有依赖的同级任务自动并发跑。
# ----------------------------------------------------------------
results = delegate_task(
tasks=tasks,
shared_context={"TOPIC": "Hermes Agent 入门:多 Agent 协作"},
)

 

多 Provider 路由。一条命令切 OpenAI / Anthropic / Google / xAI 后端,业务代码不用动。
多 Agent 派发。delegate_task() 拉起子 Agent,每个子 Agent 独立上下文,互不污染。
Skills 系统。把写公众号、做调研、出配图 prompt 这些套路写成 SKILL.md,Agent 加载就会用。
剩下的 toolsets(白名单授权)、profiles(多场景隔离)、depends_on(DAG 调度)都是配套的工程能力。

只想跑单 Agent 串行活,Claude Code 够用。但凡你想让多个步骤并发、让上下文拆分不互相污染、让工具按 Agent 最小授权,Hermes 的多 Agent 模型就是为这些场景做的。

二、10 分钟起一个 3 Agent 流水线
不再绕弯子。咱们直接上手。

2.1 装环境
# PyPI 一行装(推荐新手)
pip install hermes-agent

# 启动 REPL
hermes chat

# 切到你想用的模型
hermes config set provider anthropic
hermes config set model claude-sonnet-4
装完跑 hermes tools 看下当前账号可用的工具集。默认会有 browser / file / terminal / web / image_gen / delegation / search 这几类。

2.2 写一份 YAML 配置
Hermes 的精髓在 YAML 流水线配置文件。把 Agent 当成函数声明,依赖关系写在 depends_on 里,Hermes 自己按 DAG 排调度。

下面这份配置就是公众号写作流水线的最小可运行版本。5 个 Agent、5 个文件产物、链式 DAG 调度。

# =========================================================
# Hermes 多 Agent 流水线:公众号写作 5 步曲
# 跑法:hermes run --config hermes_agents.yaml --topic "Hermes 入门"
# =========================================================
agents:
topic_scout: # 第 1 步:选题侦察兵
model: anthropic/claude-sonnet-4
toolsets: [web, search] # 只给联网 + 搜索,文件操作不要开
role: leaf # 关键:声明 leaf,禁止递归 spawn

researcher: # 第 2 步:资料研究员
model: anthropic/claude-sonnet-4
toolsets: [file, web] # file 用来读 01-topics.md、写出 02-research.md
role: leaf

writer: # 第 3 步:执笔写手
model: anthropic/claude-sonnet-4
toolsets: [file, skills] # skills 让它能加载「公众号写作」技能
role: leaf

editor: # 第 4 步:审校编辑
model: anthropic/claude-sonnet-4
toolsets: [file] # 最小集:只让它改文件
role: leaf

illustrator: # 第 5 步:配图提示词
model: anthropic/claude-sonnet-4
toolsets: [skills] # 用 image_gen 技能生成配图 prompt
role: leaf

pipeline:
- call: topic_scout # 入口节点,无需 depends_on
goal: "为「{TOPIC}」出 3 个公众号选题候选,输出到 01-topics.md"

- call: researcher
goal: "基于 01-topics.md 整理 6 section 研究资料包到 02-research.md"
depends_on: topic_scout

- call: writer
goal: "据 02-research.md 起草 2500-3000 字实操教程到 03-draft.md"
depends_on: researcher

- call: editor
goal: "审校 03-draft.md,输出三栏 Markdown 表格存到 04-review.md"
depends_on: writer

- call: illustrator
goal: "为 03-draft.md 配 2-3 张图,给出图名+节点文字+用途"
depends_on: editor
这里有几个细节需要注意一下:

role: leaf 必须显式写。不写默认是 general,子 Agent 自己会 spawn 孙子 Agent,token 几分钟烧光。
toolsets 走白名单,能少一个就少一个。Editor 只给 file,连 web 都不开。
depends_on 替代手写串行,你只声明依赖,Hermes 自己排调度。
2.3 嫌 YAML 不够灵活?上 Python
YAML 适合配置固定的流水线。想动态生成任务、加条件分支、用 Python 拼装任务列表,就走 delegate_task API。

下面这段 Python 是同样的 5 步流水线,能看出它和 YAML 的对应关系。YAML 是声明式,Python 是命令式,干的事一样。

"""
Hermes 多 Agent 流水线 —— Python 入口
跑法:python run_pipeline.py
依赖:pip install hermes-agent
"""
from hermes_tools import delegate_task # Hermes 官方派发 API

# ----------------------------------------------------------------
# 1) 定义 5 个子 Agent 任务(顺序由 depends_on 字段控制)
# ----------------------------------------------------------------
tasks = [
{
"goal": "你是 topic_scout。用户主题:{TOPIC}。请用 web+search 工具调研,"
"输出 3 个公众号选题候选到 01-topics.md。",
"toolsets": ["web", "search"],
"role": "leaf", # 关键:明确 leaf,禁止递归
},
{
"goal": "你是 researcher。据 01-topics.md 整理 6 section 资料包"
"(核心概念/代码/坑点/最佳实践/参考/配图)写到 02-research.md。",
"toolsets": ["file", "web"],
"role": "leaf",
"depends_on": ["topic_scout"],
},
{
"goal": "你是 writer。据 02-research.md 起草 2800 字实操教程,"
"输出到 03-draft.md,必须有 YAML + Python 两段代码。",
"toolsets": ["file", "skills"],
"role": "leaf",
"depends_on": ["researcher"],
},
{
"goal": "你是 editor。审校 03-draft.md,输出三栏 Markdown 表格"
"(原文 / 问题 / 建议)到 04-review.md。",
"toolsets": ["file"],
"role": "leaf",
"depends_on": ["writer"],
},
{
"goal": "你是 illustrator。为 03-draft.md 配 2-3 张图,"
"给出图名+用途+节点文字到 05-illustrations.md。",
"toolsets": ["skills"],
"role": "leaf",
"depends_on": ["editor"],
},
]

# ----------------------------------------------------------------
# 2) 一次性派发:Hermes 默认就是批派发,主 Agent 不阻塞
# Hermes 会按 tasks 里的 depends_on 字段自动排 DAG,
# 没有依赖的同级任务自动并发跑。
# ----------------------------------------------------------------
results = delegate_task(
tasks=tasks,
shared_context={"TOPIC": "Hermes Agent 入门:多 Agent 协作"},
)

 

多 Provider 路由。一条命令切 OpenAI / Anthropic / Google / xAI 后端,业务代码不用动。
多 Agent 派发。delegate_task() 拉起子 Agent,每个子 Agent 独立上下文,互不污染。
Skills 系统。把写公众号、做调研、出配图 prompt 这些套路写成 SKILL.md,Agent 加载就会用。
剩下的 toolsets(白名单授权)、profiles(多场景隔离)、depends_on(DAG 调度)都是配套的工程能力。

只想跑单 Agent 串行活,Claude Code 够用。但凡你想让多个步骤并发、让上下文拆分不互相污染、让工具按 Agent 最小授权,Hermes 的多 Agent 模型就是为这些场景做的。

二、10 分钟起一个 3 Agent 流水线
不再绕弯子。咱们直接上手。

2.1 装环境
# PyPI 一行装(推荐新手)
pip install hermes-agent

# 启动 REPL
hermes chat

# 切到你想用的模型
hermes config set provider anthropic
hermes config set model claude-sonnet-4
装完跑 hermes tools 看下当前账号可用的工具集。默认会有 browser / file / terminal / web / image_gen / delegation / search 这几类。

2.2 写一份 YAML 配置
Hermes 的精髓在 YAML 流水线配置文件。把 Agent 当成函数声明,依赖关系写在 depends_on 里,Hermes 自己按 DAG 排调度。

下面这份配置就是公众号写作流水线的最小可运行版本。5 个 Agent、5 个文件产物、链式 DAG 调度。

# =========================================================
# Hermes 多 Agent 流水线:公众号写作 5 步曲
# 跑法:hermes run --config hermes_agents.yaml --topic "Hermes 入门"
# =========================================================
agents:
topic_scout: # 第 1 步:选题侦察兵
model: anthropic/claude-sonnet-4
toolsets: [web, search] # 只给联网 + 搜索,文件操作不要开
role: leaf # 关键:声明 leaf,禁止递归 spawn

researcher: # 第 2 步:资料研究员
model: anthropic/claude-sonnet-4
toolsets: [file, web] # file 用来读 01-topics.md、写出 02-research.md
role: leaf

writer: # 第 3 步:执笔写手
model: anthropic/claude-sonnet-4
toolsets: [file, skills] # skills 让它能加载「公众号写作」技能
role: leaf

editor: # 第 4 步:审校编辑
model: anthropic/claude-sonnet-4
toolsets: [file] # 最小集:只让它改文件
role: leaf

illustrator: # 第 5 步:配图提示词
model: anthropic/claude-sonnet-4
toolsets: [skills] # 用 image_gen 技能生成配图 prompt
role: leaf

pipeline:
- call: topic_scout # 入口节点,无需 depends_on
goal: "为「{TOPIC}」出 3 个公众号选题候选,输出到 01-topics.md"

- call: researcher
goal: "基于 01-topics.md 整理 6 section 研究资料包到 02-research.md"
depends_on: topic_scout

- call: writer
goal: "据 02-research.md 起草 2500-3000 字实操教程到 03-draft.md"
depends_on: researcher

- call: editor
goal: "审校 03-draft.md,输出三栏 Markdown 表格存到 04-review.md"
depends_on: writer

- call: illustrator
goal: "为 03-draft.md 配 2-3 张图,给出图名+节点文字+用途"
depends_on: editor
这里有几个细节需要注意一下:

role: leaf 必须显式写。不写默认是 general,子 Agent 自己会 spawn 孙子 Agent,token 几分钟烧光。
toolsets 走白名单,能少一个就少一个。Editor 只给 file,连 web 都不开。
depends_on 替代手写串行,你只声明依赖,Hermes 自己排调度。
2.3 嫌 YAML 不够灵活?上 Python
YAML 适合配置固定的流水线。想动态生成任务、加条件分支、用 Python 拼装任务列表,就走 delegate_task API。

下面这段 Python 是同样的 5 步流水线,能看出它和 YAML 的对应关系。YAML 是声明式,Python 是命令式,干的事一样。

"""
Hermes 多 Agent 流水线 —— Python 入口
跑法:python run_pipeline.py
依赖:pip install hermes-agent
"""
from hermes_tools import delegate_task # Hermes 官方派发 API

# ----------------------------------------------------------------
# 1) 定义 5 个子 Agent 任务(顺序由 depends_on 字段控制)
# ----------------------------------------------------------------
tasks = [
{
"goal": "你是 topic_scout。用户主题:{TOPIC}。请用 web+search 工具调研,"
"输出 3 个公众号选题候选到 01-topics.md。",
"toolsets": ["web", "search"],
"role": "leaf", # 关键:明确 leaf,禁止递归
},
{
"goal": "你是 researcher。据 01-topics.md 整理 6 section 资料包"
"(核心概念/代码/坑点/最佳实践/参考/配图)写到 02-research.md。",
"toolsets": ["file", "web"],
"role": "leaf",
"depends_on": ["topic_scout"],
},
{
"goal": "你是 writer。据 02-research.md 起草 2800 字实操教程,"
"输出到 03-draft.md,必须有 YAML + Python 两段代码。",
"toolsets": ["file", "skills"],
"role": "leaf",
"depends_on": ["researcher"],
},
{
"goal": "你是 editor。审校 03-draft.md,输出三栏 Markdown 表格"
"(原文 / 问题 / 建议)到 04-review.md。",
"toolsets": ["file"],
"role": "leaf",
"depends_on": ["writer"],
},
{
"goal": "你是 illustrator。为 03-draft.md 配 2-3 张图,"
"给出图名+用途+节点文字到 05-illustrations.md。",
"toolsets": ["skills"],
"role": "leaf",
"depends_on": ["editor"],
},
]

# ----------------------------------------------------------------
# 2) 一次性派发:Hermes 默认就是批派发,主 Agent 不阻塞
# Hermes 会按 tasks 里的 depends_on 字段自动排 DAG,
# 没有依赖的同级任务自动并发跑。
# ----------------------------------------------------------------
results = delegate_task(
tasks=tasks,
shared_context={"TOPIC": "Hermes Agent 入门:多 Agent 协作"},
)

 

https://gitee.com/jmng/bhdf/blob/master/2026第一浪漫:生成对抗网络GAN对抗训练逻辑.md

https://gitee.com/jmng/bhdf/blob/master/2026第一清醒:企业上线AI产品合规自查清单包含什么.md

https://gitee.com/jmng/bhdf/blob/master/2026第一随笔:目标检测模型速度与精度如何权衡.md

https://gitee.com/jmng/bhdf/blob/master/2026第一繁花:深度学习框架底层依赖CUDA加速.md

https://gitee.com/jmng/bhdf/blob/master/2026第一晨光:JSON格式强制输出实现方式.md

https://gitee.com/jmng/bhdf/blob/master/2026第一深耕:第三方AI安全审计机构核查模型风险.md

https://gitee.com/jmng/bhdf/blob/master/2026第一沉淀:本地医疗RAG仅限院内病历内网访问.md

https://gitee.com/jmng/bhdf/blob/master/2026第一清醒:大模型能否处理超长文档.md

https://gitee.com/jmng/bhdf/blob/master/2026第一远方:Dropout层的作用是什么.md

https://gitee.com/jmng/bhdf/blob/master/2026第一方向:Padding填充防止图像边缘信息丢失.md

https://gitee.com/jmng/bhdf/blob/master/2026第一奔赴:GAN生成器与判别器相互博弈训练.md

https://gitee.com/jmng/bhdf/blob/master/2026第一清醒:图像分类数据集ImageNet作用.md

https://gitee.com/jmng/bhdf/blob/master/2026第一浪漫:物流AI优化运输路线降低配送成本.md

https://gitee.com/jmng/bhdf/blob/master/2026第一印记:欠拟合代表模型存在什么问题.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一心安:AI伦理主要包含哪些核心议题.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一奔赴:两阶段检测模型代表FasterR-CNN.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一序章:图像分类任务定义是什么.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一奔赴:多轮对话遗忘问题怎么解决.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一求索:入门AI必做实战项目推荐清单.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一沉淀:欠拟合优化方法有哪些.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一远方:对话历史过长如何优化节省上下文.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一初心:HuggingFace平台提供哪些AI工具.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一初心:零基础多久能熟练使用各类AI工具.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一序章:时序AI模型处理连续时间数据.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一浪漫:LoRA相比全量微调显存优势.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一远方:AlexNet带来CV领域什么突破.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一四季:边缘端算力设备包含哪些硬件.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一清醒:重复惩罚参数解决什么问题.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一晨光:多模态模型训练需要图文音配对数据.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一清醒:大模型能否处理超长文档.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一印记:GPU为什么更适合深度学习并行计算.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一微光:预训练模型为什么效果更好.md

https://gitee.com/rhyrd/njyrhfhj/blob/master/2026第一晨光:数据增强能缓解过拟合吗.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一深耕本地模型性能调优提升推理速度.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一晴空写一个函数判断质数.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一奔赴怎么用MyBatis-Plus分页.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一四季本地数字人离线生成短视频素材.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一随笔用Kubernetes写一个Pod.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一奔赴如何用SWC替换Babel.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一繁花边缘盒子本地AI部署小型工厂场景.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一清醒怎么用Base64编码图片.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一随笔用RabbitMQ发送消息.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一随笔如何用简单代码搭建小型智能机器人.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一初心本地AI批量表格数据清洗分析.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一印记企业文档上传AI自动分类打标签.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一沉淀本地AI批量表格数据清洗分析.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一四季本地模型性能调优提升推理速度.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一沉淀用Perl处理文本替换.md

https://gitee.com/pjghre/NHGUJTYH/blob/master/2026第一奔赴写一个Python装饰.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一随笔用NumPy计算矩阵乘法.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一沉淀本地AI批量表格数据清洗分析.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一晴空离线AI工具适合涉密单位使用吗.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一浪漫写一个快速排序算法.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一繁花模型文件占用硬盘空间如何节省.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一四季本地Agent智能体自主执行电脑文件操作.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一随笔用OpenSSL生成证书.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一微光写一个Redis分布式锁.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一四季本地模型性能调优提升推理速度.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一四季如何用SWC替换Babel.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一浪漫写一个Webpack配置文件.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一远方怎么用MyBatis-Plus分页.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一清醒怎么用Scrapy写爬虫.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一奔赴怎么用Helm部署应用.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一微光怎么用Helm部署应用.md

https://gitee.com/fytuwed/ughbfdg/blob/master/2026第一序章如何用JS反转字符串.md

https://gitee.com/vhtrgs/kyuutrgd/blob/master/2026第一随笔怎么用CSS做动画效果.md

https://gitee.com/vhtrgs/kyuutrgd/blob/master/2026第一四季如何用JS反转字符串.md

https://gitee.com/vhtrgs/kyuutrgd/blob/master/2026第一随笔怎么用TravisCI部署.md

https://gitee.com/vhtrgs/kyuutrgd/blob/master/2026第一奔赴企业文档上传AI自动分类打标签.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一底气怎么用Base64编码图片.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一筹码怎么用Base64编码图片.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一晚风写一个二分查找算法.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一资源如何用yarn管理版本.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一四季写一个SolidJS响应式数据.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一晨光用SpringBoot连接Redis.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一筹码用Qwik优化加载.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一赛道如何用CircleCI构建项目.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一战果写一个Rollup打包配置.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一底气如何用Logstash收集日志.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一旅程用NumPy计算矩阵乘法.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一资源用NumPy计算矩阵乘法.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一四季怎么用CSS隐藏元素.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一规划怎么用SSH远程执行命令.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一口碑如何用Redux处理异步.md

https://gitee.com/VDFTER/GHFTY/blob/master/2026第一初心怎么用Elasticsearch搜索.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一四季写一个快速排序算法.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一深耕写一个Webpack配置文件.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一浪漫多用户同时访问本地AI服务并发优化.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一随笔写一个Webpack配置文件.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一深耕模型文件占用硬盘空间如何节省.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一初心如何用SWC替换Babel.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一序章如何用SWC替换Babel.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一随笔怎么用Node.js读写文件.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一清醒本地Agent智能体自主执行电脑文件操作.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一四季写一个Python装饰.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一四季本地AI数据分析业务报表自动生成图表.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一四季用JS实现数组去重的方法.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一序章本地模型量化后画质文字效果损失多少.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一沉淀写一个Webpack配置文件.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一晨光怎么用SSH远程执行命令.md

https://gitee.com/loiuiy/xdfdfs/blob/master/2026第一随笔用SpringBoot写Controller.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一微光如何用Go写一个HTTP客户端.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一随笔精通算法代码打造企业专属智能工具.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一初心怎么用Helm部署应用.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一晨光本地数字人离线生成短视频素材.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一奔赴怎么用MyBatis-Plus分页.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一随笔专业代码教学一站式掌握智能开发技术.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一远方如何用Go写一个HTTP客户端.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一随笔如何用Seaborn做统计图.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一随笔代码人工智能的灵魂.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一深耕写一个Python装饰.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一清醒怎么用SSH远程执行命令.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一繁花多用户同时访问本地AI服务并发优化.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一微光写一个Python装饰.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一序章本地模型性能调优提升推理速度.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一深耕本地数字人离线生成短视频素材.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一四季写一个Webpack配置文件.md

https://gitee.com/rhrwd/dfgedf/blob/master/2026第一四季写一个斐波那契数列.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一清醒写一个Webpack配置文件.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一奔赴用JS实现数组去重的方法.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一远方批量本地文档AI处理自动化流程.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一微光写一个函数判断质数.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一繁花企业文档上传AI自动分类打标签.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一奔赴如何用SWC替换Babel.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一随笔入门智能开发先吃透基础代码逻辑.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一随笔高效代码编写技巧加速智能项目落地.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一微光本地数字人离线生成短视频素材.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一浪漫多用户同时访问本地AI服务并发优化.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一随笔用Python爬取网页数据.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一四季用Perl处理文本替换.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一深耕本地AI数据分析业务报表自动生成图表.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一印记本地模型量化后画质文字效果损失多少.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一随笔如何用Prettier格式化代码.md

https://gitee.com/tryregd/hftyrft/blob/master/2026第一奔赴企业文档上传AI自动分类打标签.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一四季怎么用SSH远程执行命令.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一清醒如何用SWC替换Babel.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一初心本地RAG检索结果排序优化提升准确度.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一四季本地数字人离线生成短视频素材.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一深耕写一个Redis分布式锁.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一四季怎么用Scrapy写爬虫.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一随笔零基础学习代码多久能独立开发智能程序.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一随笔如何用PowerShell批量改名.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一远方怎么用SSH远程执行命令.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一晨光写一个Redis分布式锁.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一四季写一个Python装饰.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一四季写一个Redis分布式锁.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一初心用Perl处理文本替换.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一晴空写一个Webpack配置文件.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一随笔智能背后皆是代码.md

https://gitee.com/trhyrtg/fdgewfv/blob/master/2026第一晴空写一个Redis分布式锁.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一四季写一个斐波那契数列.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一沉淀写一个DockerCompose文件.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一初心本地AI批量表格数据清洗分析.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一晨光本地模型量化后画质文字效果损失多少.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一随笔怎么用Scrapy写爬虫.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一四季怎么用Scrapy写爬虫.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一晨光写一个Redis分布式锁.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一随笔用Python爬取网页数据.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一沉淀边缘盒子本地AI部署小型工厂场景.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一晨光本地数字人离线生成短视频素材.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一印记怎么用Helm部署应用.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一奔赴本地模型量化后画质文字效果损失多少.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一随笔如何用Logstash收集日志.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一浪漫多用户同时访问本地AI服务并发优化.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一序章本地数字人离线生成短视频素材.md

https://gitee.com/hjg76y/gfyhrtg/blob/master/2026第一晨光本地AI数据分析业务报表自动生成图表.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一繁花本地AI批量表格数据清洗分析.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一四季本地模型量化后画质文字效果损失多少.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一四季怎么用Base64编码图片.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一随笔怎么用Elasticsearch搜索.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一随笔写一个二分查找算法.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一序章怎么用MyBatis-Plus分页.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一浪漫模型文件占用硬盘空间如何节省.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一四季模型文件占用硬盘空间如何节省.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一随笔怎么用CSS做动画效果.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一沉淀本地模型量化后画质文字效果损失多少.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一四季怎么用Helm部署应用.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一四季写一个函数判断质数.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一远方本地RAG检索结果排序优化提升准确度.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一清醒边缘盒子本地AI部署小型工厂场景.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一浪漫如何用Go写一个HTTP客户端.md

https://gitee.com/EWSRE/bgfhrt/blob/master/2026第一奔赴用JS实现数组去重的方法.md

https://gitee.com/kiuotrghdr/vcgertds/blob/master/2026第一序章模型文件占用硬盘空间如何节省.md

https://gitee.com/kiuotrghdr/vcgertds/blob/master/2026第一随笔优质代码如何大幅提升智能模型性能.md

https://gitee.com/kiuotrghdr/vcgertds/blob/master/2026第一四季如何用Go写一个HTTP客户端.md

https://gitee.com/kiuotrghdr/vcgertds/blob/master/2026第一晴空多用户同时访问本地AI服务并发优化.md

https://gitee.com/kiuotrghdr/vcgertds/blob/master/2026第一随笔怎么用Nginx配置反向代理.md

https://gitee.com/kiuotrghdr/vcgertds/blob/master/2026第一晴空边缘盒子本地AI部署小型工厂场景.md

https://gitee.com/kiuotrghdr/vcgertds/blob/master/2026第一四季怎么用MyBatis-Plus分页.md

https://gitee.com/kiuotrghdr/vcgertds/blob/master/2026第一印记边缘盒子本地AI部署小型工厂场景.md

https://gitee.com/kiuotrghdr/vcgertds/blob/master/2026第一清醒怎么用Helm部署应用.md

https://gitee.com/kiuotrghdr/vcgertds/blob/master/2026第一奔赴怎么用Scrapy写爬虫.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一随笔借人工智能写下奔赴山海热忱心愿.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一热点AI电子门锁抓拍陌生访客影像留存.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一热点AI茶叶品质检测统一茶叶分级标准.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一繁花怎么用Scrapy写爬虫.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一心安本地AI数据分析业务报表自动生成图表.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一随笔智能笔墨描摹眼底人间山河.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一繁花写一个Redis分布式锁.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一晴空如何用SWC替换Babel.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一热点AI全职公考规划细化每日各科复习任务.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一初心本地模型量化后画质文字效果损失多少.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一随笔借AI写下奔赴山海满腔热忱小心愿.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一初心本地AI批量表格数据清洗分析.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一热点AI读书笔记生成高效梳理书籍内容.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一热点矿山AI无人开采降低人工安全隐患.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一随笔AI相伴写下简单纯粹小美好.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一热点AI考证题库配套解析理清答题思路.md

https://gitee.com/fsxfgvsxfWS/qewsrws/blob/master/2026第一四季边缘盒子本地AI部署小型工厂场景.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一随笔AI文字承载奔赴热爱的勇气.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一随笔智能笔墨记录亲友相聚温暖景.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一远方写一个Webpack配置文件.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一热点果蔬AI催熟调控把控上市最佳时机.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一热点古城AI数字导览还原古代市井风貌.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一浪漫批量本地文档AI处理自动化流程.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一远方用JS实现数组去重的方法.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一印记本地AI批量表格数据清洗分析.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一初心怎么用Scrapy写爬虫.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一随笔写一个DockerCompose文件.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一随笔人工智能捕捉雨后山间清新秀丽风光.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一随笔借AI留存一路相伴左右温暖好心人.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一热点AI茶叶烘焙调控稳定茶叶独特口感.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一印记企业文档上传AI自动分类打标签.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一晨光本地AI数据分析业务报表自动生成图表.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一随笔借AI定格清晨林间细碎温柔晨光景.md

https://gitee.com/szfsdsfaqd/dczsfszf/blob/master/2026第一热点AI轨道故障无人机巡检提前排查隐患.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一热点智能科技革新日常解锁多元生活方式.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一热点物流AI分拣系统大幅缩减发货时长.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一热点智能摄影AI修图随手拍出质感大片.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一热点共享设备搭载AI实现个性化使用.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一热点种植大棚AI光照调控加速作物成熟.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一热点短视频剧情AI工具简化整套拍摄制作流程.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一热点井下AI气体传感器二十四小时实时监测险情预警提示.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一浪漫写一个斐波那契数列.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一晴空本地RAG检索结果排序优化提升准确度.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一热点AI香薰AI联动家居打造治愈氛围.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一清醒本地AI数据分析业务报表自动生成图表.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一清醒多用户同时访问本地AI服务并发优化.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一繁花写一个Webpack配置文件.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一随笔人工智能收集世间全部细碎温柔善意.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一随笔人工智能描摹人间四季温暖烟火长卷图.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一随笔人工智能捕捉雨后山间清新好风光.md

https://gitee.com/zsfsfsxfgs/sfsfvdxf/blob/master/2026第一热点智能舞台AI特效升级晚会视觉效果.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一随笔以AI笔墨告别迷茫拥抱新生.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一热点AI居家观影模式联动全屋全部智能家电.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一方向本地AI批量表格数据清洗分析.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一随笔多用户同时访问本地AI服务并发优化.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一随笔以智能文字释怀过往所有心酸.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一随笔借人工智能收纳晚风云朵温柔意.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一心安模型文件占用硬盘空间如何节省.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一序章本地模型性能调优提升推理速度.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一求索本地模型性能调优提升推理速度.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一随笔借AI定格清晨林间细碎温柔晨光景.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一随笔智能笔墨描摹花开初春盛景.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一热点AI全职公考规划细化拆分每日各科复习任务总量分配.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一热点社区AI智能驿站便利居民日常办事.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一随笔以AI诉说少年心底纯粹炽热理想美梦.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一清醒本地RAG检索结果排序优化提升准确度.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一热点商用美术AI辅助上色高效批量产出各类插画素材图片.md

https://gitee.com/FSFSZFSZF/DZAFSXF/blob/master/2026第一热点国产大模型迭代更新实力持续攀升.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一方向本地RAG检索结果排序优化提升准确度.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一随笔智能文案诉说成长全新感悟.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一热点写一个Python装饰.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一随笔AI文字铺写平淡日子的光亮.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一热点AI考研规划定制贴合考生复习节奏.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一随笔人工智能怀揣温柔奔赴新旅程.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一随笔智能笔墨记录清晨温暖朝阳细碎微光.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一随笔AI文字放下过往遗憾勇敢向前方奔赴.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一随笔人工智能描摹漫天温柔璀璨星光.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一热点大棚AI水肥光照一体调控增产提质效.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一随笔借AI梳理新年心底全部温柔期盼.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一随笔借AI梳理新年心底全部温柔期盼念想.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一随笔AI相伴描摹漫天温柔星光.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一热点AI大数据分析精准预判市场新走向.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一随笔人工智能书写自我成长独白.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一热点古城山水AI语音导览完整还原古时风貌人文历史故事.md

https://gitee.com/FSFVSZF/FSFSFD/blob/master/2026第一热点城际地铁AI调度优化高峰运力分配.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一随笔:负面提示词NegativePrompt作用.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一远方:本地AI服务高可用多机备份方案.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一晴空:LLM为什么能理解人类文字.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一四季:池化层Pooling作用是什么.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一清醒:企业不能仅依靠AI做重大业务决策.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一初心:MobileNet轻量化卷积适合移动端.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一奔赴:多模态数据隐私如何加密保护.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一深耕:国产AI加速芯片有哪些主流型号.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一印记:多模态模型蒸馏缩小部署硬件门槛.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一浪漫:少样本学习和零样本区别.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一求索:实例分割语义分割全景分割区别.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一晨光:海报AI生成依靠多模态提示词理解.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一奔赴:AI配音替代真人录制短视频旁白.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一奔赴:本地AI工具定期更新模型版本操作流程.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一浪漫:TensorFlow静态图适合工业部署.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一远方:农产品视觉AI识别果蔬成熟度.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一晨光:学习计算机视觉入门项目选择什么.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一繁花:推理延迟吞吐量并发量含义.md

https://gitee.com/hyjnfjn/nhfrnj/blob/master/2026第一沉淀:恶意AI攻击分为哪几类.md