Spaces:
Sleeping
Sleeping
File size: 437 Bytes
6accb61 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
"""
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"
]
|