MusaR's picture
Update research_agent/__init__.py
9c8d866 verified
raw
history blame contribute delete
580 Bytes
# research_agent/__init__.py
"""
Research Agent Package
A comprehensive AI-powered research assistant that can:
- Generate clarifying questions for research topics
- Create detailed research plans
- Conduct web searches and analysis
- Write structured research reports with sources
"""
from .config import AgentConfig
from .agent import get_clarifying_questions, research_and_plan, write_report_stream
__version__ = "1.0.0"
__author__ = "Research Agent Team"
__all__ = [
"AgentConfig",
"get_clarifying_questions",
"research_and_plan",
"write_report_stream"
]