Shirjannn commited on
Commit
72cc116
·
verified ·
1 Parent(s): ae40806

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -183,7 +183,15 @@ with gr.Blocks(title="Philosophical Analyzer") as demo:
183
  submit_btn.click(
184
  fn=analyze_text,
185
  inputs=input_text,
186
- outputs=[school, score, profile_box, timeline, best_quote, conceptual_map, psych_box]
 
 
 
 
 
 
 
 
187
  )
188
 
189
  demo.launch()
 
183
  submit_btn.click(
184
  fn=analyze_text,
185
  inputs=input_text,
186
+ outputs=[
187
+ school, # best_school
188
+ score, # similarity score
189
+ profile_box, # school_profile
190
+ timeline, # timeline
191
+ best_quote, # best_match
192
+ conceptual_map,# semantic_plot
193
+ psych_box # psych_output
194
+ ]
195
  )
196
 
197
  demo.launch()