LeoWalker commited on
Commit
41334c8
โ€ข
1 Parent(s): d5cb71d

expanded the text entry box

Browse files
Files changed (1) hide show
  1. 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: