Spaces:
Sleeping
Sleeping
expanded the text entry box
Browse files- streamlit_app.py +1 -7
streamlit_app.py
CHANGED
@@ -26,18 +26,12 @@ with col2:
|
|
26 |
st.write("""
|
27 |
Welcome to the Job Description Parser, a revolutionary tool designed to extract structured information from job descriptions using the magic of advanced Language Models (LLMs)! ๐ช๐
|
28 |
|
29 |
-
Our team of data scientists and military veterans is on a mission to revolutionize the way you approach your job search and resume optimization. By leveraging the power of LLMs, we've created a game-changing tool that will give you the inside scoop on what employers are really looking for in data-related roles. ๐ก
|
30 |
-
|
31 |
Our goal is to build a comprehensive database of job descriptions for various data-related positions, including Data Scientist ๐ฌ, Data Engineer โ๏ธ, Data Analyst ๐, Machine Learning Engineer ๐ค, and more! ๐ผ But we're not just collecting job postings โ we're taking it to the next level! Our cutting-edge LLM will parse each job description and extract key information, giving you unparalleled insights into what skills, experiences, and qualities are most sought-after in the industry. ๐
|
32 |
|
33 |
We've designed a robust system using Pydantic models to capture and structure the most important aspects of each job description, including company overview, role summary, responsibilities and qualifications, and compensation and benefits. ๐ฐ
|
34 |
|
35 |
-
With this wealth of information at your fingertips, you'll be able to tailor your resume and interview responses to perfectly match what employers are looking for! ๐ฏ
|
36 |
-
|
37 |
In the near future, we'll be adding even more powerful features to help you land your dream data job, such as automatically categorizing job descriptions based on key characteristics, providing personalized resume suggestions based on your target roles, and offering insider tips and strategies for acing data job interviews. ๐ฎ
|
38 |
|
39 |
-
We believe in the power of community and collaboration, so if you're passionate about data careers and want to contribute to this project, we'd love to have you on board! ๐ค
|
40 |
-
|
41 |
Upload a job description, select your models, and watch the magic happen. ๐ฉโจ Let's unlock the full potential of LLMs together and make job description parsing a breeze! ๐
|
42 |
""")
|
43 |
|
@@ -54,7 +48,7 @@ llm_dict = {
|
|
54 |
col1, col2 = st.columns(2)
|
55 |
|
56 |
with col1:
|
57 |
-
job_description = st.text_area("Enter the job description")
|
58 |
extract_button = st.button("Extract Fields from Description")
|
59 |
|
60 |
if extract_button and job_description:
|
|
|
26 |
st.write("""
|
27 |
Welcome to the Job Description Parser, a revolutionary tool designed to extract structured information from job descriptions using the magic of advanced Language Models (LLMs)! ๐ช๐
|
28 |
|
|
|
|
|
29 |
Our goal is to build a comprehensive database of job descriptions for various data-related positions, including Data Scientist ๐ฌ, Data Engineer โ๏ธ, Data Analyst ๐, Machine Learning Engineer ๐ค, and more! ๐ผ But we're not just collecting job postings โ we're taking it to the next level! Our cutting-edge LLM will parse each job description and extract key information, giving you unparalleled insights into what skills, experiences, and qualities are most sought-after in the industry. ๐
|
30 |
|
31 |
We've designed a robust system using Pydantic models to capture and structure the most important aspects of each job description, including company overview, role summary, responsibilities and qualifications, and compensation and benefits. ๐ฐ
|
32 |
|
|
|
|
|
33 |
In the near future, we'll be adding even more powerful features to help you land your dream data job, such as automatically categorizing job descriptions based on key characteristics, providing personalized resume suggestions based on your target roles, and offering insider tips and strategies for acing data job interviews. ๐ฎ
|
34 |
|
|
|
|
|
35 |
Upload a job description, select your models, and watch the magic happen. ๐ฉโจ Let's unlock the full potential of LLMs together and make job description parsing a breeze! ๐
|
36 |
""")
|
37 |
|
|
|
48 |
col1, col2 = st.columns(2)
|
49 |
|
50 |
with col1:
|
51 |
+
job_description = st.text_area("Enter the job description", height=200)
|
52 |
extract_button = st.button("Extract Fields from Description")
|
53 |
|
54 |
if extract_button and job_description:
|