-
Notifications
You must be signed in to change notification settings - Fork 950
Python: Add hosted agent samples #2205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
TaoChenOSU
merged 2 commits into
microsoft:main
from
TaoChenOSU:taochen/python-add-hosted-agent-samples
Nov 14, 2025
Merged
Python: Add hosted agent samples #2205
TaoChenOSU
merged 2 commits into
microsoft:main
from
TaoChenOSU:taochen/python-add-hosted-agent-samples
Nov 14, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alliscode
approved these changes
Nov 14, 2025
Contributor
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds three Python hosted agent sample demos, ported from the .NET samples. The samples demonstrate how to deploy agents as hosted endpoints in Docker containers.
- Adds
agents_in_workflowdemo showing concurrent workflow execution - Adds
agent_with_text_search_ragdemo showcasing RAG with custom context providers - Adds
agent_with_hosted_mcpdemo integrating hosted MCP tools
Reviewed Changes
Copilot reviewed 15 out of 16 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| python/uv.lock | Standard dependency version updates (cachetools, fastapi, huggingface-hub, mcp, mem0ai, openai, openai-agents, openai-chatkit, ruff) |
| python/samples/demos/hosted_agents/agents_in_workflow/* | New demo: Workflow of concurrent agents (researcher, marketer, legal) with Docker deployment |
| python/samples/demos/hosted_agents/agent_with_text_search_rag/* | New demo: RAG agent with custom TextSearchContextProvider for customer support with Docker deployment |
| python/samples/demos/hosted_agents/agent_with_hosted_mcp/* | New demo: Agent with hosted MCP tool for Microsoft Learn documentation with Docker deployment |
moonbox3
approved these changes
Nov 14, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation and Context
Add hosted agent samples to Python.
Samples ported from .Net: https://github.com/microsoft/agent-framework/tree/main/dotnet/samples/HostedAgents
Description
Add hosted agent samples to Python.
Contribution Checklist