Agently Docs

Agently documentation for building AI applications with stable outputs, observable actions, and durable workflows.

View the Project on GitHub AgentEra/Agently

Requests 概览

语言:English · 中文

一次 Agently 请求由四个部分组成:

  1. Prompt — 你说给模型的内容。由分层槽位组成:role / systeminfoinstructinputoutput schema。详见 Prompt 管理
  2. Output schema — 你想要的结构。由嵌套 dict + (type, "desc", ensure) 叶子构成。详见 Schema as Prompt
  3. Validation 流水线output() 严格解析 → ensure_keys.validate(...) 自定义校验 → 重试。详见 输出控制
  4. Response — text、structured data、metadata、流式事件。可通过 response.result 复用。详见 模型响应

最小写法

from agently import Agently

agent = Agently.create_agent()

result = (
    agent
    .input("用三条要点总结这篇文章。")
    .output({
        "title": (str, "标题", True),
        "bullets": [(str, "要点", True)],
    })
    .start()
)

这一条链覆盖了上述四部分。input() 填 prompt 的 input 槽,output() 定义 schema(含 ensure 标记),start() 发送请求、跑 validation 流水线、必要时重试,并返回解析后的 dict。

该读哪一页

你想 … 去看
在 agent 与单次请求间分层 prompt Prompt 管理
理解 (type, "desc", True) 叶子和 YAML 写法 Schema as Prompt
加业务校验、控制重试、决定 fail open 还是 hard 输出控制
一次响应同时用作 text + data + metadata,或字段流式消费 模型响应
多轮对话与 memo 会话记忆
干净地注入背景信息 Context Engineering

Sync vs async

上面的链以 .start() 结尾,是同步。服务和流式 UI 用 .async_start(),或者拿一个 response = ....get_response() 复用,再 await response.result.async_get_data()。详见 Async First

这一层在栈里的位置

Request 是 Agently 提供的最小单位。多次请求可以共享一个 Session(多轮)。需要分支、并发、暂停恢复时升到 TriggerFlow。需要模型调工具或 MCP 时接入 Action Runtime

但上层每一层最终都依赖 request 本身做对了事。先把这一层做对。