Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
port=5000
|
|
|
|
|
|
|
|
|
3 |
# Start the WebSocket server
|
4 |
async def start_websockets():
|
5 |
await(websockets.serve(handleWebSocket, 'localhost', port))
|
|
|
1 |
import gradio as gr
|
2 |
port=5000
|
3 |
+
|
4 |
+
def placeholder_func(input):
|
5 |
+
st.write(input)
|
6 |
+
|
7 |
# Start the WebSocket server
|
8 |
async def start_websockets():
|
9 |
await(websockets.serve(handleWebSocket, 'localhost', port))
|