From 30b80afe31cc2f4d50da36ff00e9cb716c3a0dce Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Tue, 28 Nov 2023 08:49:14 -0800 Subject: [PATCH] (docs) fix local debugging --- docs/my-website/docs/debugging/local_debugging.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/my-website/docs/debugging/local_debugging.md b/docs/my-website/docs/debugging/local_debugging.md index 73cb0d27da..87faef73e4 100644 --- a/docs/my-website/docs/debugging/local_debugging.md +++ b/docs/my-website/docs/debugging/local_debugging.md @@ -5,6 +5,7 @@ There's 2 ways to do local debugging - `litellm.set_verbose=True` and by passing This is good for getting print statements for everything litellm is doing. ```python +import litellm from litellm import completion litellm.set_verbose=True # 👈 this is the 1-line change you need to make