File size: 139 Bytes
374b8bc
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import gradio as gr

def greet(name):
  return f"Hello {name}!"

gui = gr.Interface(fn=greet, inputs="text", outputs="text")

gui.launch()