"""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