Aurvion / llama.cpp /examples /model-conversion /scripts /utils /curl-embedding-server.sh
OmnipotentFool's picture
Add files using upload-large-folder tool
db65755 verified
Raw
History Blame Contribute Delete
199 Bytes
#!/usr/bin/env bash
curl --request POST \
--url http://localhost:8080/embedding \
--header "Content-Type: application/json" \
--data '{"input": "Hello world today"}' \
--silent