File size: 146 Bytes
918b834
 
bb4c477
 
918b834
bb4c477
918b834
1
2
3
4
5
6
7
8
import gradio as gr

def compile(cs):
    return cs+" (but in lua)"

demo = gr.Interface(fn=compile, inputs="text", outputs="text")
demo.launch()