Spaces:
Running
Running
bug fix
Browse files
app.py
CHANGED
|
@@ -241,6 +241,8 @@ with gr.Blocks(theme=gr.themes.Soft(), fill_height=True) as demo:
|
|
| 241 |
inputs=[model_choice, user_prompt, assistant_prompt, ablate_language, ablate_logic, ablate_social, ablate_world],
|
| 242 |
label="Try these examples:",
|
| 243 |
cache_examples=True,
|
|
|
|
|
|
|
| 244 |
)
|
| 245 |
|
| 246 |
if __name__ == "__main__":
|
|
|
|
| 241 |
inputs=[model_choice, user_prompt, assistant_prompt, ablate_language, ablate_logic, ablate_social, ablate_world],
|
| 242 |
label="Try these examples:",
|
| 243 |
cache_examples=True,
|
| 244 |
+
fn=route_and_plot,
|
| 245 |
+
outputs=[generation_output, table, plot, status],
|
| 246 |
)
|
| 247 |
|
| 248 |
if __name__ == "__main__":
|