From bcbc6c469381c83ea2f08de10f5078147b73516a Mon Sep 17 00:00:00 2001 From: geoffsee <> Date: Tue, 2 Sep 2025 13:58:34 -0400 Subject: [PATCH] fix invalid endpoint in curl_stream_script.sh --- scripts/curl_chat_stream.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/curl_chat_stream.sh b/scripts/curl_chat_stream.sh index c09e159..3567f23 100755 --- a/scripts/curl_chat_stream.sh +++ b/scripts/curl_chat_stream.sh @@ -35,7 +35,7 @@ curl -N -sS -X POST \ --connect-timeout "$CONNECT_TIMEOUT" \ --max-time "$MAX_TIME" \ -H "Content-Type: application/json" \ - "$SERVER_URL/v1/chat/completions/stream" \ + "$SERVER_URL/v1/chat/completions" \ -d @- <