freddyaboulton HF staff commited on
Commit
5e3f570
1 Parent(s): 04f0241

push for backend

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -22,8 +22,8 @@ snapshot_download(repo_id, local_dir="./checkpoint", revision="main")
22
  IP = "0.0.0.0"
23
  PORT = 60808
24
 
25
- thread = Thread(target=serve, daemon=True)
26
- thread.start()
27
 
28
  API_URL = "http://0.0.0.0:60808/chat"
29
 
 
22
  IP = "0.0.0.0"
23
  PORT = 60808
24
 
25
+ serve(port=7860)
26
+
27
 
28
  API_URL = "http://0.0.0.0:60808/chat"
29