Spaces:
Sleeping
Sleeping
File size: 508 Bytes
8482ddb 37a55c1 8482ddb 37a55c1 8482ddb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # Copy this file to .env and fill in your values
# Never commit .env - it's in .gitignore
# Pinecone
PINECONE_API_KEY=your_pinecone_api_key_here
PINECONE_INDEX_NAME=substrate-mvp
# Hugging Face
HF_API_TOKEN=your_hf_token_here
# Models (defaults - change if you want different ones)
EMBED_MODEL=sentence-transformers/all-MiniLM-L6-v2
RERANK_MODEL=cross-encoder/ms-marco-MiniLM-L-6-v2
GENERATION_MODEL=mistralai/Mistral-7B-Instruct-v0.2
# Retrieval settings
TOP_K_RETRIEVAL=20
TOP_K_RERANK=5
BM25_TOP_K=20
|