13 lines
379 B
Python
13 lines
379 B
Python
# 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 |