RB-Modulation / app.py
fffiloni's picture
Create app.py
8c17f89 verified
raw
history blame
269 Bytes
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()