Spaces:
Running
Running
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) | |