Initial upload: Local LLM Prompt Manager CLI tool
Some checks failed
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-05 20:56:06 +00:00
parent a9d8992203
commit cd202d443b

13
src/llm/__init__.py Normal file
View 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",
]