Build lightweight AI agent admin
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
"""
|
||||
LLM 提供商适配器
|
||||
"""
|
||||
from .base import (
|
||||
BaseLLMProvider,
|
||||
LLMResponse,
|
||||
LLMMessage,
|
||||
LLMConfig,
|
||||
LLMStreamChunk,
|
||||
ToolCall,
|
||||
ToolDefinition,
|
||||
)
|
||||
from .registry import ProviderRegistry
|
||||
|
||||
__all__ = [
|
||||
'BaseLLMProvider',
|
||||
'LLMResponse',
|
||||
'LLMMessage',
|
||||
'LLMConfig',
|
||||
'LLMStreamChunk',
|
||||
'ToolCall',
|
||||
'ToolDefinition',
|
||||
'ProviderRegistry',
|
||||
]
|
||||
Reference in New Issue
Block a user