TestingModel / app.py
dipeshsingh's picture
Update app.py
354b919
raw
history blame
227 Bytes
import gradio as gr
def stringClening(str):
print(str + "cleaned")
def inputFromUser(inputData):
return stringClening(inputData)
ui = gr.Interface(fn=inputFromUser, inputs="text", outputs="text")
ui.launch()