fastAPIv2 / config /config.py
ragV98's picture
new space launch
6d24925
raw
history blame contribute delete
311 Bytes
import os
from dotenv import load_dotenv
load_dotenv()
GOOGLE_API_KEY = os.getenv("GOOGLE_API_KEY")
GOOGLE_CSE_ID = os.getenv("GOOGLE_CX_ID")
DATA_DIR = "data/raw"
INDEX_DIR = "storage/index"
DEFAULT_QUERIES = [
"India politics news",
"Global finance",
"Tech trends",
"Sports highlights",
]