faq-chatbot / src /config.py
gerinsp's picture
add config
4570937
Raw
History Blame Contribute Delete
229 Bytes
import os
from dotenv import load_dotenv
load_dotenv()
GOOGLE_API_KEY = os.getenv("GOOGLE_API_KEY")
HUGGINGFACEHUB_API_TOKEN = os.getenv("HUGGINGFACEHUB_API_TOKEN")
FAQ_CSV_PATH = "data/faq.csv"
VECTOR_DB_PATH = "vectorstore"