From 98aff29fbda6bcb99ea6af0cfd1532954b504bdc Mon Sep 17 00:00:00 2001 From: William FH <13333726+hinthornw@users.noreply.github.com> Date: Thu, 2 Nov 2023 20:36:56 -0700 Subject: [PATCH] Add Dataset Page to printout (#12816) --- libs/langchain/langchain/smith/evaluation/runner_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/langchain/langchain/smith/evaluation/runner_utils.py b/libs/langchain/langchain/smith/evaluation/runner_utils.py index fd035c72cd0c0..e1b78a00f06b6 100644 --- a/libs/langchain/langchain/smith/evaluation/runner_utils.py +++ b/libs/langchain/langchain/smith/evaluation/runner_utils.py @@ -888,7 +888,8 @@ def _prepare_eval_run( ) print( f"View the evaluation results for project '{project_name}'" - f" at:\n{project.url}?eval=true", + f" at:\n{project.url}?eval=true\n\n" + f"View all tests for Dataset {dataset_name} at:\n{dataset.url}", flush=True, ) examples = list(client.list_examples(dataset_id=dataset.id))