Update run.py

This commit is contained in:
Hong Kai LEE 2025-04-01 10:55:26 +08:00 committed by GitHub
parent 465c24546d
commit 366f6850a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -525,7 +525,7 @@ def go_evaluation(args):
ls_evaluators.append(gemini_evaluator_faithfulness) ls_evaluators.append(gemini_evaluator_faithfulness)
# After running the evaluation, a link will be provided to view the results in langsmith # After running the evaluation, a link will be provided to view the results in langsmith
experiment_results = client.evaluate( _ = client.evaluate(
target, target,
data = dataset_name, data = dataset_name,
evaluators = ls_evaluators, evaluators = ls_evaluators,
@ -597,4 +597,4 @@ if __name__ == "__main__":
args = parser.parse_args() args = parser.parse_args()
go_evaluation(args) go_evaluation(args)