From 0bb7ebcc4e3a7d06a032612602932b10ee74e9ce 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: Thu, 4 Jun 2026 23:23:50 +0000 Subject: [PATCH] Add src/config.py --- src/config.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/config.py diff --git a/src/config.py b/src/config.py new file mode 100644 index 0000000..8e550e7 --- /dev/null +++ b/src/config.py @@ -0,0 +1,16 @@ +# Configuration constants for the FAQ‑bot + +# Path to the directory containing Markdown FAQ files +DATA_DIR = "data" + +# ChromaDB persistence directory +CHROMA_DIR = "./chroma_faq" + +# URL of the mock MCP server (local JSON file) +MCP_SERVER_URL = "http://localhost:8000/course_meta.json" + +# Number of top documents to retrieve from Chroma +CHROMA_TOP_K = 3 + +# Maximum number of retries for the agent (used in CLI) +MAX_RETRIES = 3 \ No newline at end of file