Ryan
initial commit
a0f20a0
raw
history blame contribute delete
252 Bytes
"""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