-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
76 lines (58 loc) · 2.86 KB
/
Copy path.env.example
File metadata and controls
76 lines (58 loc) · 2.86 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# ============================================================================
# Azure AI Foundry Configuration
# ============================================================================
# Azure AI Project endpoint (e.g., https://your-project.westus.ai.azure.com)
AZURE_PROJECT_ENDPOINT=https://your-project.westus.ai.azure.com
# Azure OpenAI configuration (separate from AI Foundry for Responses API)
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
AZURE_OPENAI_API_KEY=your-api-key-here
AZURE_OPENAI_MODEL=gpt-4o # For multimodal PDF handling
# ============================================================================
# Vector Database Configuration
# ============================================================================
# QDRANT Configuration (recommended for production)
QDRANT_HOST=localhost
QDRANT_PORT=6333
QDRANT_URL=http://localhost:6333 # Can override individual host/port
QDRANT_API_KEY= # Leave empty for local dev, set for cloud
# Or use FAISS for local development
USE_FAISS=false
FAISS_INDEX_PATH=./data/faiss_index.bin
# ============================================================================
# Document Processing Configuration
# ============================================================================
# Directory for sample documents and uploads
DOCUMENTS_DIR=./sample_docs
EMBEDDINGS_BATCH_SIZE=10
MAX_DOCUMENT_SIZE_MB=50
# ============================================================================
# Triage Agent Configuration
# ============================================================================
# Agent model and instructions
AGENT_MODEL=gpt-4o
AGENT_TEMPERATURE=0.3
AGENT_MAX_TOKENS=2048
# Classification categories
INTAKE_CATEGORIES=CategoryA,CategoryB,Unknown
SEVERITY_LEVELS=high,medium,low
# ============================================================================
# Webhook Configuration (for integration examples)
# ============================================================================
# Downstream system webhooks (example - not used in basic agent)
WEBHOOK_ENDPOINT=https://api.example.com/webhooks/triage-complete
WEBHOOK_API_KEY=your-webhook-api-key
# ============================================================================
# Logging & Monitoring
# ============================================================================
LOG_LEVEL=INFO
LOG_FORMAT=json # json or text
# Azure Monitor / Application Insights (optional)
APPLICATIONINSIGHTS_CONNECTION_STRING=
# ============================================================================
# Authentication
# ============================================================================
# Use Azure CLI credential (default) or specify method
# Options: cli, managed_identity, environment
AZURE_AUTH_METHOD=cli
# For environment auth: AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_CLIENT_SECRET
# For managed identity: no additional config needed when running in Azure