From dce1f5466fb01114fad6236bd91acbdac0beaa66 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Mon, 15 Apr 2024 08:51:26 -0700 Subject: [PATCH] fix(anthropic_text.py): return process_response value --- litellm/llms/anthropic_text.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/llms/anthropic_text.py b/litellm/llms/anthropic_text.py index af6942d909c..77c8e04d9b5 100644 --- a/litellm/llms/anthropic_text.py +++ b/litellm/llms/anthropic_text.py @@ -139,6 +139,8 @@ class AnthropicTextCompletion(BaseLLM): ) model_response.usage = usage + return model_response + async def async_completion( self, model: str,