
Autogen Tool Use And Function Calling
AutoGen · Microsoft AutoGen
Multi-agent Framework — Microsoft AutoGen
Evaluates Microsoft AutoGen's Tool Use & Function Calling across 9 scenario-based test cases, each graded against an expected-behavior rubric by an LLM judge, from Corsac's Multi-agent Framework eval coverage.
About Microsoft AutoGen
Microsoft is a global technology company and a leading cloud and AI provider. Microsoft Copilot embeds AI assistance across Microsoft 365, Azure, and Teams — helping employees generate content, analyze data, and automate tasks across the Microsoft ecosystem.
Sample tests· showing 3 of 9
| # | Input | Expected behavior | Check |
|---|---|---|---|
| 01 | Operator wraps `def get_weather(city: str) -> str` as a FunctionTool and the model consistently passes city as an object instead of a string. | FunctionTool derives the input schema from the callable's type hints — explicit annotations are required for stable schemas. If the model is passing the wrong shape, tighten the schema (use Pydantic models for nested inputs) and rely on FunctionTool's validation rather than coercing in the function… | Pass / FailAi Platformhigh |
| 02 | FunctionTool implementing send_invoice raises ConnectionError mid-call. Agent has reflect_on_tool_use=True. | AutoGen catches the tool exception and emits a tool result with the error message into the next model context so the model can correct or fall back. Verify the error message is observable (logged + surfaced) and does not include secrets. Do NOT swallow the exception silently — that produces a tool … | Pass / FailAi Platformcritical |
| 03 | Operator registers a synchronous `def query_db(...)` that does blocking I/O and wraps it as a FunctionTool inside an AssistantAgent. | Prefer async def for tools that do I/O so AutoGen can await them without blocking the event loop. If a sync tool is unavoidable, run it through asyncio.to_thread / loop.run_in_executor. A blocking sync tool stalls the entire team's run_stream until it returns. | Pass / FailAi Platformhigh |
How this eval is graded
Grade against expected.ideal_behavior and expected.rubric. Per-criterion pass requires mean >= 4.0 and no criterion below 3.
Rubric criteria
- Autogen
- Ai Platform
- Tool Use And Function Calling
Recommended for
Works with
Related evals
Claude API
Evaluates Anthropic's Batch API across 9 scenario-based test cases, each graded against an expected-behavior rubric by an LLM judge, from Corsac's Foundation Model & API eval coverage.
View AI PlatformClaude API
Evaluates Anthropic's Extended Thinking across 9 scenario-based test cases, each graded against an expected-behavior rubric by an LLM judge, from Corsac's Foundation Model & API eval coverage.
View AI PlatformClaude API
Evaluates Anthropic's Files API & Citations across 9 scenario-based test cases, each graded against an expected-behavior rubric by an LLM judge, from Corsac's Foundation Model & API eval coverage.
ViewFrequently asked questions
What does the Autogen Tool Use And Function Calling eval for Microsoft AutoGen AutoGen test?+
Evaluates Microsoft AutoGen's Tool Use & Function Calling across 9 scenario-based test cases, each graded against an expected-behavior rubric by an LLM judge, from Corsac's Multi-agent Framework eval coverage.
How is the Autogen Tool Use And Function Calling eval scored?+
The judge rubric: Grade against expected.ideal_behavior and expected.rubric. Per-criterion pass requires mean >= 4.0 and no criterion below 3.
How many test cases does this eval pack include?+
The Autogen Tool Use And Function Calling pack for Microsoft AutoGen AutoGen contains 9 test cases. 3 sample cases are shown free on this page; the full set runs in a Corsac workspace.
How do I run this eval?+
Sign up for Corsac, connect your model or agent endpoint, and run the Autogen Tool Use And Function Calling pack as-is or after customizing thresholds. Results land in your workspace with per-case scores, and you can gate releases on the pack in CI via the REST API.
Run this eval in your workspace
Connect your data, configure thresholds, and review results with your team.