File size: 152 Bytes
04cc6ed
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import gradio


def hallo(name):
    return  f'Hello {name}'


interface =  gradio.Interface(fn=hallo,inputs="text", outputs="text")

interface.launch()