File size: 998 Bytes
6a911c8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
"""
Intelligent Agent Orchestration Workflows for Research-to-Code Automation.
This package provides advanced AI-driven workflow orchestration capabilities
for automated research analysis and code implementation synthesis.
"""
from .agent_orchestration_engine import (
run_research_analyzer,
run_resource_processor,
run_code_analyzer,
github_repo_download,
paper_reference_analyzer,
execute_multi_agent_research_pipeline,
paper_code_preparation, # Deprecated, for backward compatibility
)
from .code_implementation_workflow import CodeImplementationWorkflow
__all__ = [
# Initial workflows
"run_research_analyzer",
"run_resource_processor",
"run_code_analyzer",
"github_repo_download",
"paper_reference_analyzer",
"execute_multi_agent_research_pipeline", # Main multi-agent pipeline function
"paper_code_preparation", # Deprecated, for backward compatibility
# Code implementation workflows
"CodeImplementationWorkflow",
]
|