-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
79 lines (63 loc) · 2.89 KB
/
Copy path.env.example
File metadata and controls
79 lines (63 loc) · 2.89 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
77
78
79
# EvalAP Environment Variables Configuration
# Copy this file to .env and fill in your actual values
# =============================================================================
# Application Environment
# =============================================================================
# Set the environment: dev, prod, or unittest
ENV=dev
# =============================================================================
# Database Configuration
# =============================================================================
# PostgreSQL connection URL
POSTGRES_URL=postgresql+psycopg2://postgres:changeme@localhost:5432
# Database name (used in production)
DB_NAME=evalap
# =============================================================================
# API Keys and Authentication
# =============================================================================
# Admin token for privileged operations
ADMIN_TOKEN=your-admin-token-here
# =============================================================================
# External API Keys
# =============================================================================
# Hugging Face Token (recommended for downloading datasets)
# Get your token at: https://huggingface.co/settings/tokens
HF_TOKEN=your-huggingface-token-here
# OpenAI API Key
OPENAI_API_KEY=your-openai-api-key-here
# Anthropic API Key (Claude)
ANTHROPIC_API_KEY=your-anthropic-api-key-here
# Mistral API Key
MISTRAL_API_KEY=your-mistral-api-key-here
# Albert API Keys (different environments)
ALBERT_API_KEY=your-albert-api-key-here
ALBERT_API_KEY_STAGING=your-albert-staging-key-here
ALBERT_API_KEY_DEV=your-albert-dev-key-here
# France Services API Key
MFS_API_KEY_V2=your-mfs-api-key-here
MFS_API_KEY=your-mfs-api-key-here
# XAI API Key (Grok)
XAI_API_KEY=your-xai-api-key-here
# Cortex API Key
CORTEX_API_KEY=your-cortex-api-key-here
# =============================================================================
# EvalAP API Configuration
# =============================================================================
# EvalAP API Key for client access
EVALAP_API_KEY=your-evalap-api-key-here
# =============================================================================
# Search Engine Configuration
# =============================================================================
# Elasticsearch URL and credentials
ELASTICSEARCH_URL=http://localhost:9200
ELASTICSEARCH_PASSWORD=your-elastic-password-here
# =============================================================================
# MCP (Model Context Protocol) Configuration
# =============================================================================
# MCP Bridge URL
MCP_BRIDGE_URL=http://172.18.0.1:9092
# =============================================================================
# Logging Configuration
# =============================================================================
# Log level: DEBUG, INFO, WARNING, ERROR, CRITICAL
LOG_LEVEL=INFO