Update app.py
Browse files
app.py
CHANGED
@@ -16,6 +16,17 @@ candidate_name = st.text_input('Candidate Name', '')
|
|
16 |
candidate_designation = st.text_input('Candidate_Designation', '')
|
17 |
candidate_details = st.text_area('Candidate_Details-Skills, Experience. (comma separated)', '')
|
18 |
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
|
|
|
16 |
candidate_designation = st.text_input('Candidate_Designation', '')
|
17 |
candidate_details = st.text_area('Candidate_Details-Skills, Experience. (comma separated)', '')
|
18 |
|
19 |
+
# Dropdown menu for tone selection
|
20 |
+
st.subheader("Select the Tone of the Message:")
|
21 |
+
tone_options = ["Formal", "Friendly", "Persuasive", "Neutral"]
|
22 |
+
selected_tone = st.selectbox("Tone", tone_options)
|
23 |
+
|
24 |
+
# Buttons for message type
|
25 |
+
st.subheader("Select Message Type:")
|
26 |
+
col1, col2 = st.columns(2)
|
27 |
+
with col1:
|
28 |
+
linkedin_invite = st.button("LinkedIn Invite")
|
29 |
+
with col2:
|
30 |
+
email_invite = st.button("Email Invite")
|
31 |
|
32 |
|