Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/dmr-daily-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Test model pull and run
run: |
MODEL="${{ github.event.inputs.test_model }}"
MODEL="${{ github.event.inputs.test_model || 'ai/smollm2:360M-Q4_K_M' }}"
echo "Testing with model: $MODEL"

# Test model pull
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:

- name: Test API endpoint
run: |
MODEL="${{ github.event.inputs.test_model }}"
MODEL="${{ github.event.inputs.test_model || 'ai/smollm2:360M-Q4_K_M' }}"
echo "Testing API endpoint with model: $MODEL"

# Test API call with curl
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:

- name: Test model cleanup
run: |
MODEL="${{ github.event.inputs.test_model }}"
MODEL="${{ github.event.inputs.test_model || 'ai/smollm2:360M-Q4_K_M' }}"

echo "Cleaning up test model..."
sudo docker model rm "$MODEL" || echo "Model removal failed or model not found"
Expand Down