Spaces:
Runtime error
Runtime error
File size: 355 Bytes
77a5d8b cc8caac 77a5d8b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import streamlit as st
import os
from NLP_pkg import request_api, generate_summary
resume = st.text_area("Paste your resume here")
jd = st.text_area('Paste the Job Description')
# company_info = st.text_area('Enter information about the company')
if st.button("Go"):
output_label = generate_summary(resume, jd)
st.write("", output_label)
|