| import os | |
| from dotenv import load_dotenv, find_dotenv | |
| load_dotenv(find_dotenv(), override=True) | |
| # Add your Gemini API key here | |
| # GEMINI_API_KEY = ?? | |
| GEMINI_API_KEY = os.getenv("GEMINI_API_KEY") | |
| if GEMINI_API_KEY is None: | |
| raise ValueError("Please set the GEMINI_API_KEY environment variable") | |