Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
hiwei
/
chatglm2-6b-explorer
like
0
Runtime error
App
Files
Files
Community
1
420035b
chatglm2-6b-explorer
/
runserver.py
hiwei
init project
353256e
over 1 year ago
raw
Copy download link
history
blame
Safe
163 Bytes
import
uvicorn
from
chatglm2_6b.server
import
app
def
runserver
():
uvicorn.run(app, host=
"0.0.0.0"
, port=
10001
)
if
__name__ ==
'__main__'
:
runserver()