Spaces:
Sleeping
Sleeping
File size: 666 Bytes
ae9f7ef 1bbca5f dcd2172 ae9f7ef dcd2172 ae9f7ef dcd2172 ae9f7ef dcd2172 ae9f7ef |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# Application that will help the Resume Screener will llms to find the best fits for the job
import streamlit as st
def main():
st.set_page_config(page_title="Resume Screening Assistance")
st.title('HR Resume Screening Assistance')
st.subheader('I can help you in resume screening process')
job_description = st.text_area("Enter your job description", key="1")
document_count = st.text_area("No.of 'Resumes' to return", key="2")
# Upload the Resumes (pdf files)
pdf = st.file_uploader("Upload resumes here, only PDF files allowed", type=["pdf"], accept_multiple_files=True)
submit_button = st.button("Help me with the analysis")
|