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 | |