File size: 353 Bytes
8a7a6a8 5ba07f5 8a7a6a8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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
|