constants.py 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. from enum import Enum
  2. class MESSAGES(str, Enum):
  3. DEFAULT = lambda msg="": f"{msg if msg else ''}"
  4. class WEBHOOK_MESSAGES(str, Enum):
  5. DEFAULT = lambda msg="": f"{msg if msg else ''}"
  6. USER_SIGNUP = lambda username="": (
  7. f"New user signed up: {username}" if username else "New user signed up"
  8. )
  9. class ERROR_MESSAGES(str, Enum):
  10. def __str__(self) -> str:
  11. return super().__str__()
  12. DEFAULT = lambda err="": f"Something went wrong :/\n{err if err else ''}"
  13. ENV_VAR_NOT_FOUND = "Required environment variable not found. Terminating now."
  14. CREATE_USER_ERROR = "Oops! Something went wrong while creating your account. Please try again later. If the issue persists, contact support for assistance."
  15. DELETE_USER_ERROR = "Oops! Something went wrong. We encountered an issue while trying to delete the user. Please give it another shot."
  16. EMAIL_MISMATCH = "Uh-oh! This email does not match the email your provider is registered with. Please check your email and try again."
  17. EMAIL_TAKEN = "Uh-oh! This email is already registered. Sign in with your existing account or choose another email to start anew."
  18. USERNAME_TAKEN = (
  19. "Uh-oh! This username is already registered. Please choose another username."
  20. )
  21. COMMAND_TAKEN = "Uh-oh! This command is already registered. Please choose another command string."
  22. FILE_EXISTS = "Uh-oh! This file is already registered. Please choose another file."
  23. NAME_TAG_TAKEN = "Uh-oh! This name tag is already registered. Please choose another name tag string."
  24. INVALID_TOKEN = (
  25. "Your session has expired or the token is invalid. Please sign in again."
  26. )
  27. INVALID_CRED = "The email or password provided is incorrect. Please check for typos and try logging in again."
  28. 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)."
  29. INVALID_PASSWORD = (
  30. "The password provided is incorrect. Please check for typos and try again."
  31. )
  32. INVALID_TRUSTED_HEADER = "Your provider has not provided a trusted header. Please contact your administrator for assistance."
  33. UNAUTHORIZED = "401 Unauthorized"
  34. ACCESS_PROHIBITED = "You do not have permission to access this resource. Please contact your administrator for assistance."
  35. ACTION_PROHIBITED = (
  36. "The requested action has been restricted as a security measure."
  37. )
  38. FILE_NOT_SENT = "FILE_NOT_SENT"
  39. 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."
  40. NOT_FOUND = "We could not find what you're looking for :/"
  41. USER_NOT_FOUND = "We could not find what you're looking for :/"
  42. 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."
  43. MALICIOUS = "Unusual activities detected, please try again in a few minutes."
  44. PANDOC_NOT_INSTALLED = "Pandoc is not installed on the server. Please contact your administrator for assistance."
  45. INCORRECT_FORMAT = (
  46. lambda err="": f"Invalid format. Please use the correct format{err}"
  47. )
  48. RATE_LIMIT_EXCEEDED = "API rate limit exceeded"
  49. MODEL_NOT_FOUND = lambda name="": f"Model '{name}' was not found"
  50. OPENAI_NOT_FOUND = lambda name="": "OpenAI API was not found"
  51. OLLAMA_NOT_FOUND = "WebUI could not connect to Ollama"
  52. CREATE_API_KEY_ERROR = "Oops! Something went wrong while creating your API key. Please try again later. If the issue persists, contact support for assistance."
  53. EMPTY_CONTENT = "The content provided is empty. Please ensure that there is text or data present before proceeding."