mirror of
https://github.com/HKUDS/OpenSpace.git
synced 2026-08-28 05:15:00 +00:00
27 lines
744 B
Python
27 lines
744 B
Python
from .provider import GUIProvider
|
|
from .session import GUISession
|
|
from .hooks import VisualAnalysisHook
|
|
from .transport.connector import GUIConnector
|
|
from .transport.local_connector import LocalGUIConnector
|
|
|
|
try:
|
|
from .anthropic_client import AnthropicGUIClient as AnthropicGUIClient
|
|
from . import anthropic_utils as anthropic_utils
|
|
_anthropic_available = True
|
|
except ImportError:
|
|
_anthropic_available = False
|
|
|
|
__all__ = [
|
|
# Core Provider and Session
|
|
"GUIProvider",
|
|
"GUISession",
|
|
"VisualAnalysisHook",
|
|
|
|
# Transport layer
|
|
"GUIConnector",
|
|
"LocalGUIConnector",
|
|
]
|
|
|
|
# Add Anthropic modules to exports if available
|
|
if _anthropic_available:
|
|
__all__.extend(["AnthropicGUIClient", "anthropic_utils"])
|