Model: And another refactor

This commit is contained in:
somebody
2023-03-01 19:16:35 -06:00
parent 225dcf1a0a
commit 54cecd4d5d
18 changed files with 3045 additions and 2911 deletions

View File

@@ -2,6 +2,18 @@ import sys
from functools import partialmethod
from loguru import logger
# Yes this shouldn't be here but I couldn't really find a better place to put
# it barring creating a whole file just for this which is rather silly
class Colors:
PURPLE = "\033[95m"
BLUE = "\033[94m"
CYAN = "\033[96m"
GREEN = "\033[92m"
YELLOW = "\033[93m"
RED = "\033[91m"
END = "\033[0m"
UNDERLINE = "\033[4m"
STDOUT_LEVELS = ["GENERATION", "PROMPT"]
INIT_LEVELS = ["INIT", "INIT_OK", "INIT_WARN", "INIT_ERR"]
MESSAGE_LEVELS = ["MESSAGE"]