File size: 320 Bytes
8917e98 |
1 2 3 4 5 6 7 8 9 10 11 |
curl "https://<your own inference endpoint>.endpoints.huggingface.cloud" \
-X POST \
-H "Accept: application/json" \
-H "Authorization: Bearer hf_<your own token>" \
-H "Content-Type: application/json" \
-d '{
"inputs": "underwater footage, clownfishes swimming around coral",
"parameters": {}
}' > output.json
|