From 95aaef4f94da7c8077d54c9e8caacd1e4c45a11a Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 12 Jun 2024 16:32:16 -0700 Subject: [PATCH] feat - add async support for clarifai --- litellm/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/main.py b/litellm/main.py index 8133e3517..bd657e686 100644 --- a/litellm/main.py +++ b/litellm/main.py @@ -335,6 +335,7 @@ async def acompletion( or custom_llm_provider == "predibase" or custom_llm_provider == "bedrock" or custom_llm_provider == "databricks" + or custom_llm_provider == "clarifai" or custom_llm_provider in litellm.openai_compatible_providers ): # currently implemented aiohttp calls for just azure, openai, hf, ollama, vertex ai soon all. init_response = await loop.run_in_executor(None, func_with_context)