deependu's picture
getting started with hf & gradio
f5573be
raw
history blame contribute delete
No virus
163 Bytes
import gradio as gr # type: ignore
def greet(name):
return "Hello " + name + "!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()