Spaces:
Runtime error
Runtime error
File size: 264 Bytes
f085180 | 1 2 3 4 5 6 7 8 9 10 11 | # All environment and static configs # agent/config.py
import os
from dotenv import load_dotenv
load_dotenv()
GOOGLE_CSE_API_KEY = os.getenv("GOOGLE_CSE_API_KEY")
GOOGLE_CSE_CX = os.getenv("GOOGLE_CSE_CX")
GEMINI_API_KEY = os.getenv("GEMINI_API_KEY")
|