File size: 689 Bytes
2b89e73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Local Development Environment Configuration
# Copy this file to .env and fill in your actual values
# .env is in .gitignore and will NOT be committed to git

# LLM API Keys (optional; leave empty to use extractive summaries)
GEMINI_API_KEY=your_gemini_api_key_here
OPENAI_API_KEY=your_openai_api_key_here

# Embedding Model (optional; defaults to multilingual)
EMBEDDING_MODEL=sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2

# Data and Index Paths (optional; defaults to repo root)
CSV_PATH=./Feedback.csv
VECTOR_INDEX_PATH=./.vector_index/faiss.index
VECTOR_METADATA_PATH=./.vector_index/meta.parquet

# Server Configuration (optional)
SERVER_HOST=0.0.0.0
SERVER_PORT=8000