dragonllm-finance-models / test_hf_endpoint.sh
jeanbaptdzd's picture
feat: Clean deployment to HuggingFace Space with model config test endpoint
8c0b652
raw
history blame contribute delete
537 Bytes
#!/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!"