From a6a388d3d049ddcd2b62b99125b0bacaac3f2085 Mon Sep 17 00:00:00 2001 From: lasseedfast Date: Thu, 18 Sep 2025 15:12:50 +0200 Subject: [PATCH] Refactor LLM class export: update import statement and define public API --- _llm/__init__.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/_llm/__init__.py b/_llm/__init__.py index 80c62f8..6520687 100644 --- a/_llm/__init__.py +++ b/_llm/__init__.py @@ -1,7 +1,7 @@ -# """ -# llm_client: A Python package for interacting with LLM models through Ollama. -# """ +# ...existing code... +# Export the LLM class so "from _llm import LLM" works. +from .llm import LLM # re-export the class from the module -# from ._llm.llm import LLM # Use relative import with dot prefix - -# __all__ = ["LLM"] \ No newline at end of file +# Define public API +__all__ = ["LLM"] +# ...existing code... \ No newline at end of file