# Connecting User Feedback

After [Connecting Agents](/agents/connecting-agents.md) to Wayfound, you can also track user feedback ratings. This allows Wayfound to generate satisfaction metrics in [Performance](/supervisor/performance.md) reports. You can do so by adding a "user\_feedback" event to "messages". Two types of user feedback are supported: "stars" and "thumbs\_up\_down":

```json
{
    "timestamp": "2025-05-07T10:05:05Z",
    "event_type": "user_feedback",
    "label": "User Feedback (Thumbs)",
    "description": "User gave a thumbs-up on risk report",
    "attributes": {
      "feedback_type": "thumbs_up_down",
      "rating": "thumbs_up",
      "comment": "This was great!"
    }
  },
  {
    "timestamp": "2025-05-07T10:05:10Z",
    "event_type": "user_feedback",
    "label": "User Feedback (Stars)",
    "description": "User rated overall experience",
    "attributes": {
      "feedback_type": "stars",
      "rating": 5
    }
}
```

Examples of user feedback events are shown here as they appear in a session transcript:

<figure><img src="/files/RQq3fmKy5t6rK8yuCyG4" alt=""><figcaption></figcaption></figure>

Note that multiple feedback entries can be included for the same conversation, and feedback can be submitted at any point during or after the interaction.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.wayfound.ai/agents/connecting-user-feedback.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
