From e50f0308bfd2ff6ad1cadbcf1a00c9b391565fd7 Mon Sep 17 00:00:00 2001 From: fancy Date: Thu, 25 Dec 2025 14:47:29 +0800 Subject: [PATCH] fix: [PrefEval Evaluation] propagate --lib and --version arguments in search and response modes --- evaluation/scripts/run_prefeval_eval.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/evaluation/scripts/run_prefeval_eval.sh b/evaluation/scripts/run_prefeval_eval.sh index 6f5f3b7b0..f65873cb9 100755 --- a/evaluation/scripts/run_prefeval_eval.sh +++ b/evaluation/scripts/run_prefeval_eval.sh @@ -108,7 +108,9 @@ python $LIB_SCRIPT search \ --input $IDS_FILE \ --output $SEARCH_FILE \ --top-k $TOP_K \ - --max-workers $WORKERS + --max-workers $WORKERS \ + --lib $LIB \ + --version $VERSION if [ $? -ne 0 ]; then echo "Error: $LIB_SCRIPT 'search' mode failed." @@ -121,7 +123,9 @@ echo "Running $LIB_SCRIPT in 'response' mode..." python $LIB_SCRIPT response \ --input $SEARCH_FILE \ --output $RESPONSE_FILE \ - --max-workers $WORKERS + --max-workers $WORKERS \ + --lib $LIB \ + --version $VERSION if [ $? -ne 0 ]; then echo "Error: $LIB_SCRIPT 'response' mode failed."