diff --git a/python/packages/copilotstudio/README.md b/python/packages/copilotstudio/README.md index a02c9effd9..fcf211a919 100644 --- a/python/packages/copilotstudio/README.md +++ b/python/packages/copilotstudio/README.md @@ -31,7 +31,7 @@ The following environment variables are used for configuration: ```python import asyncio -from agent_framework_copilotstudio import CopilotStudioAgent +from agent_framework.copilotstudio import CopilotStudioAgent async def main(): # Create agent using environment variables @@ -49,7 +49,7 @@ asyncio.run(main()) ```python import asyncio import os -from agent_framework_copilotstudio import CopilotStudioAgent, acquire_token +from agent_framework.copilotstudio import CopilotStudioAgent, acquire_token from microsoft_agents.copilotstudio.client import ConnectionSettings, CopilotClient, PowerPlatformCloud, AgentType async def main(): diff --git a/python/samples/getting_started/agents/copilotstudio/README.md b/python/samples/getting_started/agents/copilotstudio/README.md index bc862b6cb3..e2503db51a 100644 --- a/python/samples/getting_started/agents/copilotstudio/README.md +++ b/python/samples/getting_started/agents/copilotstudio/README.md @@ -45,7 +45,7 @@ Your Azure AD App Registration should have: ### Basic Usage with Environment Variables ```python -from agent_framework_copilotstudio import CopilotStudioAgent +from agent_framework.copilotstudio import CopilotStudioAgent # Uses environment variables for configuration agent = CopilotStudioAgent() @@ -55,7 +55,7 @@ result = await agent.run("What is the capital of France?") ### Explicit Configuration ```python -from agent_framework_copilotstudio import CopilotStudioAgent, acquire_token +from agent_framework.copilotstudio import CopilotStudioAgent, acquire_token from microsoft_agents.copilotstudio.client import ConnectionSettings, CopilotClient, PowerPlatformCloud, AgentType # Acquire token manually