Prathamesh1420 commited on
Commit
9b3858f
1 Parent(s): 7f6c340

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -3
app.py CHANGED
@@ -124,7 +124,6 @@ resume_strategy_task = Task(
124
  expected_output=(
125
  "An updated resume that effectively highlights the candidate's qualifications and experiences relevant to the job."
126
  ),
127
- output_file="tailored_resume.md",
128
  context=[research_task, profile_task],
129
  agent=resume_strategist
130
  )
@@ -138,7 +137,6 @@ interview_preparation_task = Task(
138
  expected_output=(
139
  "A document containing key questions and talking points that the candidate should prepare for the initial interview."
140
  ),
141
- output_file="interview_materials.md",
142
  context=[research_task, profile_task, resume_strategy_task],
143
  agent=interview_preparer
144
  )
@@ -162,4 +160,14 @@ job_application_inputs = {
162
  results = job_application_crew.kickoff(inputs=job_application_inputs)
163
 
164
  # Display Results
165
- st.write(results)
 
 
 
 
 
 
 
 
 
 
 
124
  expected_output=(
125
  "An updated resume that effectively highlights the candidate's qualifications and experiences relevant to the job."
126
  ),
 
127
  context=[research_task, profile_task],
128
  agent=resume_strategist
129
  )
 
137
  expected_output=(
138
  "A document containing key questions and talking points that the candidate should prepare for the initial interview."
139
  ),
 
140
  context=[research_task, profile_task, resume_strategy_task],
141
  agent=interview_preparer
142
  )
 
160
  results = job_application_crew.kickoff(inputs=job_application_inputs)
161
 
162
  # Display Results
163
+ st.write("**Job Requirements:**")
164
+ st.write(results['job_requirements'])
165
+
166
+ st.write("**Personal Profile:**")
167
+ st.write(results['personal_profile'])
168
+
169
+ st.write("**Tailored Resume:**")
170
+ st.write(results['tailored_resume'])
171
+
172
+ st.write("**Interview Materials:**")
173
+ st.write(results['interview_materials'])