resume-helper / app.py
prabhanshu11's picture
Created the first iteration of app.
cc8caac
raw
history blame contribute delete
355 Bytes
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)