File size: 104 Bytes
a8d5e97
 
 
 
 
 
1
2
3
4
5
6
import gradio as gr


def talk(text):
    return "hi "+ text
gr.Interface(talk , "text","text").launch()