We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9ca6bf commit 59677a1Copy full SHA for 59677a1
src/humanloop/eval_utils.py
@@ -154,6 +154,8 @@ class EvaluatorCheck(BaseModel):
154
"""The threshold to check the Evaluator against."""
155
threshold_check: Optional[bool]
156
"""Whether the latest version has an average Evaluator result above a threshold."""
157
+ evaluation_id: str
158
+ """The ID of the corresponding Evaluation."""
159
160
161
def _run_eval(
@@ -441,6 +443,7 @@ def process_datapoint(datapoint: Datapoint):
441
443
delta=delta,
442
444
threshold=threshold,
445
threshold_check=threshold_check,
446
+ evaluation_id=evaluation.id,
447
)
448
449
logger.info(f"\n{CYAN}View your Evaluation:{RESET}\n{evaluation.url}\n")
0 commit comments