Spaces:
Build error
Build error
File size: 821 Bytes
07fbc67 f923596 a258c1b 07fbc67 8d2f9d4 07fbc67 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
from dotenv import load_dotenv
import os
# Load the .env file if the environment is development
ENV = os.getenv("ENV", "production") # Default to production if ENV is not set
if ENV == "development":
print("Environment detected: Development. Loading .env file.")
load_dotenv()
else:
print("Environment detected: Production. Using system environment variables.")
# Access your environment variables
ACCESS_TOKEN = os.getenv("ACCESS_TOKEN")
WHATSAPP_API_URL = os.getenv("WHATSAPP_API_URL")
OPENAI_API = os.getenv("OPENAI_API")
GEMINI_API = os.getenv("GEMINI_API")
CX_CODE = os.getenv("CX_CODE")
CUSTOM_SEARCH_API_KEY = os.getenv("CUSTOM_SEARCH_API_KEY")
# Debugging: Print the retrieved ACCESS_TOKEN (for development only)
# if ENV == "development":
# print(f"ACCESS_TOKEN loaded: {ACCESS_TOKEN}")
|