import gradio as gr def compile(cs): return cs+" (but in lua)" demo = gr.Interface(fn=compile, inputs="text", outputs="text") demo.launch()