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
9 changes: 6 additions & 3 deletions python/agent-framework/sample-agent/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,20 @@ authors = [
]
dependencies = [
# AgentFramework SDK - The official package
"agent-framework-azure-ai",
"agent-framework-azure-ai==1.0.0b251114",
"agent-framework-core==1.0.0b251114",

Comment on lines +10 to 12
Copy link

Copilot AI Feb 27, 2026

Choose a reason for hiding this comment

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

PR description mentions pinning to versions defined in a constraints file, but this sample project doesn’t include or reference any constraints/lock file (and the only change here is direct pinning in dependencies). Consider either adding a repo-local constraints/lock mechanism (e.g., uv.lock or documented constraints usage) or updating the PR description to match the actual approach.

Copilot uses AI. Check for mistakes.
# Azure AI Projects - explicitly require pre-release version
"azure-ai-agents>=1.2.0b5",
"azure-ai-projects>=2.0.0b2",

# Microsoft Agents SDK - Official packages for hosting and integration
"microsoft-agents-hosting-aiohttp",
"microsoft-agents-hosting-core",
"microsoft-agents-hosting-core>= 0.4.0",
"microsoft-agents-authentication-msal",
"microsoft-agents-activity",
"microsoft-agents-activity>= 0.4.0",
Comment on lines 18 to +21
Copy link

Copilot AI Feb 27, 2026

Choose a reason for hiding this comment

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

Only some microsoft-agents-* packages have version constraints now (hosting-core, activity), while hosting-aiohttp and authentication-msal are unbounded. To reduce the chance of pulling incompatible combinations, apply a consistent pin/range strategy across the whole microsoft-agents-* set (ideally keeping them on the same version).

Copilot uses AI. Check for mistakes.

"opentelemetry-semantic-conventions-ai==0.4.13",

# Azure SDK components
"azure-identity",
Expand Down
Loading