import asyncio from workflows import Workflow, step from workflows.events import Event, StartEvent, StopEvent class BriefRequest(StartEvent): topic: str audience: str = "team" class DraftEvent(Event): topic: str audience: str bullets: list[str] class BriefResult(StopEvent): topic: str bullets: list[str] summary: str