Event handlers
Event handlers are functions that respond to events in a conversation. Your agent can respond to these event types:
Handlers are where the communication layer connects to your application logic. For example, an
onMessage handler receives the user’s message, passes conversation context to an LLM or custom function, and sends the response back through Novu.
Context object
Each event handler receives a context object with the information needed to understand the current event and respond. Depending on the event type, it can include:- The incoming message
- The current conversation state and metadata
- The resolved subscriber (when available)
- Recent conversation history
- Provider information
- Platform-specific details, such as thread or channel identifiers
- Methods for replying, updating metadata, triggering workflows, or resolving the conversation
Event handling flow
When a user messages your agent:1
User sends a message
A user sends a message from a connected provider (for example, Slack).
2
Novu receives the event
The provider delivers the inbound message to your agent endpoint.
3
Novu maps the thread
Novu maps the provider thread to a conversation and resolves the platform user to a subscriber, when possible.
4
Novu calls onMessage
Novu calls the agent’s
onMessage handler with the context object.5
Handler passes context to agent logic
Your handler forwards the message and
ctx.history to your LLM or custom logic.6
Agent logic decides next action
Your agent logic decides what should happen next.
7
Handler sends reply or signals
Your handler returns a reply, calls
ctx.reply(), or emits signals.8
Novu delivers the reply
The agent response is posted back to the original provider thread.
9
Novu records conversation state
Novu records messages, participants, metadata, signals, and conversation status.
onMessage
onMessage fires every time a user sends a message in a conversation with your agent.
- AI SDK
- LangChain
- Custom code
generateText() or streamText() from the handler - Novu delivers the model output to the thread. See AI SDK.Handling attachments
Inbound messages can include file attachments when the platform supports them. Novu normalizes files intomessage.attachments with short-lived signed URLs. Keep in mind:
- Download attachment URLs promptly inside your handler.
- Signed links are valid for 15 minutes.
- Inbound attachments are limited to 25 MB per file.
onAction
onAction fires when a user clicks a button or selects a value in an interactive card. The action payload carries action.id (the element’s id prop), action.value (its value prop, if set), and action.sourceMessageId. See Interactive cards.
onReaction
onReaction fires when a user adds or removes an emoji reaction on a message. The reaction payload carries reaction.emoji.name, reaction.added (true when added, false when removed), and reaction.messageId.
onResolve
onResolve fires when the conversation is marked as resolved via ctx.resolve() or the resolve signal. It receives only the context object.
onToolApproval
onToolApproval fires when a user approves or denies a gated tool call. It receives a decision with the tool call, the verdict, and a handle to the approval card.
- AI SDK
- LangChain
- Custom code
On the AI SDK path, tools gated with
needsApproval: true in onMessage trigger this handler when the user clicks Approve or Deny. Register it when you need a hook after the click - for example to audit the decision or change how the card is handled.renderApproval.
onError
When a turn fails - your handler throws, a returned promise rejects, or message delivery fails inside the handler - Novu runs an error pipeline on the bridge before the turn ends:- Log the failure locally on your bridge
- Call
onErrorif you registered one - If
onErrordoes not handle the failure, auto-report{ error: true }to Novu - Novu delivers safe generic copy to the user in the thread
- Clear the typing indicator for the turn (even when no reply is sent)
Something went wrong while processing your message. Please try again in a moment.
The first argument is an
AgentError (use toAgentError() from @novu/framework if you normalize errors in your own code). Reply delivery failures surface as AgentDeliveryError, a subclass of AgentError, with statusCode and responseBody for debugging.
onError returns message content, Novu posts it like a normal reply. When it returns nothing, the framework auto-reports the turn failure and Novu sends the generic message.
When to suppress
Use{ suppress: true } when a failure should be logged on your bridge but should not post another message in the thread. A common case is side-effect handlers such as onReaction or onAction: if analytics or feedback logging fails, a generic “Something went wrong…” reply is usually more confusing than helpful.
onMessage failures, prefer a custom reply or the default generic message so the user knows their message was not handled.
Runtime adapters forward onError from the same agent config. For adapter-specific failure behavior, see AI SDK, LangChain, or Other frameworks.
Reporting turn failures is best-effort. If the bridge cannot reach Novu, the failure is logged locally and is not re-thrown. Failures inside
onError itself are logged and do not recurse.Related
Reply
Send plain text, markdown, attachments, and interactive cards.
Typing indicator
Show a Thinking… or custom status while your handler runs.
Tool approval
Gate tool calls with an in-thread Approve / Deny card.
AI SDK
Build end to end with
@novu/framework/ai-sdk.LangChain
Build end to end with
@novu/framework/langchain.