Spaces:
Runtime error
Runtime error
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) | |