From e3455cd0451d051cd388e346773a930d4ad865d2 Mon Sep 17 00:00:00 2001 From: Nitin Patel Date: Mon, 24 Feb 2025 01:00:07 +0530 Subject: [PATCH] fix missing comma --- litellm/llms/perplexity/chat/transformation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/litellm/llms/perplexity/chat/transformation.py b/litellm/llms/perplexity/chat/transformation.py index 8f71cc153f..dab64283ec 100644 --- a/litellm/llms/perplexity/chat/transformation.py +++ b/litellm/llms/perplexity/chat/transformation.py @@ -37,6 +37,7 @@ class PerplexityChatConfig(OpenAIGPTConfig): "response_format", "stream", "temperature", - "top_p" "max_retries", + "top_p", + "max_retries", "extra_headers", ]