Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
def fake_function(x):
|
4 |
+
return x
|
5 |
+
|
6 |
+
iface = gr.Interface(fake_function, inputs="text", outputs="text")
|
7 |
+
iface.launch()
|