From 43d202e0d8d4ab40316e2fa75e9388e95da84c7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B8=D1=80=D0=B8=D0=BB=D0=BB=20=D0=A0=D0=BE=D0=BC?= =?UTF-8?q?=D0=B0=D0=BD=D0=BE=D0=B2?= Date: Fri, 5 Jun 2026 11:49:33 +0000 Subject: [PATCH] Add config.py --- config.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 config.py 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