classification / app.py
ENGAliKarimi's picture
Upload app.py
241dcaf verified
raw
history blame contribute delete
167 Bytes
import gradio as gr
def greet(name):
return "Hello, Mohandes " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch(share=True)