From 4cc59d21d06bbfd8afdf99def1af2a4413a4896f Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Wed, 27 Dec 2023 12:23:44 +0530 Subject: [PATCH] (feat) add text_completion, atext_completion CallTypes --- litellm/utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/litellm/utils.py b/litellm/utils.py index a23daa809f..53483830e0 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -691,9 +691,11 @@ from enum import Enum class CallTypes(Enum): embedding = "embedding" + aembedding = "aembedding" completion = "completion" acompletion = "acompletion" - aembedding = "aembedding" + atext_completion = "atext_completion" + text_completion = "text_completion" image_generation = "image_generation" aimage_generation = "aimage_generation"