Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
def
|
4 |
-
return "
|
5 |
|
6 |
-
demo = gr.Interface(fn=
|
7 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
def compile(cs):
|
4 |
+
return cs+" (but in lua)"
|
5 |
|
6 |
+
demo = gr.Interface(fn=compile, inputs="text", outputs="text")
|
7 |
demo.launch()
|