-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env.example
More file actions
41 lines (35 loc) · 2.03 KB
/
.env.example
File metadata and controls
41 lines (35 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# =============================================================================
# Azure Agentic Engineering - Environment Variables
# =============================================================================
# Copy this file to .env and fill in your values
# NEVER commit .env to source control
# =============================================================================
# -----------------------------------------------------------------------------
# Azure OpenAI Configuration
# -----------------------------------------------------------------------------
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com
AZURE_OPENAI_DEPLOYMENT=gpt-4o
AZURE_OPENAI_API_VERSION=2024-10-21
# -----------------------------------------------------------------------------
# Azure AI Foundry Configuration
# -----------------------------------------------------------------------------
AZURE_FOUNDRY_ENDPOINT=https://your-resource.services.ai.azure.com/api/projects/your-project
# -----------------------------------------------------------------------------
# Azure AI Search Configuration
# -----------------------------------------------------------------------------
AZURE_SEARCH_ENDPOINT=https://your-search.search.windows.net
AZURE_SEARCH_INDEX=your-index-name
# -----------------------------------------------------------------------------
# Azure Key Vault Configuration
# -----------------------------------------------------------------------------
AZURE_KEY_VAULT_URL=https://your-keyvault.vault.azure.net
# -----------------------------------------------------------------------------
# Azure Application Insights (Optional)
# -----------------------------------------------------------------------------
APPLICATIONINSIGHTS_CONNECTION_STRING=InstrumentationKey=xxx;IngestionEndpoint=xxx
# -----------------------------------------------------------------------------
# Development Settings
# -----------------------------------------------------------------------------
# Set to 'development' for verbose logging
ENVIRONMENT=development
LOG_LEVEL=INFO