From a7426cdc3ae3adf3d1d72a6009bae3aaaf179379 Mon Sep 17 00:00:00 2001 From: SumanthRH Date: Thu, 17 Apr 2025 15:58:34 -0700 Subject: [PATCH 1/2] x Signed-off-by: SumanthRH --- skythought/evals/inference_and_check.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skythought/evals/inference_and_check.py b/skythought/evals/inference_and_check.py index 7a534565..7ed8a2e5 100644 --- a/skythought/evals/inference_and_check.py +++ b/skythought/evals/inference_and_check.py @@ -233,11 +233,11 @@ def generate_responses_for_dataset( if not remaining_data: logger.info("No remaining data to generate.") return id_to_results, [], [] - + # Prepare conversations conversations = handler.make_conversations( remaining_data, - str(model_config.system_prompt), + str(model_config.system_prompt) if model_config.system_prompt else None, model_config.user_template, model_config.assistant_prefill, ) From 49e590dc6cfda3704791267a720c8c7bdc8af87b Mon Sep 17 00:00:00 2001 From: SumanthRH Date: Thu, 17 Apr 2025 15:58:44 -0700 Subject: [PATCH 2/2] x Signed-off-by: SumanthRH --- skythought/evals/inference_and_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skythought/evals/inference_and_check.py b/skythought/evals/inference_and_check.py index 7ed8a2e5..f7210393 100644 --- a/skythought/evals/inference_and_check.py +++ b/skythought/evals/inference_and_check.py @@ -233,7 +233,7 @@ def generate_responses_for_dataset( if not remaining_data: logger.info("No remaining data to generate.") return id_to_results, [], [] - + # Prepare conversations conversations = handler.make_conversations( remaining_data,