From 16d09b1dd3b6c1fc162b292e86e041df5aa8cfc0 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Tue, 20 Aug 2024 08:45:44 -0700 Subject: [PATCH] fix test codestral api --- litellm/llms/text_completion_codestral.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/llms/text_completion_codestral.py b/litellm/llms/text_completion_codestral.py index a6865b9533c..9dbe3bb37bf 100644 --- a/litellm/llms/text_completion_codestral.py +++ b/litellm/llms/text_completion_codestral.py @@ -365,6 +365,7 @@ class CodestralTextCompletion(BaseLLM): stream = optional_params.pop("stream", False) data = { + "model": model, "prompt": prompt, **optional_params, }