mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-15 22:43:28 +08:00
34 lines
711 B
Python
34 lines
711 B
Python
"""
|
|
LLM Abstraction Layer
|
|
|
|
Provider-agnostic interface for multiple LLM backends.
|
|
"""
|
|
|
|
from llm.core.interface import LLMProvider
|
|
from llm.core.types import LLMInput, LLMOutput, Message, ToolCall, ToolDefinition, ToolResult
|
|
from llm.providers import get_provider
|
|
from llm.tools import ToolExecutor, ToolRegistry
|
|
from llm.cli.selector import interactive_select
|
|
|
|
__version__ = "0.1.0"
|
|
|
|
__all__ = (
|
|
"LLMInput",
|
|
"LLMOutput",
|
|
"LLMProvider",
|
|
"Message",
|
|
"ToolCall",
|
|
"ToolDefinition",
|
|
"ToolResult",
|
|
"ToolExecutor",
|
|
"ToolRegistry",
|
|
"get_provider",
|
|
"interactive_select",
|
|
)
|
|
|
|
|
|
def gui() -> None:
|
|
from llm.cli.selector import main
|
|
main()
|
|
|