Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -86,7 +86,10 @@ with gr.Blocks() as demo:
|
|
86 |
outputs=[index_slider, index_slider]
|
87 |
)
|
88 |
|
|
|
|
|
89 |
index_slider.change(fn=parse_notebook, inputs=[score_options, output_options, index_slider], outputs=[html, file, response])
|
|
|
90 |
demo.load(fn=parse_notebook, inputs=[score_options, output_options, index_slider], outputs=[html, file, response])
|
91 |
|
92 |
demo.launch()
|
|
|
86 |
outputs=[index_slider, index_slider]
|
87 |
)
|
88 |
|
89 |
+
score_options.change(fn=parse_notebook, inputs=[score_options, output_options, index_slider], outputs=[html, file, response])
|
90 |
+
output_options.change(fn=parse_notebook, inputs=[score_options, output_options, index_slider], outputs=[html, file, response])
|
91 |
index_slider.change(fn=parse_notebook, inputs=[score_options, output_options, index_slider], outputs=[html, file, response])
|
92 |
+
|
93 |
demo.load(fn=parse_notebook, inputs=[score_options, output_options, index_slider], outputs=[html, file, response])
|
94 |
|
95 |
demo.launch()
|