From 3c6785c207da2fcc76105d675024433fb9afdd09 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 19 Jun 2024 16:49:45 -0700 Subject: [PATCH] add ft:gpt4 --- litellm/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/utils.py b/litellm/utils.py index 8b207d26e..65896f0cd 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -4050,6 +4050,7 @@ def get_llm_provider( if ( model in litellm.open_ai_chat_completion_models or "ft:gpt-3.5-turbo" in model + or "ft:gpt-4" in model # catches ft:gpt-4-0613, ft:gpt-4o or model in litellm.openai_image_generation_models ): custom_llm_provider = "openai"