demo / app.py
amir36's picture
2 inputs
e991f14
raw
history blame
383 Bytes
import gradio as gr
def greet(name, place):
return "Hello " + name + " from " + place + "!!"
iface = gr.Interface(
title="Dialogue Box",
description="upload a comic and enter a dialogue",
fn=greet,
inputs=[
gr.Textbox(placeholder="in 1", value="in 1"),
gr.Textbox(placeholder="in 2", value="in 2"),
],
outputs="text"
)
iface.launch()