main.py 290 B

12345678910111213
  1. """Hello-Agents co-creation entry point for the MADF demo."""
  2. from demo_helloagents import run_demo
  3. def main():
  4. transcript = run_demo()
  5. for key in ("opening", "speech", "summary", "closing"):
  6. print(f"\n[{key}]\n{transcript[key]}")
  7. if __name__ == "__main__":
  8. main()