-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
45 lines (34 loc) · 914 Bytes
/
env.example
File metadata and controls
45 lines (34 loc) · 914 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
33
34
35
36
37
38
39
40
41
42
43
# Application
APP_NAME=AIEO API
APP_VERSION=0.1.0
DEBUG=true
ENVIRONMENT=development
# API
API_V1_PREFIX=/api/v1
CORS_ORIGINS=http://localhost:3000,http://localhost:5173
# Database
DATABASE_URL=postgresql://aieo:aieo@localhost:5432/aieo
# Redis
REDIS_URL=redis://localhost:6379/0
REDIS_CACHE_TTL=86400
# Celery
CELERY_BROKER_URL=redis://localhost:6379/1
CELERY_RESULT_BACKEND=redis://localhost:6379/2
# AI Services
OPENAI_API_KEY=your-openai-api-key-here
ANTHROPIC_API_KEY=your-anthropic-api-key-here
DEFAULT_AI_MODEL=gpt-4
# Vector DB
QDRANT_URL=http://localhost:6333
QDRANT_API_KEY=
EMBEDDING_MODEL=text-embedding-3-small
# Security
SECRET_KEY=change-me-in-production-use-random-string
API_KEY_HEADER=X-API-Key
RATE_LIMIT_PER_MINUTE=60
# Content Limits
MAX_CONTENT_WORDS=50000
MAX_CONTENT_SIZE_BYTES=10485760
# Citation Tracking
CITATION_PROBE_INTERVAL_HOURS=24
CITATION_DETECTION_ENGINES=grok,claude