Files
longhaul.cpp/examples/model-conversion/scripts/utils/curl-embedding-server.sh
T
2026-07-29 01:00:10 -05:00

7 lines
193 B
Bash
Executable File

#!/usr/bin/env bash
curl --request POST \
--url http://localhost:8080/embedding \
--header "Content-Type: application/json" \
--data '{"input": "Hello world today"}' \
--silent