Spaces:
Build error
Build error
| import gradio as gr | |
| def infer(un, deux, trois): | |
| return "quatre" | |
| gr.Interface( | |
| fn = infer, | |
| inputs=[gr.Textbox(label="style description"), gr.Image(label="Ref Style File", type="filepath"), gr.Textbox(label="caption")], | |
| outputs=[gr.Textbox()] | |
| ).launch() |