hruday96 commited on
Commit
47349ea
·
verified ·
1 Parent(s): 8160bb3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -10,9 +10,6 @@ GOOGLE_API_KEY = st.secrets["GEMINI_API_KEY"]
10
  # Configure the Google Generative AI API with your API key
11
  genai.configure(api_key=GOOGLE_API_KEY)
12
 
13
- # Title of the app
14
- st.header("Candidate Outreach Using AI")
15
-
16
  # Create a container for better grouping
17
  with st.container():
18
  st.subheader("Enter Candidate Details:")
@@ -28,7 +25,7 @@ with st.container():
28
 
29
  # Second column for job description
30
  with col2:
31
- job_description = st.text_area('Your Job Description:', '')
32
 
33
  # Dropdown menu for tone selection
34
  st.subheader("Select the Tone of the Message:")
 
10
  # Configure the Google Generative AI API with your API key
11
  genai.configure(api_key=GOOGLE_API_KEY)
12
 
 
 
 
13
  # Create a container for better grouping
14
  with st.container():
15
  st.subheader("Enter Candidate Details:")
 
25
 
26
  # Second column for job description
27
  with col2:
28
+ job_description = st.text_area('Your Job Description:', '', height=200)
29
 
30
  # Dropdown menu for tone selection
31
  st.subheader("Select the Tone of the Message:")