Spaces:
Sleeping
Sleeping
import gradio as gr | |
def talk(text): | |
return "hi "+ text | |
gr.Interface(talk , "text","text").launch() |
import gradio as gr | |
def talk(text): | |
return "hi "+ text | |
gr.Interface(talk , "text","text").launch() |