h2oGPTe icon

h2oGPTe

h2oGPTe is an AI-powered search assistant for your internal teams to answer questions gleaned from large volumes of documents, websites and workplace content.

Actions198

Overview

This node operation lists the user's questions and answers that have received feedback. It is useful for scenarios where you want to review or analyze user interactions with an AI chat system, particularly focusing on those interactions where users have provided feedback on the answers they received. For example, a customer support team might use this to monitor which AI-generated responses were rated by users, helping improve the quality of automated assistance.

Properties

Name Meaning
Additional Options Collection of optional parameters:
- Offset Number of feedback entries to skip before starting to return results (pagination offset).
- Limit Maximum number of feedback entries to return (pagination limit).

Output

The output contains a JSON array of question-answer feedback objects. Each object represents a user question and the corresponding answer that has feedback associated with it. The structure typically includes identifiers, question text, answer text, and feedback details such as ratings or comments.

If the node supports binary data output, it would be related to any attachments or media linked to the feedback, but this operation primarily deals with JSON data representing textual feedback.

Dependencies

  • Requires an API key credential for authentication to the external service.
  • The node sends HTTP GET requests to the /question_answer_feedbacks endpoint of the configured API base URL.
  • Pagination can be controlled via offset and limit query parameters.

Troubleshooting

  • Common Issues:

    • Incorrect or missing API credentials will result in authentication errors.
    • Providing invalid values for offset or limit may cause request failures or unexpected results.
    • Network connectivity issues can prevent successful API calls.
  • Error Messages:

    • Authentication errors: Ensure the API key credential is correctly configured and valid.
    • Rate limiting or quota exceeded: Check API usage limits and adjust request frequency accordingly.
    • Invalid parameter errors: Verify that offset and limit are non-negative integers and within allowed ranges.

Links and References

  • Refer to the API documentation of the service providing the /question_answer_feedbacks endpoint for detailed information on response structure and additional query parameters.
  • n8n documentation on how to configure API key credentials and handle pagination in nodes.

Discussion