File size: 537 Bytes
8c0b652
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
# Test the HuggingFace Space endpoint to verify model configurations

SPACE_URL="https://jeanbaptdzd-linguacustodia-financial-api.hf.space"

echo "🧪 Testing HuggingFace Space Model Configuration Endpoint"
echo "========================================================="
echo ""
echo "Endpoint: ${SPACE_URL}/test/model-configs"
echo ""

# Test the endpoint
curl -s "${SPACE_URL}/test/model-configs" | python3 -m json.tool

echo ""
echo "========================================================="
echo "✅ Test complete!"