JulienHalgand's picture
Dead Simple test
7e87acc
raw
history blame
185 Bytes
import gradio as gr
def say_hello(name):
return f"Hello, {name}!"
iface = gr.Interface(fn=say_hello, inputs="text", outputs="text")
if __name__ == "__main__":
iface.launch()