Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -42,6 +42,7 @@ with gr.Blocks() as demo:
|
|
| 42 |
out_file = gr.File(label="Download SVG")
|
| 43 |
btn.click(None, [], [view_str, chains], js="() => [document.getElementById('viewMatrixResult').value, document.getElementById('chains').value]") #
|
| 44 |
# on change of chains trigger, rendering
|
|
|
|
| 45 |
chains.change(predict, [inp, view_str, chains], [html, out_file])
|
| 46 |
|
| 47 |
|
|
|
|
| 42 |
out_file = gr.File(label="Download SVG")
|
| 43 |
btn.click(None, [], [view_str, chains], js="() => [document.getElementById('viewMatrixResult').value, document.getElementById('chains').value]") #
|
| 44 |
# on change of chains trigger, rendering
|
| 45 |
+
view_str.change(predict, [inp, view_str, chains], [html, out_file])
|
| 46 |
chains.change(predict, [inp, view_str, chains], [html, out_file])
|
| 47 |
|
| 48 |
|