Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -55,5 +55,7 @@ submit = st.button("Submit")
|
|
| 55 |
if submit:
|
| 56 |
if uploaded_file is not None:
|
| 57 |
text=input_pdf_text(uploaded_file)
|
| 58 |
-
response=
|
| 59 |
-
st.subheader(response)
|
|
|
|
|
|
|
|
|
| 55 |
if submit:
|
| 56 |
if uploaded_file is not None:
|
| 57 |
text=input_pdf_text(uploaded_file)
|
| 58 |
+
response = get_gemini_response(input_prompt.format(text=text, jd=jd))
|
| 59 |
+
st.subheader(response)
|
| 60 |
+
|
| 61 |
+
|