Add src/config.py

This commit is contained in:
2026-06-04 23:23:50 +00:00
parent 0f4acd1d36
commit 0bb7ebcc4e
+16
View File
@@ -0,0 +1,16 @@
# Configuration constants for the FAQbot
# 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