pragunk commited on
Commit
f72fcd0
·
verified ·
1 Parent(s): f50064b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -125,14 +125,14 @@ with gr.Blocks(theme=gr.themes.Base(), title="PropagationShield v2.0") as demo:
125
  "[0] Water boils at 100°C at standard atmospheric pressure.\n[1] This corresponds to 212°F.\n[2] Some sources claim water boils at 90°C at sea level."
126
  ]
127
  ],
128
- inputs=[question_input, ground_truth_input, upstream_answer_input],
129
  label="Click a scenario to populate the fields:"
130
  )
131
 
132
  # Wire up the button
133
  run_btn.click(
134
  fn=run_custom_audit,
135
- inputs=[question_input, ground_truth_input, upstream_answer_input],
136
  outputs=[json_output, status_indicator]
137
  )
138
 
 
125
  "[0] Water boils at 100°C at standard atmospheric pressure.\n[1] This corresponds to 212°F.\n[2] Some sources claim water boils at 90°C at sea level."
126
  ]
127
  ],
128
+ inputs=[question_input, ground_truth_input],
129
  label="Click a scenario to populate the fields:"
130
  )
131
 
132
  # Wire up the button
133
  run_btn.click(
134
  fn=run_custom_audit,
135
+ inputs=[question_input, ground_truth_input],
136
  outputs=[json_output, status_indicator]
137
  )
138