Spaces:
Sleeping
Sleeping
File size: 215 Bytes
ec563fd | 1 2 3 4 5 6 7 8 9 | from dotenv import load_dotenv
from google import genai
import os
load_dotenv()
print("DEBUG GEMINI KEY:", os.getenv("GEMINI_API_KEY")) # 👈 test this
client = genai.Client(api_key=os.getenv("GEMINI_API_KEY"))
|