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