Python: [BREAKING] updated structure and samples (#875)

* updated structure and samples

* updated names and removed cross tests

* updated projects etc

* updated tests

* updated test

* test fixes

* removed devui for now

* updated all-tests task

* removed old style configs

* remove coverage from tests

* updated to unit tests with all-tests

* updated foundry everywhere

* fix azure ai tests

* fix merge tests

* fix mypy
This commit is contained in:
Eduard van Valkenburg
2025-09-25 09:02:53 +02:00
committed by GitHub
Unverified
parent 366a7f7d47
commit 9355329dfd
169 changed files with 1159 additions and 1761 deletions
@@ -46,7 +46,7 @@ Your Azure AD App Registration should have:
```python
import asyncio
from agent_framework.copilotstudio import CopilotStudioAgent
from agent_framework.microsoft import CopilotStudioAgent
# Uses environment variables for configuration
async def main():
@@ -63,7 +63,7 @@ asyncio.run(main())
### Explicit Configuration
```python
from agent_framework.copilotstudio import CopilotStudioAgent, acquire_token
from agent_framework.microsoft import CopilotStudioAgent, acquire_token
from microsoft_agents.copilotstudio.client import ConnectionSettings, CopilotClient, PowerPlatformCloud, AgentType
# Acquire token manually
@@ -2,7 +2,7 @@
import asyncio
from agent_framework.copilotstudio import CopilotStudioAgent
from agent_framework.microsoft import CopilotStudioAgent
# Environment variables needed:
# COPILOTSTUDIOAGENT__ENVIRONMENTID - Environment ID where your copilot is deployed
@@ -3,7 +3,7 @@
import asyncio
import os
from agent_framework.copilotstudio import CopilotStudioAgent, acquire_token
from agent_framework.microsoft import CopilotStudioAgent, acquire_token
from microsoft_agents.copilotstudio.client import AgentType, ConnectionSettings, CopilotClient, PowerPlatformCloud
# Environment variables needed: