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
1 change: 0 additions & 1 deletion python/agent-framework/sample-agent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
# AgentFramework SDK
from agent_framework import ChatAgent
from agent_framework.azure import AzureOpenAIChatClient
from agent_framework.observability import setup_observability

# Agent Interface
from agent_interface import AgentInterface
Expand Down
6 changes: 3 additions & 3 deletions python/agent-framework/sample-agent/host_agent_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
from aiohttp.web_middlewares import middleware as web_middleware
from dotenv import load_dotenv
from agent_interface import AgentInterface, check_agent_inheritance
from microsoft_agents.activity import load_configuration_from_env, Activity
from microsoft_agents.activity_types import ActivityTypes
from microsoft_agents.activity import load_configuration_from_env, Activity, ActivityTypes
from microsoft_agents.authentication.msal import MsalConnectionManager
from microsoft_agents.hosting.aiohttp import (
CloudAdapter,
Expand All @@ -35,8 +34,9 @@
NotificationTypes,
AgentNotificationActivity,
ChannelId,
EmailResponse,
)
from microsoft_agents_a365.notifications import EmailResponse

from microsoft_agents_a365.observability.core.config import configure
from microsoft_agents_a365.observability.core.middleware.baggage_builder import (
BaggageBuilder,
Expand Down