Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions features/create_judge/create_judge_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,10 @@ async def async_main():

judge_result = await judge.evaluate(input_text, output_text)

# Track the judge evaluation scores on the tracker for the aiConfig you are evaluating
# Example:
# aiConfig.create_tracker().track_judge_result(judge_result)
# If the output you're judging came from another AI Config, track the
# result on that config's tracker so the metric is attributed to the
# right config:
# ai_config.create_tracker().track_judge_result(judge_result)

print("\nJudge result:")
print(f"- judge_config_key: {judge_key}")
Expand Down
Loading