Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions articles/ai-foundry/default/agents/concepts/hosted-agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,27 @@ Foundry Agent Service handles:
- Python: `azure-ai-agentserver-core`, `azure-ai-agentserver-agentframework`, `azure-ai-agentserver-langgraph`
- .NET: `Azure.AI.AgentServer.Core`, `Azure.AI.AgentServer.AgentFramework`

### Agent sizes
Copy link

Copilot AI Dec 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The heading "Agent sizes" should be changed to "Agent replica sizes" to more accurately reflect that these values define the size of each replica, not the agent as a whole. The current heading could be misleading since the following text clarifies that "an agent can run multiple replicas." Using "Agent replica sizes" makes the scope clearer immediately.

Suggested change
### Agent sizes
### Agent replica sizes

Copilot uses AI. Check for mistakes.

Only the following CPU and memory pairs are currently supported for hosted agents. These values define the replica size; an agent can run multiple replicas.

| CPU (cores) | Memory (GiB) |
|-------------|--------------|
| 0.25 | 0.5 |
| 0.5 | 1 |
| 0.75 | 1.5 |
| 1 | 2 |
| 1.25 | 2.5 |
| 1.5 | 3 |
| 1.75 | 3.5 |
| 2 | 4 |
| 2.25 | 4.5 |
| 2.5 | 5 |
| 2.75 | 5.5 |
| 3 | 6 |
| 3.25 | 6.5 |
| 3.5 | 7 |

## Package code and test locally

Before you deploy to Microsoft Foundry, you can build and test your agent locally:
Expand Down