Spaces:
Sleeping
Sleeping
| """ | |
| Centralized prompts module for GAIA benchmark agents. | |
| Import all agent prompts from their respective files. | |
| """ | |
| from .orchestrator import ORCHESTRATOR_SYSTEM_PROMPT | |
| from .retriever import RETRIEVER_SYSTEM_PROMPT | |
| from .research import RESEARCH_SYSTEM_PROMPT | |
| from .math import MATH_SYSTEM_PROMPT | |
| __all__ = [ | |
| "ORCHESTRATOR_SYSTEM_PROMPT", | |
| "RETRIEVER_SYSTEM_PROMPT", | |
| "RESEARCH_SYSTEM_PROMPT", | |
| "MATH_SYSTEM_PROMPT" | |
| ] | |