File size: 200 Bytes
4c96de6 |
1 2 3 4 5 6 7 8 9 10 |
#!/bin/sh
set -x
curl \
--request POST \
--url http://localhost:4999 \
--header 'Content-Type: application/json' \
--data '{"inputs": ["Please embed me", "And me too, please!"]}' \
-w "\n"
|