Skip to content

Commit 82deda8

Browse files
committed
add Azure AI Foundry sample
1 parent 912e69e commit 82deda8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/azureaifoundry_sdk/azurefoundryagent/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ A demonstration project showcasing the integration of Azure AI Foundry with the
1313
## Project Structure
1414

1515
```
16-
├── foundry_agent.py # AI Foundry calendar agent implementation
16+
├── foundry_agent.py # AI Foundry calendar agent
1717
├── foundry_agent_executor.py # A2A framework executor
1818
├── __main__.py # Main application
19-
├── aifoundry_agent.py # Base AI Foundry agent
20-
├── pyproject.toml # Project dependencies configuration
19+
├── pyproject.toml # Project dependencies
20+
├── test_client.toml # Test
2121
└── .env.template # Environment variables template
2222
```
2323

examples/azureaifoundry_sdk/azurefoundryagent/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ async def main() -> None:
118118
except Exception as e:
119119
logger.error(f"❌ Critical error fetching public agent card: {e}")
120120
logger.info("💡 Make sure the AI Foundry Calendar Agent server is running:")
121-
logger.info(f" python -m aifoundry_a2a_demo --host localhost --port {base_url.split(':')[-1]}")
121+
logger.info(f" uv run .")
122122
raise RuntimeError("Failed to fetch the public agent card. Cannot continue.") from e
123123

124124
# Initialize A2A Client

0 commit comments

Comments
 (0)