diff --git a/src/llmutils/__init__.py b/src/llmutils/__init__.py index c0ba3df..adc7a98 100644 --- a/src/llmutils/__init__.py +++ b/src/llmutils/__init__.py @@ -1,6 +1,6 @@ """LLMUtils - Utilities for working with LLMs""" -from .prompt_manager import PromptManager +from .prompt_manager import PromptManager, ManagedPrompt __version__ = "0.1.0" -__all__ = ["PromptManager"] \ No newline at end of file +__all__ = ["PromptManager", "ManagedPrompt"]