Agently documentation for building AI applications with stable outputs, observable actions, and durable workflows.
语言:English · 中文
Agently 里有几种看起来像“事件”的接口。它们相关,但职责不同。
| 接口 | 归属 | 用途 | 去读 |
|---|---|---|---|
| Observation events(观测事件) | Event Center | 观察框架级活动,例如模型请求、Session、Action 调用、TriggerFlow lifecycle。RuntimeEvent 在 4.1.x 内保留为兼容名。 |
Event Center |
TriggerFlow emit / when |
TriggerFlow execution | 单个 execution 内的控制流信号 | TriggerFlow 事件与流 |
| TriggerFlow runtime stream | TriggerFlow execution | 给 UI、SSE、日志或 wrapper 消费的 live data item | TriggerFlow 事件与流 |
| DevTools | agently-devtools companion package |
可视化运行、上传 observation、执行 evaluation、暴露交互式 wrapper | DevTools |
| Coding-agent 指引 | Agently-Skills companion repo |
给 Codex、Claude Code、Cursor 等工具提供当前框架指引 | Coding Agents |
emit / when。observation event 的源码结构在 agently/types/data/event.py,事件分发在 agently/core/EventCenter.py。DevTools 示例在 examples/devtools/。