Spaces:
Runtime error
Runtime error
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() | |