> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Reaction Result • AI Agent SDK

> ReactionResult: Outcome of an agent-initiated message reaction (Issue #3917).

# ReactionResult

> Defined in the [**protocols**](../modules/protocols) module.

<Badge color="blue">AI Agent</Badge>

Outcome of an agent-initiated message reaction (Issue #3917).

Every call resolves to exactly one :data:`ReactionStatus`, so the agent
always gets a typed answer rather than a hard error — in particular a
channel that cannot react returns `unsupported` rather than raising.

Attributes:
status: The outcome (`ok` / `unsupported` / `failed` /
`no_route`).
target: The resolved target the reaction was routed to.
detail: Optional model-readable explanation.

## Properties

<ResponseField name="status" type="ReactionStatus">
  No description available.
</ResponseField>

<ResponseField name="target" type="str">
  No description available.
</ResponseField>

<ResponseField name="detail" type="Optional[str]">
  No description available.
</ResponseField>

## Methods

<CardGroup cols={2}>
  <Card title="as_dict()" icon="function" href="../functions/ReactionResult-as_dict">
    Convert to a serializable dictionary for the tool return value.
  </Card>
</CardGroup>

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/gateway/protocols.py#L2500">
  `praisonaiagents/gateway/protocols.py` at line 2500
</Card>
