forked from raman025/GDG
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
41 lines (33 loc) · 1.98 KB
/
.env.example
File metadata and controls
41 lines (33 loc) · 1.98 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
# ─────────────────────────────────────────────────────
# Compliance Monitoring System — Environment Variables
# ─────────────────────────────────────────────────────
# Copy this file to `.env` and fill in your values.
# ── LLM Provider ──────────────────────────────────────
# Supported: "openai" or "anthropic"
LLM_PROVIDER=openai
LLM_MODEL=gpt-4o-mini
LLM_TEMPERATURE=0.0
# OpenAI (required if LLM_PROVIDER=openai)
OPENAI_API_KEY=sk-your-openai-api-key-here
# Anthropic (required if LLM_PROVIDER=anthropic)
# ANTHROPIC_API_KEY=sk-ant-your-anthropic-api-key-here
# Optional: custom OpenAI base URL (for proxies/Azure)
# OPENAI_BASE_URL=https://api.openai.com/v1
# ── Embeddings ────────────────────────────────────────
EMBEDDING_PROVIDER=openai
EMBEDDING_MODEL=text-embedding-3-large
# ── Database ──────────────────────────────────────────
# Default: SQLite (local file)
# DATABASE_URL=sqlite:///database/compliance_rules.db
#
# PostgreSQL example:
# DATABASE_URL=postgresql://user:password@localhost:5432/compliance_db
#
# MySQL example:
# DATABASE_URL=mysql+pymysql://user:password@localhost:3306/compliance_db
# ── ChromaDB ──────────────────────────────────────────
# CHROMA_DIR=data/chroma_db
# ── Decision Engine ───────────────────────────────────
# Violations with confidence >= threshold are auto-logged;
# below threshold → sent to human review queue.
CONFIDENCE_THRESHOLD=0.75