From b7e7beb4f0d5ec2b8ca36d3d60faaad921ea9039 Mon Sep 17 00:00:00 2001 From: kgrim Date: Sun, 2 Feb 2025 12:16:29 +0100 Subject: [PATCH] Update `__all__` to include `LLMPersonaIdentity` --- neon_data_models/models/api/llm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neon_data_models/models/api/llm.py b/neon_data_models/models/api/llm.py index f02877e..714ca41 100644 --- a/neon_data_models/models/api/llm.py +++ b/neon_data_models/models/api/llm.py @@ -199,4 +199,4 @@ def validate_inputs(cls, values): return values -__all__ = [LLMPersona.__name__, LLMRequest.__name__, LLMResponse.__name__] +__all__ = [LLMPersonaIdentity.__name__, LLMPersona.__name__, LLMRequest.__name__, LLMResponse.__name__]