5fc6e77
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr from flow import flow with gr.Blocks() as app: for component in flow.inputs: component.interactive = True component.render() if __name__ == "__main__": app.launch()