-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (36 loc) · 1.56 KB
/
.env.example
File metadata and controls
43 lines (36 loc) · 1.56 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
42
43
# ============================================
# SESAP Environment Variables
# ============================================
# Copy this file to .env and fill in your values:
# cp .env.example .env
#
# Only the Azure AI Foundry section is REQUIRED for the MVP.
# Everything else is optional / for future phases.
# ============================================
# ============================================
# Azure AI Foundry (REQUIRED for contract generation)
# ============================================
# Get these from: portal.azure.com → your Cognitive Services resource → Keys and Endpoint
# Your Azure AI Foundry endpoint URL
AZURE_AI_FOUNDRY_BASE_URL=https://your-resource.cognitiveservices.azure.com
# Your Azure AI Foundry API key
AZURE_AI_FOUNDRY_KEY=your-api-key-here
# Azure OpenAI API version
AZURE_OPEN_AI_VERSION=2025-01-01-preview
# ============================================
# Model Deployments (REQUIRED)
# ============================================
# Must match your deployed model names in Azure AI Foundry.
# The 3-step pipeline uses:
# heavy = structure extraction (needs strong reasoning, e.g. GPT-5.1)
# medium = artifact generation + validation (e.g. GPT-5-mini)
# light = simple tasks (available but not used in current pipeline)
AZURE_GPT_5_1_DEPLOYMENT=gpt-5.1
AZURE_GPT_5_MINI_DEPLOYMENT=gpt-5-mini
AZURE_GPT_5_NANO_DEPLOYMENT=gpt-5-nano
# ============================================
# Server (optional — defaults shown)
# ============================================
# Port for the Express API server
API_PORT=3001
NODE_ENV=development