From de8a3d53693b35aa77246337d37b18d36a543e2f Mon Sep 17 00:00:00 2001 From: Yusuke Kawabata Date: Sun, 17 Dec 2023 12:00:06 +0900 Subject: [PATCH] fix curl example Remove unnecessary `,` from curl example --- docs/my-website/docs/proxy/quick_start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/my-website/docs/proxy/quick_start.md b/docs/my-website/docs/proxy/quick_start.md index c4dcfe6ae..977ebfb51 100644 --- a/docs/my-website/docs/proxy/quick_start.md +++ b/docs/my-website/docs/proxy/quick_start.md @@ -58,7 +58,7 @@ curl --location 'http://0.0.0.0:8000/chat/completions' \ "role": "user", "content": "what llm are you" } - ], + ] } ' ``` @@ -604,4 +604,4 @@ curl -X POST \ https://api.openai.com/v1/chat/completions \ -H 'content-type: application/json' -H 'Authorization: Bearer sk-qnWGUIW9****************************************' \ -d '{"model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "this is a test request, write a short poem"}]}' -``` \ No newline at end of file +```