From 8ada5a469dd9f4622e94ac962aa27ef56b9d1024 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Tue, 11 Mar 2025 22:02:48 -0700 Subject: [PATCH] add responses api to call types --- litellm/types/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/types/utils.py b/litellm/types/utils.py index 4af88100faf..04b76f3a2e4 100644 --- a/litellm/types/utils.py +++ b/litellm/types/utils.py @@ -191,6 +191,8 @@ class CallTypes(Enum): retrieve_batch = "retrieve_batch" pass_through = "pass_through_endpoint" anthropic_messages = "anthropic_messages" + responses = "responses" + aresponses = "aresponses" CallTypesLiteral = Literal[