diff --git a/config.py b/config.py new file mode 100644 index 0000000..259db7c --- /dev/null +++ b/config.py @@ -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 \ No newline at end of file