open-webui/backend/constants.py

25 lines
1013 B
Python
Raw Normal View History

2023-11-19 00:47:12 +00:00
from enum import Enum
class MESSAGES(str, Enum):
DEFAULT = lambda msg="": f"{msg if msg else ''}"
class ERROR_MESSAGES(str, Enum):
2023-11-21 00:22:43 +00:00
def __str__(self) -> str:
return super().__str__()
2023-11-19 00:47:12 +00:00
DEFAULT = lambda err="": f"Something went wrong :/\n{err if err else ''}"
2023-11-21 00:22:43 +00:00
ENV_VAR_NOT_FOUND = "Essential environment variable not found. Terminating now."
2023-11-19 05:41:43 +00:00
INVALID_TOKEN = (
"Your session has expired or the token is invalid. Please sign in again."
)
INVALID_CRED = "The email or password provided is incorrect. Please check for typos and try logging in again."
2023-11-19 00:47:12 +00:00
UNAUTHORIZED = "401 Unauthorized"
2023-11-19 05:41:43 +00:00
ACCESS_PROHIBITED = "You do not have permission to access this resource. Please contact your administrator for assistance."
2023-11-19 08:13:59 +00:00
ACTION_PROHIBITED = (
"The requested action has been restricted as a security measure."
)
2023-11-19 00:47:12 +00:00
USER_NOT_FOUND = "We could not find what you're looking for :/"
MALICIOUS = "Unusual activities detected, please try again in a few minutes."