From 73a8a737b23fc195c52ef1d9021993fd13e28e33 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Wed, 13 Aug 2025 18:23:18 -0700 Subject: [PATCH] docs: Improve the multimodal examples slightly --- docs/12 - OpenAI API.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/12 - OpenAI API.md b/docs/12 - OpenAI API.md index 83bba41f..227541a3 100644 --- a/docs/12 - OpenAI API.md +++ b/docs/12 - OpenAI API.md @@ -93,7 +93,10 @@ curl http://127.0.0.1:5000/v1/chat/completions \ {"type": "image_url", "image_url": {"url": "https://github.com/turboderp-org/exllamav3/blob/master/examples/media/cat.png?raw=true"}} ] } - ] + ], + "temperature": 0.6, + "top_p": 0.95, + "top_k": 20 }' ``` @@ -127,7 +130,10 @@ curl http://127.0.0.1:5000/v1/completions \ } ] } - ] + ], + "temperature": 0.6, + "top_p": 0.95, + "top_k": 20 }' ```