File size: 163 Bytes
353256e
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import uvicorn

from chatglm2_6b.server import app


def runserver():
    uvicorn.run(app, host="0.0.0.0", port=10001)


if __name__ == '__main__':
    runserver()