From 00a08c55b063570fe99f77cbca30c748cff0df07 Mon Sep 17 00:00:00 2001 From: Ben Thomas <25218250+alliscode@users.noreply.github.com> Date: Wed, 15 Jul 2026 10:48:56 -0700 Subject: [PATCH] Use released core with preview hosting wheel Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 1674d491-af7d-4f9e-99aa-5a829db81591 --- .../responses/15_workflow_resilience/README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/python/samples/04-hosting/foundry-hosted-agents/responses/15_workflow_resilience/README.md b/python/samples/04-hosting/foundry-hosted-agents/responses/15_workflow_resilience/README.md index 21a7ba7e1..ddf4a21e8 100644 --- a/python/samples/04-hosting/foundry-hosted-agents/responses/15_workflow_resilience/README.md +++ b/python/samples/04-hosting/foundry-hosted-agents/responses/15_workflow_resilience/README.md @@ -20,9 +20,10 @@ workspace sync can therefore replace the preview build with the public build. Create an isolated environment and install the local wheel files explicitly. The Agent Framework wheel directory must contain -`agent_framework_core-*.whl` and `agent_framework_foundry_hosting-*.whl`. The AgentServer wheel directory must -contain the `core`, `invocations`, and `responses` wheels. +contain the `core`, `invocations`, and `responses` wheels. The released +`agent-framework-core` package and any other Agent Framework packages are +resolved normally from the configured package index. PowerShell: @@ -32,7 +33,6 @@ $agentServerWheels = "C:\path\to\agent-server-wheels" uv venv .venv-preview uv pip install --python .venv-preview\Scripts\python.exe ` - (Get-ChildItem "$afWheels\agent_framework_core-*.whl").FullName ` (Get-ChildItem "$afWheels\agent_framework_foundry_hosting-*.whl").FullName ` (Get-ChildItem "$agentServerWheels\azure_ai_agentserver_core-*.whl").FullName ` (Get-ChildItem "$agentServerWheels\azure_ai_agentserver_invocations-*.whl").FullName ` @@ -48,7 +48,6 @@ export AGENTSERVER_WHEEL_DIR=/path/to/agent-server-wheels uv venv .venv-preview uv pip install --python .venv-preview/bin/python \ - "$AF_WHEEL_DIR"/agent_framework_core-*.whl \ "$AF_WHEEL_DIR"/agent_framework_foundry_hosting-*.whl \ "$AGENTSERVER_WHEEL_DIR"/azure_ai_agentserver_core-*.whl \ "$AGENTSERVER_WHEEL_DIR"/azure_ai_agentserver_invocations-*.whl \