From 6772c1561c8bbaec89518ae54efe824ea09edf59 Mon Sep 17 00:00:00 2001 From: Alexander Thiess Date: Tue, 16 Sep 2025 16:10:54 +0200 Subject: [PATCH] added module to package --- src/llmutils/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"]