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_messageuser_messagesystem_messagedeveloper_messagestructured_messagereasoning_steptool_callagent_calluser_feedbackbutton_clicklink_clickagent_handoffhuman_reviewcustom_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
user_messageRecords the user’s request for Project Alpha status.
2. reasoning_step
reasoning_stepLogs the internal thought about which service to call first.
3. developer_message
developer_messageShows how you parsed the user’s intent.
4. tool_call (PMService.getProjectData)
tool_call (PMService.getProjectData)Fetches the high-level summary for Project Alpha.
5. assistant_message
assistant_messageDelivers the summary back to the user.
6. structured_message
structured_messageOffers the user structured next-step options.
7. button_click
button_clickRecords the user choosing “trend.”
8. tool_call (AnalyticsService.getCompletionTrend)
tool_call (AnalyticsService.getCompletionTrend)Fetches week-by-week completion data.
9. reasoning_step
reasoning_stepDecides whether to invoke the risk-evaluation agent.
10. agent_call (RiskAgent)
agent_call (RiskAgent)Requests a detailed risk assessment from your RiskAgent.
11. assistant_message
assistant_messagePresents the risk score to the user.
12. link_click
link_clickLogs the user clicking through to the web dashboard.
13. system_message
system_messageNotes a background system action (scheduling a report).
14. custom_event
custom_eventTracks a domain-specific audit entry.
15. agent_handoff
agent_handoffMarks the transfer to a human agent.
16. human_review
human_reviewCaptures a supervisor’s follow-up on that handoff.
17. user_feedback (Thumbs)
user_feedback (Thumbs)Logs a thumbs-up/down on the risk report.
18. user_feedback (Stars)
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