From 17aa5aa214813c011bb950c99a8da3c1995ae7f8 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Mon, 27 May 2024 18:12:17 -0700 Subject: [PATCH] fix(openai.py): fix deepinfra supported params --- litellm/llms/openai.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/llms/openai.py b/litellm/llms/openai.py index 6197ec92243..05e6566ffa8 100644 --- a/litellm/llms/openai.py +++ b/litellm/llms/openai.py @@ -224,6 +224,7 @@ class DeepInfraConfig: def get_supported_openai_params(self): return [ + "stream", "frequency_penalty", "function_call", "functions",