From c2e59047f1b3b71f57ea89f129bbeb0a8976e873 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 a6865b9533..9dbe3bb37b 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, }