RobotDetector / app.py
Solutrian's picture
first
9da6783
raw
history blame contribute delete
No virus
170 Bytes
import gradio as gr
def greet(name):
return "Greetings person called " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()