akshayapriya's picture
Upload 9 files
c9b1ba4 verified
raw
history blame
419 Bytes
import os
from dotenv import load_dotenv
load_dotenv()
config = {
"google_creds": os.getenv("google_creds"),
"huggingface_api_key": os.getenv("huggingface_api_key"),
"google_sheet_id": os.getenv("google_sheet_id"),
"vosk_model_path": os.getenv("vosk_model_path"),
"objections_file_path" : os.getenv("objections_file_path"),
"product_data_path" : os.getenv("product_data_path")
}