From 2c73ca726b204c460332d78477cbdb9350ea26e3 Mon Sep 17 00:00:00 2001 From: Radhika Gupta Date: Thu, 30 Apr 2026 11:28:08 -0700 Subject: [PATCH 1/3] Update the distro version --- python/agent-framework/sample-agent/host_agent_server.py | 1 - python/agent-framework/sample-agent/pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/python/agent-framework/sample-agent/host_agent_server.py b/python/agent-framework/sample-agent/host_agent_server.py index d2ba2050..e7ad1d0c 100644 --- a/python/agent-framework/sample-agent/host_agent_server.py +++ b/python/agent-framework/sample-agent/host_agent_server.py @@ -78,7 +78,6 @@ def create_and_run_host( # See: https://github.com/microsoft/opentelemetry-distro-python use_microsoft_opentelemetry( enable_a365=True, - enable_azure_monitor=False, a365_token_resolver=lambda agent_id, tenant_id: get_cached_agentic_token( tenant_id, agent_id ) diff --git a/python/agent-framework/sample-agent/pyproject.toml b/python/agent-framework/sample-agent/pyproject.toml index 8cd7ab32..8f361b7f 100644 --- a/python/agent-framework/sample-agent/pyproject.toml +++ b/python/agent-framework/sample-agent/pyproject.toml @@ -43,7 +43,7 @@ dependencies = [ "microsoft_agents_a365_tooling >= 0.1.0", "microsoft_agents_a365_tooling_extensions_agentframework >= 0.1.0", "microsoft_agents_a365_observability_core >= 0.1.0", - "microsoft-opentelemetry >= 0.1.0a3", + "microsoft-opentelemetry >= 1.0.0", "microsoft_agents_a365_runtime >= 0.1.0", "microsoft_agents_a365_notifications >= 0.1.0" ] From 85c13f5f45db2920d983d2fddd32436115d4ada0 Mon Sep 17 00:00:00 2001 From: Radhika Gupta Date: Fri, 1 May 2026 09:31:02 -0700 Subject: [PATCH 2/3] Update imports and remove old references --- python/agent-framework/sample-agent/host_agent_server.py | 5 +++-- python/agent-framework/sample-agent/pyproject.toml | 2 -- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/python/agent-framework/sample-agent/host_agent_server.py b/python/agent-framework/sample-agent/host_agent_server.py index e7ad1d0c..34e93be6 100644 --- a/python/agent-framework/sample-agent/host_agent_server.py +++ b/python/agent-framework/sample-agent/host_agent_server.py @@ -40,10 +40,10 @@ from microsoft_agents_a365.notifications import EmailResponse from microsoft.opentelemetry import use_microsoft_opentelemetry -from microsoft_agents_a365.observability.core.middleware.baggage_builder import ( +from microsoft.opentelemetry.a365.core.middleware.baggage_builder import ( BaggageBuilder, ) -from microsoft_agents_a365.runtime.environment_utils import ( +from microsoft.opentelemetry.a365.runtime.environment_utils import ( get_observability_authentication_scope, ) from token_cache import cache_agentic_token, get_cached_agentic_token @@ -78,6 +78,7 @@ def create_and_run_host( # See: https://github.com/microsoft/opentelemetry-distro-python use_microsoft_opentelemetry( enable_a365=True, + a365_token_resolver=lambda agent_id, tenant_id: get_cached_agentic_token( tenant_id, agent_id ) diff --git a/python/agent-framework/sample-agent/pyproject.toml b/python/agent-framework/sample-agent/pyproject.toml index 8f361b7f..463da7cc 100644 --- a/python/agent-framework/sample-agent/pyproject.toml +++ b/python/agent-framework/sample-agent/pyproject.toml @@ -42,9 +42,7 @@ dependencies = [ # Microsoft Agent 365 SDK packages "microsoft_agents_a365_tooling >= 0.1.0", "microsoft_agents_a365_tooling_extensions_agentframework >= 0.1.0", - "microsoft_agents_a365_observability_core >= 0.1.0", "microsoft-opentelemetry >= 1.0.0", - "microsoft_agents_a365_runtime >= 0.1.0", "microsoft_agents_a365_notifications >= 0.1.0" ] requires-python = ">=3.11" From 8535a8937d56854b735e8a193a6a6fd1c3835140 Mon Sep 17 00:00:00 2001 From: Radhika Gupta Date: Fri, 1 May 2026 09:39:49 -0700 Subject: [PATCH 3/3] Update distro version --- python/autonomous/github-trending/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/autonomous/github-trending/pyproject.toml b/python/autonomous/github-trending/pyproject.toml index b12a43ea..520ca9f3 100644 --- a/python/autonomous/github-trending/pyproject.toml +++ b/python/autonomous/github-trending/pyproject.toml @@ -12,7 +12,7 @@ dependencies = [ "aiohttp>=3.13.5", "azure-identity>=1.25.3", "msal>=1.36.0", - "microsoft-opentelemetry>=0.1.0b1", + "microsoft-opentelemetry>=1.0.0", ] [tool.uv]