From 6b7f5a92b681989015e51f3ceaea30e309772de5 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Fri, 31 May 2024 09:12:14 -0700 Subject: [PATCH] fix - add send_invite_email to GenerateKeyRequest --- litellm/proxy/_types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/proxy/_types.py b/litellm/proxy/_types.py index d77d096e94f..c22ae02f33f 100644 --- a/litellm/proxy/_types.py +++ b/litellm/proxy/_types.py @@ -510,6 +510,7 @@ class GenerateKeyRequest(GenerateRequestBase): ) # {"gpt-4": 5.0, "gpt-3.5-turbo": 5.0}, defaults to {} model_config = ConfigDict(protected_namespaces=()) + send_invite_email: Optional[bool] = None class GenerateKeyResponse(GenerateKeyRequest):