Today's AI BETA
All Examples

How to build software with a multi-agent team in ChatDev

ChatDev 2.0 · by Anwar Zahid

A team of AI agents builds one small program together: one plans it, one writes the code, one reviews it, one tests it.

Hosted on our YouTube channel Watch on YouTube ↗

Prompt
Create a small command-line Python quiz game for an introductory programming class.

Requirements:
- Use only the Python standard library.
- Include exactly five multiple-choice questions about variables, loops, functions, lists, and dictionaries.
- Show one question at a time, validate the user's choice, give immediate feedback, and show a final score out of five.
- Keep question data separate from the game logic.
- Include automated tests for scoring and invalid input behavior.
- Include a README with run and test commands.
- Keep the interface text-only; do not create images or a web application.