charliebaby2023's picture
Update app.py
96df028 verified
raw
history blame
319 Bytes
import gradio
def my_inference_function(name):
return "Heldddddddddddddddlo " + name + "!"
gradio_interface = gradio.Interface(
fn=my_inference_function,
inputs="text",
outputs="text",
examples=[
["Jill"],
["Sam"]
],
title="_ _",
description="_ _ _",
article="_"
)
gradio_interface.launch()