Spaces:
Sleeping
Sleeping
Update resume_generation_gemini_pro.py
#7
by
Anushkabhat9
- opened
resume_generation_gemini_pro.py
CHANGED
@@ -206,6 +206,8 @@ def generate_gemini(current_resume,job_description):
|
|
206 |
convert_resume_to_word(tailored_resume,output_file)
|
207 |
|
208 |
st.success(f"Tailored resume saved to {output_file}")
|
|
|
|
|
209 |
|
210 |
return tailored_resume, output_file
|
211 |
|
|
|
206 |
convert_resume_to_word(tailored_resume,output_file)
|
207 |
|
208 |
st.success(f"Tailored resume saved to {output_file}")
|
209 |
+
output_text = read_docx(output_file)
|
210 |
+
st.write(output_text)
|
211 |
|
212 |
return tailored_resume, output_file
|
213 |
|