-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
21 lines (17 loc) · 973 Bytes
/
Copy path.env.example
File metadata and controls
21 lines (17 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Identity (Service Principal) — populated by bootstrap.sh
export AZURE_CLIENT_ID=<app-registration-client-id>
export AZURE_TENANT_ID=<entra-tenant-id>
export AZURE_SUBSCRIPTION_ID=<azure-subscription-id>
export SP_OBJECT_ID=<service-principal-object-id>
# Azure AI Foundry endpoints (no secrets — auth is via OIDC or az login)
export FOUNDRY_TEST_ENDPOINT=https://eastus.api.azureml.ms/foundry/v1/subscriptions/<sub>/resourceGroups/<rg>/projects/<test-project>
export FOUNDRY_PROD_ENDPOINT=https://eastus.api.azureml.ms/foundry/v1/subscriptions/<sub>/resourceGroups/<rg>/projects/<prod-project>
# Model deployment name in Azure OpenAI / Foundry
export GPT_DEPLOYMENT=gpt-4o-2024-11-20
# Bing Grounding connection name configured in the Foundry project
export BING_CONNECTION_NAME=bing-grounding
# Resource metadata
export RESOURCE_GROUP=<resource-group-name>
export LOCATION=swedencentral
export ACCOUNT_NAME=<foundry-account-name>
export GITHUB_REPO=<owner/repo>