[object Object]

← back to Exo

add space between outputs in github workflow integration test

774e620973932a76ad8bc8fa77d4d3ebb35f02bd · 2024-07-20 12:40:51 -0700 · Alex Cheema

Files touched

Diff

commit 774e620973932a76ad8bc8fa77d4d3ebb35f02bd
Author: Alex Cheema <alexcheema123@gmail.com>
Date:   Sat Jul 20 12:40:51 2024 -0700

    add space between outputs in github workflow integration test
---
 .github/workflows/test.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 8c87f320..ad4734b0 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -121,6 +121,7 @@ jobs:
               "messages": [{"role": "user", "content": "Placeholder to load model..."}],
               "temperature": 0.7
             }'
+
         curl -s http://localhost:8001/v1/chat/completions \
             -H "Content-Type: application/json" \
             -d '{
@@ -150,6 +151,7 @@ jobs:
         if ! echo "$response_1" | grep -q "Michael Jackson" || ! echo "$response_2" | grep -q "Michael Jackson"; then
           echo "Test failed: Response does not contain 'Michael Jackson'"
           echo "Response 1: $response_1"
+          echo ""
           echo "Response 2: $response_2"
           exit 1
         else
@@ -167,6 +169,7 @@ jobs:
           echo "Test failed: Devices did not discover each other"
           echo "Output of first instance:"
           cat output1.log
+          echo ""
           echo "Output of second instance:"
           cat output2.log
           exit 1

← a2a7ca1f cleaner node info =  ·  back to Exo  ·  disable tinygrad test again, we need a smaller model or a ma 9d939b37 →