Skip to content

Commit

Permalink
fix: changed stream parameter to streaming in curl command
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Maturino <[email protected]>
  • Loading branch information
jjmaturino committed Dec 12, 2024
1 parent c36c503 commit 6b79f0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions comps/llms/text-generation/predictionguard/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}'
```

Expand All @@ -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"
}'
```

0 comments on commit 6b79f0a

Please sign in to comment.