-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
28 lines (21 loc) · 764 Bytes
/
env.example
File metadata and controls
28 lines (21 loc) · 764 Bytes
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
# MCP Evaluation Server Environment Variables
# Copy this file to .env and fill in your API keys
# OpenAI Configuration
OPENAI_API_KEY=sk-your-openai-api-key-here
# Azure OpenAI Configuration
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
AZURE_OPENAI_API_KEY=your-azure-openai-api-key-here
AZURE_OPENAI_API_VERSION=2024-02-15-preview
# Anthropic Configuration
ANTHROPIC_API_KEY=sk-ant-your-anthropic-api-key-here
# Ollama Configuration (for local models)
OLLAMA_BASE_URL=http://localhost:11434
# Default Configuration
DEFAULT_JUDGE_MODEL=gpt-4o-mini
PYTHONUNBUFFERED=1
PYTHONDONTWRITEBYTECODE=1
# Cache and Storage
MCP_EVAL_CACHE_DIR=/tmp/cache
MCP_EVAL_RESULTS_DB=/tmp/results/evaluation_results.db
# AWS App Runner Configuration
PORT=8080