Vargock commited on
Commit
795cd36
·
1 Parent(s): 982913f

Fix host/port for Hugging Face Spaces

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -40,4 +40,4 @@ def index():
40
  return render_template("index.html", text=text, summary=summary)
41
 
42
  if __name__ == "__main__":
43
- app.run(debug=True)
 
40
  return render_template("index.html", text=text, summary=summary)
41
 
42
  if __name__ == "__main__":
43
+ app.run(host="0.0.0.0", port=7860, debug=False)