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