# 谷歌过程图框架：让智能体自我进化

- 来源：elvis (@omarsar0)
- 发布时间：2026-09-10 02:34
- AIHOT 分数：45
- AIHOT 链接：https://aihot.news/items/cmtug1hq21bvarofpz6cr4gcd
- 原文链接：https://x.com/omarsar0/status/2097755424007373270

## AI 摘要

谷歌新论文提出过程图（Procedural Graph）框架，将程序性知识显式存储为“过程-关系-过程”三元组，供长程智能体查询下一步动作及条件。该框架通过LLM精炼器对比失败与成功轨迹，自动编辑图结构并仅保留通过验证的修改，使智能体从最小骨架构建出匹敌甚至超越人工设计的图，并修复有缺陷的专家先验。

## 正文

Another banger paper from Google.

If you build memory for long-horizon agents, this one is worth your time.

(bookmark it)

Really nice to see how knowledge graphs are being explored in creative ways for agents. This has lots of implications for self-evolving agents.

Technical summary below:

Agents usually pick actions by generating over an accumulating history, which leaves the procedural knowledge implicit. As trajectories get longer they lose track of objectives, call tools out of order, and repeat actions that did not work.

The Procedural Graph helps to make that knowledge explicit.

A knowledge graph stores facts as entity-relation-entity triplets. A Procedural Graph stores procedures as procedure-relation-procedure triplets, so the agent can query what to do next and under which conditions.

At each step, the framework localizes the agent's active node, and a guidance model turns the surrounding subgraph into step-level guidance that biases the next action without dictating it.

The graph rewrites itself.

An LLM refiner compares failed trajectories against successful ones and edits the topology and attributes, committing only edits that hold up on held-out validation, and keeping the rejected ones on file so the same change is not proposed twice.

Starting from a minimal skeleton it builds graphs that match or beat hand-designed ones, and it helps to repair a flawed expert priors instead of inheriting them.

Paper: https://academy.dair.ai/papers/procedural-graphs-self-evolving-execution-structures-for-llm-agents-2609.09153
