This page describes the Thread type from aion-authoring-langgraph.
The Thread object is the main fluent surface for replying, posting, and
emitting streaming intents without forcing authors to build raw A2A messages by
hand.
Properties
Methods
reply(...) and post(...) accept the same content categories:
reply(...)
reply(...) is intended for the most common case: answer in the same place
the inbound message arrived.
post(...)
post(...) is intended for explicit outbound actions that should remain
distinct from the default reply target.
Unlike reply(...), post(...) should remain explicit in the response buffer
so cross-target delivery is never inferred from transcript order alone.
history(...)
history(...) is reserved for asking the control plane for more context than
was included on the inbound turn.
history() is not implemented yet and currently returns an empty list.
typing(...)
typing(content, *, metadata=None) is intended for stream-only live intents.
content is a required string — the transient text shown to the user while the
agent is working.
These intents should not replace the durable response precedence. They are
best-effort live hints for streaming views.
Related Pages