Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
| 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 |
|
|
|
|
| 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 |
|