# 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")