Skip to content

Commit

Permalink
fix: updated curl json parameters
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Maturino <[email protected]>
  • Loading branch information
jjmaturino committed Dec 18, 2024
1 parent 4cd8630 commit 6790dab
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 6790dab

Please sign in to comment.