diff --git a/comps/llms/text-generation/predictionguard/README.md b/comps/llms/text-generation/predictionguard/README.md index bbd2ef20cc..a38bdd6b0e 100644 --- a/comps/llms/text-generation/predictionguard/README.md +++ b/comps/llms/text-generation/predictionguard/README.md @@ -33,7 +33,7 @@ curl -X POST http://localhost:9000/v1/chat/completions \ "temperature": 0.7, "top_p": 0.9, "top_k": 50, - "stream": false + "streaming": "false" }' ``` @@ -49,6 +49,6 @@ curl -N -X POST http://localhost:9000/v1/chat/completions \ "temperature": 0.7, "top_p": 0.9, "top_k": 50, - "stream": true + "streaming": "true" }' ```