Initial commit: add .gitignore and README
This commit is contained in:
30
fusionagi/interfaces/__init__.py
Normal file
30
fusionagi/interfaces/__init__.py
Normal file
@@ -0,0 +1,30 @@
|
||||
"""Multi-modal interface layer for FusionAGI.
|
||||
|
||||
Provides admin control panel, user interfaces, and sensory interaction adapters.
|
||||
"""
|
||||
|
||||
from fusionagi.interfaces.base import (
|
||||
InterfaceAdapter,
|
||||
InterfaceCapabilities,
|
||||
InterfaceMessage,
|
||||
ModalityType,
|
||||
)
|
||||
from fusionagi.interfaces.voice import VoiceInterface, VoiceLibrary, TTSAdapter, STTAdapter
|
||||
from fusionagi.interfaces.conversation import ConversationManager, ConversationTuner
|
||||
from fusionagi.interfaces.admin_panel import AdminControlPanel
|
||||
from fusionagi.interfaces.multimodal_ui import MultiModalUI
|
||||
|
||||
__all__ = [
|
||||
"InterfaceAdapter",
|
||||
"InterfaceCapabilities",
|
||||
"InterfaceMessage",
|
||||
"ModalityType",
|
||||
"VoiceInterface",
|
||||
"VoiceLibrary",
|
||||
"TTSAdapter",
|
||||
"STTAdapter",
|
||||
"ConversationManager",
|
||||
"ConversationTuner",
|
||||
"AdminControlPanel",
|
||||
"MultiModalUI",
|
||||
]
|
||||
Reference in New Issue
Block a user