import gradio as gr
title = ""
description = "
WELCOME
"
latest_updates = ""
duplicate_space = "For faster inference without waiting in queue, you may duplicate the space. Ensure that the visibility is set to Public when duplicating. "
description += latest_updates + duplicate_space
def greet(Write):
return "Go to www.aibeast.net"
iface = gr.Interface(fn=greet, inputs="text", outputs="text", title=title, description=description)
iface.launch()