-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
36 lines (27 loc) · 1.22 KB
/
env.example
File metadata and controls
36 lines (27 loc) · 1.22 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
# DQV Agent - Environment Variables Example
# Copy this file to .env and fill in the values.
# NEVER commit .env to version control!
# ============================================
# MDPT Generated Pack Mode (External APIs)
# ============================================
# These are required ONLY for generated_pack mode (pytest -m external)
# They are NOT required for curated_pack mode (default CI)
# Azure OpenAI (for MDPT test generation)
AZURE_API_KEY_4o=your_azure_api_key_here
AZURE_ENDPOINT_4o=https://your-resource.openai.azure.com/
AGENT_CONNECTION_STRING=your_agent_connection_string
# Google Custom Search API (for MDPT epidemiological lookups)
# Rate limited to 95 queries per day (resets at midnight)
GOOGLE_API_KEY=your_google_api_key_here
GOOGLE_SEARCH_ENGINE_ID=your_search_engine_id_here
# ============================================
# DQV Configuration (Optional)
# ============================================
# MDPT mode: curated_pack (default) or generated_pack
# DQV_MDPT_MODE=curated_pack
# Artifact storage root (default: ./artifacts)
# DQV_ARTIFACT_ROOT=./artifacts
# Cache backend: memory (default for tests), sqlite, redis
# DQV_CACHE_BACKEND=memory
# Log level: DEBUG, INFO, WARNING, ERROR
# DQV_LOG_LEVEL=INFO