Spaces:
Sleeping
Sleeping
File size: 252 Bytes
a0f20a0 | 1 2 3 4 5 6 7 8 9 10 11 12 | """Shared configuration constants for the 80k RAG system."""
# Embedding model used across the system
MODEL_NAME = 'all-MiniLM-L6-v2'
# Qdrant collection name
COLLECTION_NAME = "80k_articles"
# Embedding dimension for the model
EMBEDDING_DIM = 384
|