From 4139e437d1e1941bc57baf8de0058ca1f30e5347 Mon Sep 17 00:00:00 2001 From: Sameer Kankute Date: Wed, 15 Apr 2026 17:42:26 +0530 Subject: [PATCH] Fix docs --- docs/my-website/blog/advisor_tool_chat_completions/index.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/my-website/blog/advisor_tool_chat_completions/index.md b/docs/my-website/blog/advisor_tool_chat_completions/index.md index cbe9b7dfe12..4e536c6800f 100644 --- a/docs/my-website/blog/advisor_tool_chat_completions/index.md +++ b/docs/my-website/blog/advisor_tool_chat_completions/index.md @@ -107,11 +107,9 @@ from litellm.integrations.advisor_interception import AdvisorInterceptionLogger litellm.callbacks = [ AdvisorInterceptionLogger( - # Any provider LiteLLM supports. Use full model string for direct calls, - # or a model_name from your model_list when using the proxy router. + default_advisor_model="openai/gpt-4o", - # Optional: limit interception to specific executor providers. - # Remove this line to intercept for all providers. + enabled_providers=["anthropic", "openai"], ) ]