Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -12,8 +12,7 @@ from typing import Dict, Any, Union, List
|
|
| 12 |
load_dotenv()
|
| 13 |
app = FastAPI(title="LLM Model API + Gradio UI", version="4.0")
|
| 14 |
|
| 15 |
-
|
| 16 |
-
GEMINI_API_KEY = os.getenv("GEMINI_API_KEY")
|
| 17 |
if not GEMINI_API_KEY:
|
| 18 |
raise ValueError("❌ GEMINI_API_KEY not found. Please set it in your .env file.")
|
| 19 |
|
|
|
|
| 12 |
load_dotenv()
|
| 13 |
app = FastAPI(title="LLM Model API + Gradio UI", version="4.0")
|
| 14 |
|
| 15 |
+
GEMINI_API_KEY='AIzaSyC0XU6yLCILZFUVhKoIcqoy2k5qwQmnDsc'
|
|
|
|
| 16 |
if not GEMINI_API_KEY:
|
| 17 |
raise ValueError("❌ GEMINI_API_KEY not found. Please set it in your .env file.")
|
| 18 |
|