test24 / api /config.py
Niansuh's picture
Update api/config.py
5ba07f5 verified
raw
history blame
353 Bytes
import os
from dotenv import load_dotenv
load_dotenv()
APP_SECRET = os.getenv("APP_SECRET", "1") # Replace with a secure default or handle appropriately
# GizAI specific configurations
GIZAI_BASE_URL = "https://app.giz.ai"
GIZAI_API_ENDPOINT = "https://app.giz.ai/api/data/users/inferenceServer.infer"
# Additional configurations can be added here