TestingModel / app.py
dipeshsingh's picture
Update app.py
de25bab
raw
history blame
159 Bytes
import gradio as gr
def inputFromUser(name):
return "Hello " + name + "!!"
ui = gr.Interface(fn=inputFromUser, inputs="text", outputs="text")
ui.launch()