From afa2e2eba960948e5163efca54641629e7d2b1d3 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Sat, 6 Apr 2024 08:35:43 -0700 Subject: [PATCH] docs(anthropic.md): update anthropic docs to show 'tool' param usage --- docs/my-website/docs/providers/anthropic.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/my-website/docs/providers/anthropic.md b/docs/my-website/docs/providers/anthropic.md index 22e9eb55966..0f9ba88ff37 100644 --- a/docs/my-website/docs/providers/anthropic.md +++ b/docs/my-website/docs/providers/anthropic.md @@ -177,11 +177,7 @@ print(response) :::info -Claude returns it's output as an XML Tree. [Here is how we translate it](https://github.com/BerriAI/litellm/blob/49642a5b00a53b1babc1a753426a8afcac85dbbe/litellm/llms/prompt_templates/factory.py#L734). - -You can see the raw response via `response._hidden_params["original_response"]`. - -Claude hallucinates, e.g. returning the list param `value` as `\napple\nbanana\n` or `\n\napple\nbanana\n\n`. +LiteLLM now uses Anthropic's 'tool' param 🎉 (v1.34.29+) ::: ```python