roblox-cs / app.py
asynchronousai's picture
Update app.py
b4460d1 verified
raw
history blame
146 Bytes
import gradio as gr
def code(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=code, inputs="text", outputs="text")
demo.launch()