hruday96's picture
Create app.py
adf260f verified
raw
history blame
300 Bytes
import streamlit as st
import google.generativeai as genai
# App header
st.header("JD-Resume-Fit-Check")
# Retrieve the API key from Streamlit secrets
GOOGLE_API_KEY = st.secrets["GEMINI_API_KEY"]
# Configure the Google Generative AI API with your API key
genai.configure(api_key=GOOGLE_API_KEY)