diff --git a/tests/create_dirs.sh b/tests/create_dirs.sh index 3953e8728..d078d8988 100755 --- a/tests/create_dirs.sh +++ b/tests/create_dirs.sh @@ -7,20 +7,51 @@ models=( "microsoft/Phi-3-mini-4k-instruct" ) -# Create base integration directory if it doesn't exist +# Function to generate random 10-digit number (not needed but kept for potential future use) +# generate_random_id() { +# echo $((RANDOM * RANDOM % 10000000000)) +# } + +# Create base logs directory if it doesn't exist +mkdir -p logs # Iterate through test directories 1-5 -for i in {0..4}; do - # Iterate through each model - for model in "${models[@]}"; do - # Replace / with - dir_name="${model//\//_}" +for i in {1..5}; do + echo "Creating test_${i} directories..." + + # Create range directories from 1-2 to 99-100 (50 ranges total) + for start in {1..99..2}; do + end=$((start + 1)) + range="${start}-${end}" - # Create the directory structure - mkdir -p "logs/test_${i}/${dir_name}" - - echo "Created: logs/test_${i}/${dir_name}" + # Iterate through each model + for model in "${models[@]}"; do + # Replace / with _ and convert to lowercase for directory name + dir_name="${model//\//_}" + dir_name="${dir_name,,}" # Convert to lowercase + + # Create the full directory path + full_path="logs/test_${i}/${dir_name}/${range}" + mkdir -p "${full_path}" + + # Create placeholder JSON file + json_file="${full_path}/_.json" + touch "${json_file}" + + echo "Created: ${json_file}" + done done done -echo "All directories created successfully!" \ No newline at end of file +echo "" +echo "Summary:" +echo "- Created 5 test directories (test_1 through test_5)" +echo "- Created 50 range directories in each test (1-2, 3-4, ..., 99-100)" +echo "- Created 3 model directories in each range" +echo "- Created 1 JSON file in each model directory" +echo "- Total: $(find tests -name "*.json" | wc -l) JSON files created" +echo "" +echo "Example structure:" +echo "tests/logs/test_1/1-2/apple_openelm-3b-instruct/_.json" +echo "tests/logs/test_1/1-2/meta-llama_llama-3.2-3b-instruct/_.json" +echo "tests/logs/test_1/1-2/microsoft_phi-3-mini-4k-instruct/_.json" \ No newline at end of file diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/1-2/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/11-12/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/13-14/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/15-16/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/17-18/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/19-20/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/21-22/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/23-24/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/25-26/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/27-28/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/29-30/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/3-4/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/31-32/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/33-34/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/35-36/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/37-38/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/39-40/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/41-42/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/43-44/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/45-46/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/47-48/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/49-50/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/5-6/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/51-52/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/53-54/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/55-56/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/57-58/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/59-60/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/61-62/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/63-64/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/65-66/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/67-68/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/69-70/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/7-8/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/71-72/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/73-74/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/75-76/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/77-78/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/79-80/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/81-82/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/83-84/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/85-86/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/87-88/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/89-90/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/9-10/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/91-92/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/93-94/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/95-96/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/97-98/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/apple_openelm-3b-instruct/99-100/_.json b/tests/logs/test_1/apple_openelm-3b-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/1-2/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/11-12/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/13-14/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/15-16/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/17-18/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/19-20/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/21-22/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/23-24/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/25-26/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/27-28/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/29-30/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/3-4/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/31-32/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/33-34/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/35-36/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/37-38/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/39-40/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/41-42/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/43-44/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/45-46/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/47-48/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/49-50/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/5-6/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/51-52/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/53-54/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/55-56/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/57-58/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/59-60/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/61-62/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/63-64/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/65-66/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/67-68/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/69-70/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/7-8/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/71-72/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/73-74/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/75-76/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/77-78/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/79-80/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/81-82/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/83-84/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/85-86/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/87-88/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/89-90/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/9-10/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/91-92/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/93-94/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/95-96/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/97-98/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/99-100/_.json b/tests/logs/test_1/meta-llama_llama-3.2-3b-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/1-2/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/11-12/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/13-14/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/15-16/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/17-18/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/19-20/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/21-22/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/23-24/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/25-26/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/27-28/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/29-30/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/3-4/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/31-32/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/33-34/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/35-36/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/37-38/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/39-40/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/41-42/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/43-44/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/45-46/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/47-48/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/49-50/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/5-6/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/51-52/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/53-54/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/55-56/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/57-58/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/59-60/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/61-62/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/63-64/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/65-66/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/67-68/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/69-70/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/7-8/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/71-72/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/73-74/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/75-76/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/77-78/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/79-80/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/81-82/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/83-84/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/85-86/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/87-88/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/89-90/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/9-10/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/91-92/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/93-94/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/95-96/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/97-98/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/99-100/_.json b/tests/logs/test_1/microsoft_phi-3-mini-4k-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/1-2/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/11-12/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/13-14/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/15-16/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/17-18/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/19-20/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/21-22/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/23-24/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/25-26/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/27-28/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/29-30/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/3-4/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/31-32/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/33-34/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/35-36/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/37-38/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/39-40/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/41-42/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/43-44/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/45-46/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/47-48/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/49-50/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/5-6/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/51-52/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/53-54/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/55-56/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/57-58/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/59-60/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/61-62/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/63-64/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/65-66/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/67-68/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/69-70/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/7-8/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/71-72/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/73-74/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/75-76/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/77-78/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/79-80/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/81-82/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/83-84/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/85-86/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/87-88/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/89-90/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/9-10/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/91-92/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/93-94/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/95-96/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/97-98/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/apple_openelm-3b-instruct/99-100/_.json b/tests/logs/test_2/apple_openelm-3b-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/1-2/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/11-12/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/13-14/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/15-16/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/17-18/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/19-20/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/21-22/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/23-24/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/25-26/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/27-28/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/29-30/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/3-4/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/31-32/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/33-34/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/35-36/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/37-38/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/39-40/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/41-42/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/43-44/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/45-46/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/47-48/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/49-50/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/5-6/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/51-52/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/53-54/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/55-56/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/57-58/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/59-60/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/61-62/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/63-64/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/65-66/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/67-68/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/69-70/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/7-8/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/71-72/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/73-74/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/75-76/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/77-78/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/79-80/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/81-82/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/83-84/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/85-86/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/87-88/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/89-90/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/9-10/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/91-92/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/93-94/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/95-96/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/97-98/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/99-100/_.json b/tests/logs/test_2/meta-llama_llama-3.2-3b-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/1-2/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/11-12/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/13-14/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/15-16/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/17-18/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/19-20/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/21-22/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/23-24/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/25-26/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/27-28/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/29-30/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/3-4/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/31-32/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/33-34/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/35-36/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/37-38/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/39-40/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/41-42/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/43-44/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/45-46/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/47-48/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/49-50/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/5-6/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/51-52/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/53-54/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/55-56/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/57-58/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/59-60/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/61-62/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/63-64/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/65-66/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/67-68/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/69-70/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/7-8/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/71-72/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/73-74/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/75-76/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/77-78/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/79-80/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/81-82/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/83-84/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/85-86/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/87-88/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/89-90/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/9-10/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/91-92/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/93-94/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/95-96/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/97-98/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/99-100/_.json b/tests/logs/test_2/microsoft_phi-3-mini-4k-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/1-2/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/11-12/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/13-14/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/15-16/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/17-18/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/19-20/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/21-22/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/23-24/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/25-26/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/27-28/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/29-30/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/3-4/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/31-32/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/33-34/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/35-36/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/37-38/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/39-40/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/41-42/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/43-44/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/45-46/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/47-48/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/49-50/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/5-6/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/51-52/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/53-54/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/55-56/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/57-58/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/59-60/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/61-62/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/63-64/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/65-66/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/67-68/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/69-70/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/7-8/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/71-72/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/73-74/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/75-76/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/77-78/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/79-80/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/81-82/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/83-84/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/85-86/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/87-88/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/89-90/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/9-10/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/91-92/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/93-94/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/95-96/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/97-98/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/apple_openelm-3b-instruct/99-100/_.json b/tests/logs/test_3/apple_openelm-3b-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/1-2/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/11-12/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/13-14/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/15-16/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/17-18/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/19-20/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/21-22/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/23-24/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/25-26/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/27-28/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/29-30/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/3-4/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/31-32/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/33-34/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/35-36/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/37-38/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/39-40/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/41-42/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/43-44/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/45-46/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/47-48/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/49-50/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/5-6/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/51-52/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/53-54/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/55-56/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/57-58/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/59-60/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/61-62/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/63-64/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/65-66/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/67-68/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/69-70/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/7-8/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/71-72/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/73-74/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/75-76/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/77-78/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/79-80/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/81-82/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/83-84/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/85-86/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/87-88/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/89-90/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/9-10/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/91-92/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/93-94/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/95-96/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/97-98/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/99-100/_.json b/tests/logs/test_3/meta-llama_llama-3.2-3b-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/1-2/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/11-12/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/13-14/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/15-16/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/17-18/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/19-20/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/21-22/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/23-24/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/25-26/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/27-28/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/29-30/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/3-4/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/31-32/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/33-34/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/35-36/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/37-38/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/39-40/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/41-42/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/43-44/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/45-46/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/47-48/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/49-50/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/5-6/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/51-52/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/53-54/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/55-56/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/57-58/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/59-60/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/61-62/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/63-64/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/65-66/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/67-68/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/69-70/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/7-8/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/71-72/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/73-74/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/75-76/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/77-78/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/79-80/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/81-82/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/83-84/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/85-86/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/87-88/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/89-90/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/9-10/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/91-92/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/93-94/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/95-96/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/97-98/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/99-100/_.json b/tests/logs/test_3/microsoft_phi-3-mini-4k-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/1-2/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/11-12/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/13-14/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/15-16/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/17-18/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/19-20/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/21-22/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/23-24/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/25-26/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/27-28/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/29-30/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/3-4/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/31-32/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/33-34/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/35-36/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/37-38/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/39-40/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/41-42/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/43-44/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/45-46/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/47-48/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/49-50/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/5-6/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/51-52/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/53-54/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/55-56/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/57-58/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/59-60/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/61-62/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/63-64/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/65-66/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/67-68/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/69-70/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/7-8/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/71-72/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/73-74/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/75-76/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/77-78/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/79-80/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/81-82/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/83-84/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/85-86/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/87-88/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/89-90/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/9-10/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/91-92/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/93-94/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/95-96/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/97-98/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/apple_openelm-3b-instruct/99-100/_.json b/tests/logs/test_4/apple_openelm-3b-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/1-2/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/11-12/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/13-14/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/15-16/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/17-18/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/19-20/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/21-22/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/23-24/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/25-26/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/27-28/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/29-30/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/3-4/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/31-32/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/33-34/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/35-36/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/37-38/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/39-40/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/41-42/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/43-44/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/45-46/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/47-48/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/49-50/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/5-6/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/51-52/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/53-54/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/55-56/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/57-58/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/59-60/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/61-62/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/63-64/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/65-66/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/67-68/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/69-70/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/7-8/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/71-72/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/73-74/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/75-76/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/77-78/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/79-80/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/81-82/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/83-84/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/85-86/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/87-88/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/89-90/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/9-10/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/91-92/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/93-94/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/95-96/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/97-98/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/99-100/_.json b/tests/logs/test_4/meta-llama_llama-3.2-3b-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/1-2/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/11-12/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/13-14/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/15-16/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/17-18/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/19-20/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/21-22/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/23-24/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/25-26/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/27-28/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/29-30/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/3-4/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/31-32/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/33-34/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/35-36/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/37-38/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/39-40/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/41-42/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/43-44/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/45-46/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/47-48/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/49-50/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/5-6/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/51-52/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/53-54/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/55-56/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/57-58/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/59-60/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/61-62/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/63-64/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/65-66/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/67-68/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/69-70/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/7-8/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/71-72/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/73-74/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/75-76/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/77-78/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/79-80/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/81-82/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/83-84/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/85-86/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/87-88/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/89-90/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/9-10/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/91-92/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/93-94/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/95-96/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/97-98/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/99-100/_.json b/tests/logs/test_4/microsoft_phi-3-mini-4k-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/1-2/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/11-12/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/13-14/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/15-16/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/17-18/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/19-20/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/21-22/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/23-24/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/25-26/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/27-28/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/29-30/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/3-4/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/31-32/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/33-34/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/35-36/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/37-38/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/39-40/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/41-42/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/43-44/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/45-46/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/47-48/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/49-50/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/5-6/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/51-52/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/53-54/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/55-56/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/57-58/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/59-60/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/61-62/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/63-64/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/65-66/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/67-68/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/69-70/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/7-8/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/71-72/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/73-74/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/75-76/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/77-78/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/79-80/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/81-82/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/83-84/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/85-86/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/87-88/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/89-90/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/9-10/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/91-92/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/93-94/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/95-96/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/97-98/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/apple_openelm-3b-instruct/99-100/_.json b/tests/logs/test_5/apple_openelm-3b-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/1-2/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/11-12/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/13-14/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/15-16/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/17-18/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/19-20/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/21-22/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/23-24/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/25-26/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/27-28/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/29-30/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/3-4/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/31-32/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/33-34/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/35-36/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/37-38/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/39-40/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/41-42/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/43-44/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/45-46/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/47-48/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/49-50/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/5-6/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/51-52/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/53-54/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/55-56/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/57-58/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/59-60/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/61-62/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/63-64/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/65-66/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/67-68/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/69-70/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/7-8/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/71-72/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/73-74/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/75-76/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/77-78/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/79-80/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/81-82/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/83-84/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/85-86/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/87-88/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/89-90/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/9-10/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/91-92/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/93-94/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/95-96/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/97-98/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/99-100/_.json b/tests/logs/test_5/meta-llama_llama-3.2-3b-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/1-2/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/1-2/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/11-12/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/11-12/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/13-14/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/13-14/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/15-16/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/15-16/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/17-18/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/17-18/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/19-20/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/19-20/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/21-22/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/21-22/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/23-24/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/23-24/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/25-26/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/25-26/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/27-28/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/27-28/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/29-30/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/29-30/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/3-4/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/3-4/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/31-32/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/31-32/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/33-34/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/33-34/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/35-36/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/35-36/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/37-38/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/37-38/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/39-40/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/39-40/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/41-42/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/41-42/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/43-44/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/43-44/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/45-46/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/45-46/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/47-48/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/47-48/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/49-50/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/49-50/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/5-6/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/5-6/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/51-52/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/51-52/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/53-54/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/53-54/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/55-56/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/55-56/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/57-58/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/57-58/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/59-60/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/59-60/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/61-62/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/61-62/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/63-64/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/63-64/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/65-66/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/65-66/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/67-68/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/67-68/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/69-70/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/69-70/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/7-8/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/7-8/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/71-72/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/71-72/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/73-74/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/73-74/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/75-76/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/75-76/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/77-78/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/77-78/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/79-80/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/79-80/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/81-82/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/81-82/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/83-84/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/83-84/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/85-86/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/85-86/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/87-88/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/87-88/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/89-90/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/89-90/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/9-10/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/9-10/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/91-92/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/91-92/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/93-94/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/93-94/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/95-96/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/95-96/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/97-98/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/97-98/_.json new file mode 100644 index 000000000..e69de29bb diff --git a/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/99-100/_.json b/tests/logs/test_5/microsoft_phi-3-mini-4k-instruct/99-100/_.json new file mode 100644 index 000000000..e69de29bb