-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (25 loc) · 856 Bytes
/
.env.example
File metadata and controls
32 lines (25 loc) · 856 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
29
30
31
32
# Environment Variables for ContractEx
# Copy this file to .env and fill in your values
# OpenAI Configuration
OPENAI_API_KEY=your_openai_api_key_here
OPENAI_MODEL=gpt-4o
# Anthropic Configuration
ANTHROPIC_API_KEY=your_anthropic_api_key_here
ANTHROPIC_MODEL=claude-3-5-sonnet-20241022
# Google Gemini Configuration
GOOGLE_API_KEY=your_google_api_key_here
GOOGLE_MODEL=models/gemini-2.0-flash
# Local LLM Configuration
OLLAMA_HOST=http://localhost:11434
OLLAMA_MODEL=llama-3.1-70b
# Azure OCR (optional)
AZURE_FORM_RECOGNIZER_ENDPOINT=your_endpoint_here
AZURE_FORM_RECOGNIZER_KEY=your_key_here
# AWS Textract (optional)
AWS_ACCESS_KEY_ID=your_access_key_here
AWS_SECRET_ACCESS_KEY=your_secret_key_here
AWS_REGION=us-east-1
# ContractEx Settings
CONTRACTEX_CONFIDENCE_THRESHOLD=0.7
CONTRACTEX_DEFAULT_LLM=gpt-4o
CONTRACTEX_PARALLEL_PROCESSING=true