mirror of
https://github.com/HKUDS/OpenSpace.git
synced 2026-08-28 05:15:00 +00:00
12 lines
346 B
Python
12 lines
346 B
Python
"""Agent implementations and orchestration packages.
|
|
|
|
Import concrete classes from their owning modules:
|
|
|
|
from openspace.agents.grounding_agent import GroundingAgent
|
|
from openspace.agents.multi_agent_orchestrator import MultiAgentOrchestrator
|
|
from openspace.agents.turns.loop import run_grounding_turn
|
|
"""
|
|
|
|
__all__ = [
|
|
"turns",
|
|
]
|