Spaces:
Running
Running
File size: 174 Bytes
71a7938 |
1 2 3 4 5 6 7 8 9 |
from google import genai
from dotenv import load_dotenv
from os import getenv
load_dotenv()
GEMINI_API_KEY = getenv("GEMINI_API_KEY")
from .constants import GEMINI_API_KEY
|