constants.py 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. from enum import Enum
  2. class MESSAGES(str, Enum):
  3. DEFAULT = lambda msg="": f"{msg if msg else ''}"
  4. MODEL_ADDED = lambda model="": f"The model '{model}' has been added successfully."
  5. MODEL_DELETED = (
  6. lambda model="": f"The model '{model}' has been deleted successfully."
  7. )
  8. class WEBHOOK_MESSAGES(str, Enum):
  9. DEFAULT = lambda msg="": f"{msg if msg else ''}"
  10. USER_SIGNUP = lambda username="": (
  11. f"New user signed up: {username}" if username else "New user signed up"
  12. )
  13. class ERROR_MESSAGES(str, Enum):
  14. def __str__(self) -> str:
  15. return super().__str__()
  16. DEFAULT = (
  17. lambda err="": f'{"Something went wrong :/" if err == "" else "[ERROR: " + str(err) + "]"}'
  18. )
  19. ENV_VAR_NOT_FOUND = "Required environment variable not found. Terminating now."
  20. CREATE_USER_ERROR = "Oops! Something went wrong while creating your account. Please try again later. If the issue persists, contact support for assistance."
  21. DELETE_USER_ERROR = "Oops! Something went wrong. We encountered an issue while trying to delete the user. Please give it another shot."
  22. EMAIL_MISMATCH = "Uh-oh! This email does not match the email your provider is registered with. Please check your email and try again."
  23. EMAIL_TAKEN = "Uh-oh! This email is already registered. Sign in with your existing account or choose another email to start anew."
  24. USERNAME_TAKEN = (
  25. "Uh-oh! This username is already registered. Please choose another username."
  26. )
  27. COMMAND_TAKEN = "Uh-oh! This command is already registered. Please choose another command string."
  28. FILE_EXISTS = "Uh-oh! This file is already registered. Please choose another file."
  29. ID_TAKEN = "Uh-oh! This id is already registered. Please choose another id string."
  30. MODEL_ID_TAKEN = "Uh-oh! This model id is already registered. Please choose another model id string."
  31. NAME_TAG_TAKEN = "Uh-oh! This name tag is already registered. Please choose another name tag string."
  32. INVALID_TOKEN = (
  33. "Your session has expired or the token is invalid. Please sign in again."
  34. )
  35. INVALID_CRED = "The email or password provided is incorrect. Please check for typos and try logging in again."
  36. 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)."
  37. INVALID_PASSWORD = (
  38. "The password provided is incorrect. Please check for typos and try again."
  39. )
  40. INVALID_TRUSTED_HEADER = "Your provider has not provided a trusted header. Please contact your administrator for assistance."
  41. EXISTING_USERS = "You can't turn off authentication because there are existing users. If you want to disable WEBUI_AUTH, make sure your web interface doesn't have any existing users and is a fresh installation."
  42. UNAUTHORIZED = "401 Unauthorized"
  43. ACCESS_PROHIBITED = "You do not have permission to access this resource. Please contact your administrator for assistance."
  44. ACTION_PROHIBITED = (
  45. "The requested action has been restricted as a security measure."
  46. )
  47. FILE_NOT_SENT = "FILE_NOT_SENT"
  48. 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."
  49. NOT_FOUND = "We could not find what you're looking for :/"
  50. USER_NOT_FOUND = "We could not find what you're looking for :/"
  51. 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."
  52. MALICIOUS = "Unusual activities detected, please try again in a few minutes."
  53. PANDOC_NOT_INSTALLED = "Pandoc is not installed on the server. Please contact your administrator for assistance."
  54. INCORRECT_FORMAT = (
  55. lambda err="": f"Invalid format. Please use the correct format{err}"
  56. )
  57. RATE_LIMIT_EXCEEDED = "API rate limit exceeded"
  58. MODEL_NOT_FOUND = lambda name="": f"Model '{name}' was not found"
  59. OPENAI_NOT_FOUND = lambda name="": "OpenAI API was not found"
  60. OLLAMA_NOT_FOUND = "WebUI could not connect to Ollama"
  61. 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."
  62. EMPTY_CONTENT = "The content provided is empty. Please ensure that there is text or data present before proceeding."
  63. DB_NOT_SQLITE = "This feature is only available when running with SQLite databases."
  64. INVALID_URL = (
  65. "Oops! The URL you provided is invalid. Please double-check and try again."
  66. )
  67. WEB_SEARCH_ERROR = (
  68. lambda err="": f"{err if err else 'Oops! Something went wrong while searching the web.'}"
  69. )
  70. OLLAMA_API_DISABLED = (
  71. "The Ollama API is disabled. Please enable it to use this feature."
  72. )
  73. FILE_TOO_LARGE = (
  74. lambda size="": f"Oops! The file you're trying to upload is too large. Please upload a file that is less than {size}."
  75. )
  76. DUPLICATE_CONTENT = (
  77. "Duplicate content detected. Please provide unique content to proceed."
  78. )
  79. FILE_NOT_PROCESSED = "Extracted content is not available for this file. Please ensure that the file is processed before proceeding."
  80. class TASKS(str, Enum):
  81. def __str__(self) -> str:
  82. return super().__str__()
  83. DEFAULT = lambda task="": f"{task if task else 'generation'}"
  84. TITLE_GENERATION = "title_generation"
  85. TAGS_GENERATION = "tags_generation"
  86. EMOJI_GENERATION = "emoji_generation"
  87. QUERY_GENERATION = "query_generation"
  88. FUNCTION_CALLING = "function_calling"
  89. MOA_RESPONSE_GENERATION = "moa_response_generation"