7e19be3 424e556
1
2
3
import Gradio as gr def greet(name): return f'Hello {name}!' gr.Interface(fn=greet, inputs='text', outputs='text').launch()