From 6b930e608ed5be19f3baee37901ca063ab317fc5 Mon Sep 17 00:00:00 2001 From: Cheng Zhang <102538889+ChengZhang-98@users.noreply.github.com> Date: Mon, 11 May 2026 15:00:05 +0100 Subject: [PATCH] Add LLAMA to LlmServiceProvider enum --- src/sequrity/types/enums.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sequrity/types/enums.py b/src/sequrity/types/enums.py index bcd9409..0c8f1b3 100644 --- a/src/sequrity/types/enums.py +++ b/src/sequrity/types/enums.py @@ -25,6 +25,7 @@ class LlmServiceProvider(StrEnum): OPENROUTER = "openrouter" ANTHROPIC = "anthropic" SEQURITY_AZURE = "sequrity_azure" + LLAMA = "llama" LlmServiceProviderStr = Literal["openai", "openrouter", "anthropic", "sequrity_azure"]