Spaces:
Sleeping
Sleeping
File size: 428 Bytes
1904012 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Pinecone Configuration
PINECONE_API_KEY=your_pinecone_api_key_here
PINECONE_INDEX=mentorme-mentors
PINECONE_ENVIRONMENT=us-east-1-aws
PINECONE_DIMENSION=1024
# Server Configuration
HOST=0.0.0.0
PORT=8000
DEBUG=False
# CORS Configuration
CORS_ORIGINS=http://localhost:8080
# Model Configuration
BGE_MODEL_NAME=BAAI/bge-m3
USE_FP16=True
# Recommendation Configuration
RECOMMENDATION_TOP_K=30
RECOMMENDATION_FINAL_COUNT=8
|