AI Agent Frameworks / Quiz

AutoGen: ConversableAgent Basics

Two agents talking until someone says TERMINATE. AutoGen's conversation loop is simple, and every parameter of it is a test concern.

Difficulty
Easy
Format
Quiz
Points
100
Estimate
8 min

// MISSION BRIEF

Your Mission

AutoGen builds multi-agent systems from ConversableAgents: an AssistantAgent that thinks and a UserProxyAgent that executes, chatting turn by turn. Who stops the loop, who runs the code, and what you can assert afterward, that is this quiz.

Scoring: equal weight per question.

// FIRST CONTACT

Battle teaser

The classic AutoGen two-agent pattern starts with:

  1. Aassistant.deploy() followed by proxy.listen()
  2. Buser_proxy.initiate_chat(assistant, message="..."), which kicks off an alternating conversation between the two agents
  3. CA shared spreadsheet both agents edit
  4. DRunning two separate Python processes
Answers, scoring, hints, and the full battle stay sealed.

// SKILL TAGS

autogenconversable-agentmulti-agentai-agents