Update app.py
Browse files
app.py
CHANGED
@@ -106,7 +106,7 @@ def generate_summary(text, model):
|
|
106 |
def main():
|
107 |
st.title("Enhanced Resume Analyzer with GLinER Focus")
|
108 |
|
109 |
-
api_key =
|
110 |
uploaded_file = st.file_uploader("Choose a PDF or DOCX file", type=["pdf", "docx"])
|
111 |
|
112 |
if uploaded_file is not None and api_key:
|
|
|
106 |
def main():
|
107 |
st.title("Enhanced Resume Analyzer with GLinER Focus")
|
108 |
|
109 |
+
api_key = st.text_input("Enter your Google Gemini API key", type="password")
|
110 |
uploaded_file = st.file_uploader("Choose a PDF or DOCX file", type=["pdf", "docx"])
|
111 |
|
112 |
if uploaded_file is not None and api_key:
|