Initial upload: Local LLM Prompt Manager CLI tool
This commit is contained in:
13
src/llm/__init__.py
Normal file
13
src/llm/__init__.py
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
"""LLM client implementations for local LLM runners."""
|
||||||
|
|
||||||
|
from .base import LLMClient
|
||||||
|
from .llm_factory import LLMClientFactory
|
||||||
|
from .lmstudio import LMStudioClient
|
||||||
|
from .ollama import OllamaClient
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
"LLMClient",
|
||||||
|
"OllamaClient",
|
||||||
|
"LMStudioClient",
|
||||||
|
"LLMClientFactory",
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user