Add config.py

This commit is contained in:
2026-06-05 11:49:33 +00:00
parent 8503c01b08
commit 43d202e0d8
+13
View File
@@ -0,0 +1,13 @@
# Configuration constants for the FAQ bot
# Path to the directory containing markdown FAQ files
DATA_DIR = "data"
# Path to the directory where ChromaDB will persist its data
CHROMA_PERSIST_DIR = "./chroma_faq"
# Path to the static JSON file with course metadata
COURSE_META_JSON = "data/course_meta.json"
# Number of top results to return from Chroma search
CHROMA_TOP_K = 3