-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
36 lines (28 loc) · 843 Bytes
/
.env
File metadata and controls
36 lines (28 loc) · 843 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
# Llama API Key
LLAMA_API_KEY=LLM|1469017110898899|mJOyVVo1xc4vbUj6y1Wj-svovnE
# Gemini API Key (for embeddings, etc.)
GEMINI_API_KEY=AIzaSyAqko3NqGS-GtXhzm8LeiZ3xUEyo_XIqLo
# Backend URL
BACKEND_URL=http://localhost:8000
# Llama API Base URL
LLAMA_API_BASE_URL=https://api.lambdalabs.com/v1
# ChromaDB Path
CHROMA_DB_PATH=./chroma_db_store
# --- Llama Model Configuration ---
CLASSIFICATION_MODEL_NAME=Llama-4-Scout-17B-16E-Instruct-FP8
FIX_GENERATION_MODEL_NAME=Llama-4-Maverick-17B-128E-Instruct-FP8
MAX_TOKENS_CLASSIFICATION=1000
MAX_TOKENS_FIX=2048
LLAMA_TEMPERATURE=0.2
# --- RAG & Prompt Configuration ---
RAG_NUM_RETRIEVED_DOCS=3
LLAMA_LOG_EXCERPT_MAX_CHARS=2000
# --- Demo & Operational ---
DEMO_MODE=false
PORT=8000
SCRAPER_MAX_PAGES=50
INGEST_BATCH_SIZE=32
# Development
FLASK_ENV=development
LOG_LEVEL=INFO
FLASK_PORT=8000