Bhuvan R Shetty
Update app.py
f9b14e7
raw
history blame
154 Bytes
import gradio as gr
def textclassifer(text):
return "hello"
interface=gr.Interface(fn=textclassifer,inputs='text',outputs='text')
interface.launch()