increase parallel attempts

This commit is contained in:
Adam Wilson
2025-05-20 17:04:30 -06:00
parent 6b104bfcc3
commit d8a6609b8b
+3 -3
View File
@@ -71,14 +71,14 @@ jobs:
id: run_tests
run: |
# Test curl with detailed error reporting
curl_output=$(curl -X POST -i localhost:9999/api/conversations -d '{ "prompt": "describe a random planet in our solar system in 10 words or less" }' --connect-timeout 10 -v 2>&1) || true
echo "$curl_output"
# curl_output=$(curl -X POST -i localhost:9999/api/conversations -d '{ "prompt": "describe a random planet in our solar system in 10 words or less" }' --connect-timeout 10 -v 2>&1) || true
# echo "$curl_output"
garak -v \
--config ${{ github.workspace }}/src/tools/garak.config.yml \
--generator_option_file ${{ github.workspace }}/src/tools/garak.rest.llm.json \
--model_type=rest \
--parallel_attempts 16
--parallel_attempts 32
garak_exit_code=$?
echo "garak exit code: $garak_exit_code"