agents-course-v2 / prompts /__init__.py
D3MI4N's picture
first working version
6accb61
raw
history blame contribute delete
437 Bytes
"""
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"
]