This repository has been archived on 2024-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
2023-09-27 23:36:44 -06:00
|
|
|
import sys
|
|
|
|
|
2023-09-28 18:40:24 -06:00
|
|
|
from llm_server.custom_redis import redis
|
2023-09-27 23:36:44 -06:00
|
|
|
|
|
|
|
|
|
|
|
def server_startup(s):
|
2023-09-29 00:09:44 -06:00
|
|
|
if not redis.get('daemon_started', dtype=bool):
|
2023-09-27 23:36:44 -06:00
|
|
|
print('Could not find the key daemon_started in Redis. Did you forget to start the daemon process?')
|
|
|
|
sys.exit(1)
|