Initial commit: add .gitignore and README
Some checks failed
Tests / test (3.10) (push) Has been cancelled
Tests / test (3.11) (push) Has been cancelled
Tests / test (3.12) (push) Has been cancelled
Tests / lint (push) Has been cancelled
Tests / docker (push) Has been cancelled

This commit is contained in:
defiQUG
2026-02-09 21:51:42 -08:00
commit c052b07662
3146 changed files with 808305 additions and 0 deletions

View 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",
]