Spaces:
Running
Running
File size: 638 Bytes
399b80c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | from .provider import GUIProvider
from .session import GUISession
from .transport.connector import GUIConnector
from .transport.local_connector import LocalGUIConnector
try:
from .anthropic_client import AnthropicGUIClient
from . import anthropic_utils
_anthropic_available = True
except ImportError:
_anthropic_available = False
__all__ = [
# Core Provider and Session
"GUIProvider",
"GUISession",
# Transport layer
"GUIConnector",
"LocalGUIConnector",
]
# Add Anthropic modules to exports if available
if _anthropic_available:
__all__.extend(["AnthropicGUIClient", "anthropic_utils"]) |