awacke1 commited on
Commit
5b4a189
·
verified ·
1 Parent(s): 90b362e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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))