Skip to content
Merged
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
19 changes: 7 additions & 12 deletions python/agent-framework/sample-agent/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,30 @@ authors = [
dependencies = [
# AgentFramework SDK - The official package
"agent-framework-azure-ai",

# Microsoft Agents SDK - Official packages for hosting and integration
"microsoft-agents-hosting-aiohttp",
"microsoft-agents-hosting-core",
"microsoft-agents-authentication-msal",
"microsoft-agents-activity",

# Azure SDK components
"azure-identity",

# Core dependencies
"python-dotenv",
"aiohttp",

# HTTP server support for MCP servers
"uvicorn[standard]>=0.20.0",
"fastapi>=0.100.0",

# HTTP client
"httpx>=0.24.0",

# Data validation
"pydantic>=2.0.0",

# Additional utilities
"typing-extensions>=4.0.0",

Expand All @@ -52,11 +52,6 @@ name = "pypi"
url = "https://pypi.org/simple"
default = true

[[tool.uv.index]]
name = "microsoft_agents_a365"
url = "../dist"
format = "flat"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
Expand Down
17 changes: 6 additions & 11 deletions python/openai/sample-agent/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,27 @@ authors = [
dependencies = [
# OpenAI Agents SDK - The official package
"openai-agents",

# Microsoft Agents SDK - Official packages for hosting and integration
"microsoft-agents-hosting-aiohttp",
"microsoft-agents-hosting-core",
"microsoft-agents-authentication-msal",
"microsoft-agents-activity",

# Core dependencies
"python-dotenv",
"aiohttp",

# HTTP server support for MCP servers
"uvicorn[standard]>=0.20.0",
"fastapi>=0.100.0",

# HTTP client
"httpx>=0.24.0",

# Data validation
"pydantic>=2.0.0",

# Additional utilities
"typing-extensions>=4.0.0",

Expand All @@ -48,11 +48,6 @@ name = "pypi"
url = "https://pypi.org/simple"
default = true

[[tool.uv.index]]
name = "microsoft_agents_a365"
url = "../../dist"
format = "flat"

[project.optional-dependencies]
dev = [
# For development and testing
Expand Down
Loading