Commit e1b793f0 authored by Prayas Jain's avatar Prayas Jain

Added streamlit UI

parent 38e3fe00
import streamlit as st
# Title of the app
st.title("Enter JD to fetch resumes!")
# Create input fields for Job Title, Department, and Job Description
job_title = st.text_input("Job Title")
department = st.text_input("Department")
job_description = st.text_area("Job Description", height=200)
# Add a submit button
if st.button("Submit"):
if job_title and department and job_description:
st.success("Job Description Submitted Successfully!")
st.write(f"**Job Title:** {job_title}")
st.write(f"**Department:** {department}")
st.write(f"**Job Description:** {job_description}")
else:
st.error("Please fill in all the fields.")
\ No newline at end of file
......@@ -2,5 +2,5 @@ nltk
PyPDF2
scikit-learn
transformers
torch
streamlit
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment