sitatech commited on
Commit
fb4ea2e
·
verified ·
1 Parent(s): 9f72f73

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,5 +6,5 @@ def echo(request: gr.Request):
6
  return {"body": "You are connected!", "headers": request.headers, "time": datetime.now()}
7
 
8
 
9
- demo = gr.Interface(fn=process, inputs=None, outputs=gr.JSON())
10
  demo.launch()
 
6
  return {"body": "You are connected!", "headers": request.headers, "time": datetime.now()}
7
 
8
 
9
+ demo = gr.Interface(fn=echo, inputs=None, outputs=gr.JSON())
10
  demo.launch()