Spaces:
Build error
Build error
File size: 419 Bytes
c9b1ba4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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")
}
|