File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed
examples/azureaifoundry_sdk/azurefoundryagent Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 33
44# Required: Azure AI Foundry Project Endpoint
55# Example: https://your-project.cognitiveservices.azure.com/
6- AZURE_AI_FOUNDRY_PROJECT_ENDPOINT = https://ai-kinfey-agent-resource.services.ai.azure.com/api/projects/ai-kinfey-agent
6+ AZURE_AI_FOUNDRY_PROJECT_ENDPOINT = Your Azure AI Foundry Project Endpoint
77
88# Required: Azure AI Agent Model Deployment Name
99# Example: gpt-4o, gpt-35-turbo, etc.
10- AZURE_AI_AGENT_MODEL_DEPLOYMENT_NAME = gpt-4.1-nano
10+ AZURE_AI_AGENT_MODEL_DEPLOYMENT_NAME = Your Azure AI Foundry Agent Model Deployment Name
1111
12- # Optional: Azure credentials (if not using DefaultAzureCredential)
13- # AZURE_CLIENT_ID=
14- # AZURE_CLIENT_SECRET=
15- # AZURE_TENANT_ID=
1612
1713# A2A Server Configuration
1814A2A_HOST = localhost
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ A demonstration project showcasing the integration of Azure AI Foundry with the
1515```
1616├── foundry_agent.py # AI Foundry calendar agent implementation
1717├── foundry_agent_executor.py # A2A framework executor
18- ├── demo.ipynb # Interactive demonstration notebook
1918├── __main__.py # Main application
2019├── aifoundry_agent.py # Base AI Foundry agent
2120├── pyproject.toml # Project dependencies configuration
@@ -48,8 +47,8 @@ uv sync
4847Set the following required environment variables in the ` .env ` file:
4948
5049``` env
51- AZURE_AI_FOUNDRY_PROJECT_ENDPOINT=https://your-project.cognitiveservices.azure.com/
52- AZURE_AI_AGENT_MODEL_DEPLOYMENT_NAME=gpt-4o
50+ AZURE_AI_FOUNDRY_PROJECT_ENDPOINT=Your Azure AI Foundry Project Endpoint
51+ AZURE_AI_AGENT_MODEL_DEPLOYMENT_NAME=Your Azure AI Foundry Deployment Model Name
5352```
5453
5554### 4. Run the Demo
You can’t perform that action at this time.
0 commit comments