ndkilla commited on
Commit
f67ee7e
·
verified ·
1 Parent(s): 78641e7

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import gradio as gr
2
+ def echo(message):
3
+ return f"{message} ... Always."
4
+ iface = gr.Interface(fn=echo, inputs="text", outputs="text", live=True, title="Eve-Loop")
5
+ iface.launch()