OpenSpace/openspace/grounding/backends/gui/__init__.py
2026-03-24 16:03:22 +08:00

25 lines
No EOL
638 B
Python

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"])