From dface6a36fec2bbdd41571f61177217f4856209e Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Fri, 8 Dec 2023 18:47:18 -0800 Subject: [PATCH] (docs) traceloop --- docs/my-website/docs/proxy/logging.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/my-website/docs/proxy/logging.md b/docs/my-website/docs/proxy/logging.md index f5e54351b4..3b35acdbea 100644 --- a/docs/my-website/docs/proxy/logging.md +++ b/docs/my-website/docs/proxy/logging.md @@ -319,7 +319,17 @@ litellm --config config.yaml --debug Test Request ``` -litellm --test +curl --location 'http://0.0.0.0:8000/chat/completions' \ + --header 'Content-Type: application/json' \ + --data ' { + "model": "gpt-3.5-turbo", + "messages": [ + { + "role": "user", + "content": "what llm are you" + } + ] + }' ```