Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -14,23 +14,33 @@ col1, col2 = st.columns(2)
|
|
14 |
|
15 |
with col1:
|
16 |
st.header("Input")
|
17 |
-
default_text="""
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
"""
|
28 |
text = st.text_area("Enter text for NER analysis:", value=default_text, height=400, max_chars=None, key=None, help=None, placeholder=None)
|
29 |
analyze_button = st.button("Analyze")
|
30 |
|
31 |
st.write("""**Example Inputs:**
|
32 |
-
-
|
33 |
-
-
|
|
|
34 |
|
35 |
with col2:
|
36 |
st.header("Result")
|
|
|
14 |
|
15 |
with col1:
|
16 |
st.header("Input")
|
17 |
+
default_text="""Job Description:
|
18 |
+
We are seeking a talented Software Engineer to join our dynamic team at Tech Innovations Inc. You will be responsible for designing, developing, and maintaining software applications that meet the needs of our clients.
|
19 |
+
|
20 |
+
Key Responsibilities:
|
21 |
+
|
22 |
+
Develop high-quality software design and architecture
|
23 |
+
Identify, prioritize, and execute tasks in the software development life cycle
|
24 |
+
Review and debug code
|
25 |
+
Collaborate with other developers and engineers to ensure software quality
|
26 |
+
Required Qualifications:
|
27 |
+
|
28 |
+
Bachelor’s degree in Computer Science or related field
|
29 |
+
Proven experience as a Software Engineer or similar role
|
30 |
+
Familiarity with Agile development methodologies
|
31 |
+
Proficiency in programming languages such as Java, Python, or C#
|
32 |
+
Strong problem-solving skills and the ability to work in a team
|
33 |
+
Preferred Qualifications:
|
34 |
+
|
35 |
+
|
36 |
"""
|
37 |
text = st.text_area("Enter text for NER analysis:", value=default_text, height=400, max_chars=None, key=None, help=None, placeholder=None)
|
38 |
analyze_button = st.button("Analyze")
|
39 |
|
40 |
st.write("""**Example Inputs:**
|
41 |
+
- Experience with cloud services (AWS, Azure)
|
42 |
+
- Knowledge of databases (SQL, NoSQL)
|
43 |
+
- Familiarity with front-end technologies (HTML, CSS, JavaScript)""")
|
44 |
|
45 |
with col2:
|
46 |
st.header("Result")
|