examples / app.py
abidlabs's picture
abidlabs HF Staff
Upload app.py with huggingface_hub
5fc6e77 verified
raw
history blame
211 Bytes
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()