From b5d069e7a474b4aa24969b96bca8c19bc932b67f Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Fri, 25 Aug 2023 21:41:16 -0700 Subject: [PATCH] Update readme.md --- cookbook/llm-ab-test-server/readme.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cookbook/llm-ab-test-server/readme.md b/cookbook/llm-ab-test-server/readme.md index 1b5713685..cfb7f26e7 100644 --- a/cookbook/llm-ab-test-server/readme.md +++ b/cookbook/llm-ab-test-server/readme.md @@ -134,6 +134,7 @@ print(response.text) ``` ### Curl Command +``` curl --location 'http://localhost:5000/chat/completions' \ --header 'Content-Type: application/json' \ --data '{ @@ -146,10 +147,14 @@ curl --location 'http://localhost:5000/chat/completions' \ } ' +``` +## Viewing Logs +After running your first `completion()` call litellm autogenerates a new logs dashboard for you. Link to your Logs dashboard is generated in the terminal / console. +Example Terminal Output with Log Dashboard - +Screenshot 2023-08-25 at 8 53 27 PM