I don't see in docs is it currently possible to use daggr inside a gradio app. I think it would be neat to do gradio code like this: ```py workflowFileComponent = gr.File(label="Upload workflow file") with gr.Tabs(): with gr.Tab("Graph"): graph = gr.Daggr() with gr.Tab("Raw"): rawWorkflow = gr.Json() @gr.on( triggers=[workflowFileComponent.change], inputs=[workflowFileComponent], outputs=[graph, rawWorkflow], ) def _(workflowFilePath: str): workflow = readJsonFromPath(workflowFilePath) graph = gr.Daggr(myFunctionToConvertJsonToDaggr(workflow)) returh graph, workflow ```
I don't see in docs is it currently possible to use daggr inside a gradio app. I think it would be neat to do gradio code like this: