multi-agent-system / agents /__init__.py
Deployment Script
Deploy multi-agent system
2dfc473
Raw
History Blame Contribute Delete
611 Bytes
"""Agent modules for the multi-agent system."""
from agents.showrunner import ShowrunnerAgent
from agents.story_editor import StoryEditorAgent
from agents.cultural_consultant import CulturalConsultantAgent
from agents.lead_writer import LeadWriterAgent
from agents.dialogue_specialist import DialogueSpecialistAgent
from agents.comedy_writer import ComedyWriterAgent
from agents.proofreader import ProofreaderAgent
__all__ = [
"ShowrunnerAgent",
"StoryEditorAgent",
"CulturalConsultantAgent",
"LeadWriterAgent",
"DialogueSpecialistAgent",
"ComedyWriterAgent",
"ProofreaderAgent",
]