19 lines
350 B
Python
19 lines
350 B
Python
"""
|
|
This file is used to run certain tasks when the HTTP server starts.
|
|
It's located here so it doesn't get imported with daemon.py
|
|
"""
|
|
|
|
try:
|
|
import gevent.monkey
|
|
|
|
gevent.monkey.patch_all()
|
|
except ImportError:
|
|
pass
|
|
|
|
from llm_server.pre_fork import server_startup
|
|
|
|
|
|
def on_starting(s):
|
|
server_startup(s)
|
|
print('Startup complete!')
|