From a69384598c3caabd1f0d339bef14ef4b360fc1bc Mon Sep 17 00:00:00 2001 From: Sameer Kankute Date: Wed, 10 Dec 2025 17:21:15 +0530 Subject: [PATCH] Fix:Argument llm_provider --- litellm/llms/anthropic/batches/handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/llms/anthropic/batches/handler.py b/litellm/llms/anthropic/batches/handler.py index 3061abda96..31f3e91f14 100644 --- a/litellm/llms/anthropic/batches/handler.py +++ b/litellm/llms/anthropic/batches/handler.py @@ -11,7 +11,7 @@ from litellm.llms.custom_httpx.http_handler import ( get_async_httpx_client, ) from litellm.types.llms.openai import RetrieveBatchRequest -from litellm.types.utils import LiteLLMBatch +from litellm.types.utils import LiteLLMBatch, LlmProviders if TYPE_CHECKING: from litellm.litellm_core_utils.litellm_logging import Logging as LiteLLMLoggingObj @@ -106,7 +106,7 @@ class AnthropicBatchesHandler: }, ) # Make the request - async_client = get_async_httpx_client(llm_provider="anthropic") + async_client = get_async_httpx_client(llm_provider=LlmProviders.ANTHROPIC) response = await async_client.get( url=retrieve_url, headers=headers