Back to Agents
M
AutoGen
by Microsoft Research · v0.4
AutoGen is a framework from Microsoft Research that enables the development of LLM applications using multiple agents that can converse with each other to solve tasks. AutoGen agents are customizable, conversable, and seamlessly allow human participation. They can operate in various modes that employ combinations of LLMs, human inputs, and tools.
multi-agentconversationmicrosoftAutomation
Agent Card
Protocols
REST APIPython SDKA2A
Capabilities
multi-agent-chatcode-executiontool-usagehuman-in-loop
Input / Output
INPUT:
textcode
OUTPUT:
textcodestructured-data
Authentication
API Key
API ENDPOINT:
https://autogen.microsoft.com/api
Quick Start
# Install and configure
curl -X POST https://autogen.microsoft.com/api/agents \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"task": "your task here"}'