RB-Modulation / app.py
fffiloni's picture
Update app.py
7d299b1 verified
raw
history blame
299 Bytes
import gradio as gr
from inference.utils import *
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()