Spaces:
Running
on
A100
Running
on
A100
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() |