Connecting other Events

In addition to Connecting Tool Calls and Connecting User Feedback to your agents' session recordings in Wayfound, you can also connect other kinds of events. These can be any kind of data that is relevant to the agents' interactions. The AI Supervisor can reason about this additional data in the session when analyzing your agents' activity.

Event Types

There are 14 supported event types (including the stop-gap "custom_event"):

  • assistant_message

  • user_message

  • system_message

  • developer_message

  • structured_message

  • reasoning_step

  • tool_call

  • agent_call

  • user_feedback

  • button_click

  • link_click

  • agent_handoff

  • human_review

  • custom_event

Example events with descriptions

Below is an example session transcript that uses all the event types along with brief explanations of why they are being used:

1. user_message

Records the user’s request for Project Alpha status.


2. reasoning_step

Logs the internal thought about which service to call first.


3. developer_message

Shows how you parsed the user’s intent.


4. tool_call (PMService.getProjectData)

Fetches the high-level summary for Project Alpha.


5. assistant_message

Delivers the summary back to the user.


6. structured_message

Offers the user structured next-step options.


7. button_click

Records the user choosing “trend.”


8. tool_call (AnalyticsService.getCompletionTrend)

Fetches week-by-week completion data.


9. reasoning_step

Decides whether to invoke the risk-evaluation agent.


10. agent_call (RiskAgent)

Requests a detailed risk assessment from your RiskAgent.


11. assistant_message

Presents the risk score to the user.


Logs the user clicking through to the web dashboard.


13. system_message

Notes a background system action (scheduling a report).


14. custom_event

Tracks a domain-specific audit entry.


15. agent_handoff

Marks the transfer to a human agent.


16. human_review

Captures a supervisor’s follow-up on that handoff.


17. user_feedback (Thumbs)

Logs a thumbs-up/down on the risk report.


18. user_feedback (Stars)

Captures an overall star rating for the session.


You can copy and adapt each block to instrument your own agent’s session logging for Wayfound—just plug in your timestamps, labels, descriptions, and attribute data as you go.

Last updated