Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Dao3
/
dajuzi
like
0
Runtime error
App
Files
Files
Community
3
Fetching metadata from the HF Docker repository...
xianbao
commited on
Mar 17, 2023
Commit
1065bc6
·
1 Parent(s):
55fbd97
Update app.py
Browse files
Expose to the correct port.
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -25,4 +25,4 @@ def chatbot():
25
26
# 启动应用程序
27
if __name__ == '__main__':
28
-
app.run(debug=True)
25
26
# 启动应用程序
27
if __name__ == '__main__':
28
+
app.run(
host="0.0.0.0", port=7860,
debug=True)
)