roblox-cs / app.py
asynchronousai's picture
Update app.py
bb4c477 verified
raw
history blame
146 Bytes
import gradio as gr
def compile(cs):
return cs+" (but in lua)"
demo = gr.Interface(fn=compile, inputs="text", outputs="text")
demo.launch()