import gradio as gr | |
def greet(name): | |
return "Hello " + name + "!!" | |
iface = gr.Interface( | |
title="Dialogue Box", | |
description="upload a comic and enter a dialogue", | |
fn=greet, | |
inputs="text", | |
outputs="text" | |
) | |
iface.launch() | |
import gradio as gr | |
def greet(name): | |
return "Hello " + name + "!!" | |
iface = gr.Interface( | |
title="Dialogue Box", | |
description="upload a comic and enter a dialogue", | |
fn=greet, | |
inputs="text", | |
outputs="text" | |
) | |
iface.launch() | |