From 0ff5067e0e50152e5ead16d27400497d9128553a Mon Sep 17 00:00:00 2001 From: Harry Xie Date: Wed, 16 Oct 2024 19:16:58 +0100 Subject: [PATCH] print link to evaluation once more after results --- src/humanloop/eval_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/humanloop/eval_utils.py b/src/humanloop/eval_utils.py index 319c021..1606747 100644 --- a/src/humanloop/eval_utils.py +++ b/src/humanloop/eval_utils.py @@ -377,7 +377,7 @@ def process_datapoint(datapoint: Datapoint): # Execute the function and send the logs to Humanloop in parallel total_datapoints = len(hl_dataset.datapoints) - logger.info(f"\n{CYAN}Navigate to your evals:{RESET}\n{evaluation.url}\n") + logger.info(f"\n{CYAN}Navigate to your Evaluation:{RESET}\n{evaluation.url}\n") logger.info(f"{CYAN}{type_.capitalize()} Version ID: {hl_file.version_id}{RESET}") logger.info(f"{CYAN}Run ID: {batch_id}{RESET}") @@ -441,6 +441,7 @@ def process_datapoint(datapoint: Datapoint): threshold_check=threshold_check, ) ) + logger.info(f"\n{CYAN}View your Evaluation:{RESET}\n{evaluation.url}\n") return checks