Skip to content
Open
Show file tree
Hide file tree
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
20 changes: 12 additions & 8 deletions samples/hosted-agent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ This folder contains sample templates for building code-based **hosted agents**

## Available Templates

| Template | Python | .NET | Description |
|----------|--------|------|-------------|
| **Agent** | `python/agent` | `dotnet/agent` | A single agent with local tool execution (Seattle Hotel search demo) |
| **Workflow** | `python/workflow` | `dotnet/workflow` | A multi-agent workflow with Writer and Reviewer agents |
| **Minimal** | `python/minimal` | `dotnet/minimal` | A bare-bones Dockerfile for custom implementations |
| Template | Description | Python (Agent Framework) | Python (LangGraph) | .NET |
| ------------ | -------------------------------------------------------------------- | --------------------------------- | ------------------------ | ----------------- |
| **Agent** | A single agent with local tool execution (Seattle Hotel search demo) | `python/agent-framework/agent` | `python/langgraph/agent` | `dotnet/agent` |
| **Workflow** | A multi-agent workflow with Writer and Reviewer agents | `python/agent-framework/workflow` | — | `dotnet/workflow` |
| **Minimal** | A bare-bones Dockerfile for custom implementations | `python/minimal` | — | `dotnet/minimal` |

## Placeholder Values

Expand All @@ -28,6 +28,7 @@ For the best experience creating hosted agents, we recommend using the **Microso
**Install the extension:** [Microsoft Foundry for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-windows-ai-studio.windows-ai-studio)

With the extension you can:

- Scaffold a new hosted agent project with your settings pre-filled
- Deploy directly to Microsoft Foundry from VS Code
- Test and debug agents locally before deployment
Expand All @@ -38,11 +39,14 @@ With the extension you can:
hosted-agent/
├── version-manifest.json # Version and release metadata
├── python/
│ ├── agent/ # Single agent with local tool
│ ├── workflow/ # Multi-agent workflow
│ ├── agent-framework/
│ │ ├── agent/ # Single agent with local tool (Agent Framework)
│ │ └── workflow/ # Multi-agent workflow (Agent Framework)
│ ├── langgraph/
│ │ └── agent/ # Single agent built with LangGraph
│ └── minimal/ # Minimal Dockerfile only
└── dotnet/
├── agent/ # Single agent with local tool
├── workflow/ # Multi-agent workflow
└── minimal/ # Minimal Dockerfile only
```
```
Loading