mirror of
https://github.com/LeeGaoGao/ECC.git
synced 2026-07-22 02:33:06 +00:00
34 lines
678 B
Python
34 lines
678 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__ = [
|
|
"LLMProvider",
|
|
"LLMInput",
|
|
"LLMOutput",
|
|
"Message",
|
|
"get_provider",
|
|
"ToolCall",
|
|
"ToolDefinition",
|
|
"ToolResult",
|
|
"ToolExecutor",
|
|
"ToolRegistry",
|
|
"interactive_select",
|
|
]
|
|
|
|
|
|
def gui() -> None:
|
|
from llm.gui.selector import main
|
|
main()
|
|
|