Spaces:
Runtime error
Runtime error
| import gradio as gr | |
| import groovy as gv | |
| from flow import flow | |
| with gr.Blocks() as app: | |
| task_box = gr.Textbox(label="🕺 Task", value="flow.task") | |
| with gr.Row(): | |
| if flow.inputs: | |
| with gr.Column(scale=1): | |
| for component in flow.inputs: | |
| component.render() | |
| with gr.Column(scale=2): | |
| gr.Image(label="Recording", value="recording.gif") | |
| config = gr.JSON(visible=False) | |
| def construct_prompt(*input_values): | |
| return flow.task.format(*input_values) | |
| app.load(flow.to_json, None, config, api_name="flow_config") | |
| if __name__ == "__main__": | |
| app.launch() | |