-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv
More file actions
20 lines (17 loc) · 776 Bytes
/
env
File metadata and controls
20 lines (17 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Azure OpenAI Environment Variables
# Rename this file to .env when ready to use
# Azure AD Authentication
SCOPE="https://cognitiveservices.azure.com/.default"
TENANT_ID="your-azure-tenant-id"
CLIENT_ID="your-azure-client-id"
CLIENT_SECRET="your-azure-client-secret"
# Azure OpenAI Configuration
SUBSCRIPTION_KEY="your-azure-openai-subscription-key"
AZURE_API_VERSION="2023-05-15"
AZURE_OPENAI_ENDPOINT="https://your-resource-name.openai.azure.com"
# Example values (replace with your actual values):
# TENANT_ID="72f988bf-86f1-41af-91ab-2d7cd011db47"
# CLIENT_ID="11111111-2222-3333-4444-555555555555"
# CLIENT_SECRET="your-secret-from-azure-portal"
# SUBSCRIPTION_KEY="1234567890abcdef1234567890abcdef"
# AZURE_OPENAI_ENDPOINT="https://your-deployment.openai.azure.com"