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
3 changes: 2 additions & 1 deletion python/agent-framework/sample-agent/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ authors = [
]
dependencies = [
# AgentFramework SDK - The official package
"agent-framework-azure-ai",
"agent-framework-core==1.0.0b260128",
"agent-framework-azure-ai==1.0.0b260128",
Comment on lines +10 to +11
Copy link

Copilot AI Mar 10, 2026

Choose a reason for hiding this comment

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

Pinning Agent Framework packages with strict == to a specific beta build can make the sample brittle (e.g., if that build is yanked). If you know the first breaking version, consider using a bounded range (>=<known_good>,<first_bad>) and/or add an inline note linking to the breaking change so it’s clear when to revisit the pin.

Suggested change
"agent-framework-core==1.0.0b260128",
"agent-framework-azure-ai==1.0.0b260128",
"agent-framework-core>=1.0.0b260128,<1.1.0",
"agent-framework-azure-ai>=1.0.0b260128,<1.1.0",

Copilot uses AI. Check for mistakes.

# Azure AI Projects - explicitly require pre-release version
"azure-ai-agents>=1.2.0b5",
Expand Down
Loading