Interface Feedback


public interface Feedback
Feedback data for agent execution evaluation and scoring. Feedback represents evaluation results and scores for agent executions, including information about the source of the feedback and when it was created or last modified.
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Gets the timestamp when this feedback was created.
    long
    Gets the timestamp when this feedback was last modified.
    Gets the evaluation scores for this feedback.
    Gets the source of this feedback.
  • Method Details

    • getScores

      Map<String,Object> getScores()
      Gets the evaluation scores for this feedback.
      Returns:
      map from score name to score value (String, Boolean, or Number)
    • getSource

      InfoSource getSource()
      Gets the source of this feedback.
      Returns:
      the information source that generated this feedback
    • getCreatedAt

      long getCreatedAt()
      Gets the timestamp when this feedback was created.
      Returns:
      creation timestamp in milliseconds since epoch
    • getModifiedAt

      long getModifiedAt()
      Gets the timestamp when this feedback was last modified.
      Returns:
      modification timestamp in milliseconds since epoch