constants.py 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. from enum import Enum
  2. class MESSAGES(str, Enum):
  3. DEFAULT = lambda msg="": f"{msg if msg else ''}"
  4. class ERROR_MESSAGES(str, Enum):
  5. def __str__(self) -> str:
  6. return super().__str__()
  7. DEFAULT = lambda err="": f"Something went wrong :/\n{err if err else ''}"
  8. ENV_VAR_NOT_FOUND = "Required environment variable not found. Terminating now."
  9. CREATE_USER_ERROR = "Oops! Something went wrong while creating your account. Please try again later. If the issue persists, contact support for assistance."
  10. DELETE_USER_ERROR = "Oops! Something went wrong. We encountered an issue while trying to delete the user. Please give it another shot."
  11. EMAIL_TAKEN = "Uh-oh! This email is already registered. Sign in with your existing account or choose another email to start anew."
  12. USERNAME_TAKEN = (
  13. "Uh-oh! This username is already registered. Please choose another username."
  14. )
  15. COMMAND_TAKEN = "Uh-oh! This command is already registered. Please choose another command string."
  16. FILE_EXISTS = "Uh-oh! This file is already registered. Please choose another file."
  17. NAME_TAG_TAKEN = "Uh-oh! This name tag is already registered. Please choose another name tag string."
  18. INVALID_TOKEN = (
  19. "Your session has expired or the token is invalid. Please sign in again."
  20. )
  21. INVALID_CRED = "The email or password provided is incorrect. Please check for typos and try logging in again."
  22. INVALID_EMAIL_FORMAT = "The email format you entered is invalid. Please double-check and make sure you're using a valid email address (e.g., yourname@example.com)."
  23. INVALID_PASSWORD = (
  24. "The password provided is incorrect. Please check for typos and try again."
  25. )
  26. UNAUTHORIZED = "401 Unauthorized"
  27. ACCESS_PROHIBITED = "You do not have permission to access this resource. Please contact your administrator for assistance."
  28. ACTION_PROHIBITED = (
  29. "The requested action has been restricted as a security measure."
  30. )
  31. FILE_NOT_SENT = "FILE_NOT_SENT"
  32. FILE_NOT_SUPPORTED = "Oops! It seems like the file format you're trying to upload is not supported. Please upload a file with a supported format (e.g., JPG, PNG, PDF, TXT) and try again."
  33. NOT_FOUND = "We could not find what you're looking for :/"
  34. USER_NOT_FOUND = "We could not find what you're looking for :/"
  35. API_KEY_NOT_FOUND = "Oops! It looks like there's a hiccup. The API key is missing. Please make sure to provide a valid API key to access this feature."
  36. MALICIOUS = "Unusual activities detected, please try again in a few minutes."
  37. PANDOC_NOT_INSTALLED = "Pandoc is not installed on the server. Please contact your administrator for assistance."
  38. INCORRECT_FORMAT = (
  39. lambda err="": f"Invalid format. Please use the correct format{err if err else ''}"
  40. )
  41. RATE_LIMIT_EXCEEDED = "API rate limit exceeded"
  42. MODEL_NOT_FOUND = lambda name="": f"Model '{name}' was not found"
  43. OPENAI_NOT_FOUND = lambda name="": f"OpenAI API was not found"