medextract / app /extractor.py
harsh-dev's picture
Add
ec563fd
raw
history blame contribute delete
215 Bytes
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"))