File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
examples/azureaifoundry_sdk/azurefoundryagent Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments