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