17 lines
618 B
Bash
17 lines
618 B
Bash
curl 'http://localhost:8080/v1/chat/completions' \
|
|
-X POST \
|
|
-H 'User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:146.0) Gecko/20100101 Firefox/146.0' \
|
|
-H 'Accept: */*' \
|
|
-H 'Accept-Language: en-US,en;q=0.5' \
|
|
-H 'Accept-Encoding: gzip, deflate, br, zstd' \
|
|
-H 'Referer: http://localhost:8080/' \
|
|
-H 'Content-Type: application/json' \
|
|
-H 'Origin: http://localhost:8080' \
|
|
-H 'Connection: keep-alive' \
|
|
-H 'Sec-Fetch-Dest: empty' \
|
|
-H 'Sec-Fetch-Mode: cors' \
|
|
-H 'Sec-Fetch-Site: same-origin' \
|
|
-H 'Priority: u=4' \
|
|
-H 'Pragma: no-cache' \
|
|
-H 'Cache-Control: no-cache' \
|
|
--data @req.json
|