Sukanth07's picture
"Updated README.md with project description, structure, setup instructions, usage, core functionality, and other details."
8f6d05a
raw
history blame contribute delete
277 Bytes
import os
from dotenv import load_dotenv
load_dotenv()
BASE_DIR = os.path.abspath(os.path.join(os.getcwd(), '.'))
print(BASE_DIR)
MODELS_DIR = os.path.join(BASE_DIR, 'final_models')
GEMINI_API_KEY = os.getenv('GEMINI_API_KEY')
GEMINI_MODEL_NAME = 'gemini-1.5-flash-latest'