-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (22 loc) · 818 Bytes
/
Copy path.env.example
File metadata and controls
29 lines (22 loc) · 818 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
# LLM backend: huggingface | ollama | groq
LLM_PROVIDER=groq
GROQ_API_KEY=your_groq_api_key_here
# Bulk model: pre-extraction at ingestion (cheap, high rate limits)
GROQ_MODEL=llama-3.1-8b-instant
# Live model: on-demand extraction at query time (larger — user is waiting)
GROQ_LIVE_MODEL=llama-3.3-70b-versatile
# HuggingFace (only if LLM_PROVIDER=huggingface)
HUGGINGFACE_API_TOKEN=your_token_here
LLM_MODEL=meta-llama/Llama-3.1-8B-Instruct
# Database
DATABASE_URL=postgresql+asyncpg://cortex:cortex@db:5432/cortex
# Redis
REDIS_URL=redis://redis:6379/0
# Integrations
SLACK_BOT_TOKEN=
# ChromaDB
CHROMA_PERSIST_DIR=./chroma_data
# Embeddings
EMBEDDING_MODEL=sentence-transformers/all-MiniLM-L6-v2
# Fernet key for encrypting stored integration tokens
TOKEN_ENCRYPTION_KEY=generate_with_cryptography_fernet