legacy
parent
c998de1077
commit
aba0951534
6 changed files with 32 additions and 13 deletions
@ -0,0 +1,7 @@ |
|||||||
|
""" |
||||||
|
llm_client: A Python package for interacting with LLM models through Ollama. |
||||||
|
""" |
||||||
|
|
||||||
|
from _llm.llm import LLM |
||||||
|
|
||||||
|
__all__ = ["LLM"] |
||||||
@ -1,4 +1,7 @@ |
|||||||
from .llm import LLM, remove_thinking |
""" |
||||||
|
llm_client: A Python package for interacting with LLM models through Ollama. |
||||||
|
""" |
||||||
|
|
||||||
__version__ = "0.1.0" |
from _llm.llm import LLM |
||||||
__all__ = ["LLM", "remove_thinking"] |
|
||||||
|
__all__ = ["LLM"] |
||||||
@ -0,0 +1,7 @@ |
|||||||
|
""" |
||||||
|
llm_client package entry point to simplify imports |
||||||
|
""" |
||||||
|
|
||||||
|
from _llm import LLM |
||||||
|
|
||||||
|
__all__ = ["LLM"] |
||||||
Loading…
Reference in new issue