Commit a73a09e7 authored by Prateek Lal's avatar Prateek Lal

initial commit

parent 38e3fe00
# Default ignored files
/shelf/
/workspace.xml
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="jdk" jdkName="Python 3.13" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
\ No newline at end of file
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="Python 3.13" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.13" project-jdk-type="Python SDK" />
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/hackathon.iml" filepath="$PROJECT_DIR$/.idea/hackathon.iml" />
</modules>
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>
\ No newline at end of file
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.")
......@@ -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