2023-11-19 00:47:12 +00:00
from enum import Enum
class MESSAGES ( str , Enum ) :
DEFAULT = lambda msg = " " : f " { msg if msg else ' ' } "
2024-03-21 01:35:02 +00:00
class WEBHOOK_MESSAGES ( str , Enum ) :
DEFAULT = lambda msg = " " : f " { msg if msg else ' ' } "
USER_SIGNUP = lambda username = " " : (
f " New user signed up: { username } " if username else " New user signed up "
)
2023-11-19 00:47:12 +00:00
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 02:28:28 +00:00
ENV_VAR_NOT_FOUND = " Required environment variable not found. Terminating now. "
2023-12-27 20:06:22 +00:00
CREATE_USER_ERROR = " Oops! Something went wrong while creating your account. Please try again later. If the issue persists, contact support for assistance. "
2023-12-29 07:02:49 +00:00
DELETE_USER_ERROR = " Oops! Something went wrong. We encountered an issue while trying to delete the user. Please give it another shot. "
2024-03-26 21:30:53 +00:00
EMAIL_MISMATCH = " Uh-oh! This email does not match the email your provider is registered with. Please check your email and try again. "
2023-12-26 05:44:28 +00:00
EMAIL_TAKEN = " Uh-oh! This email is already registered. Sign in with your existing account or choose another email to start anew. "
USERNAME_TAKEN = (
" Uh-oh! This username is already registered. Please choose another username. "
)
2024-01-03 05:35:47 +00:00
COMMAND_TAKEN = " Uh-oh! This command is already registered. Please choose another command string. "
2024-01-08 09:54:03 +00:00
FILE_EXISTS = " Uh-oh! This file is already registered. Please choose another file. "
2024-01-08 09:49:20 +00:00
NAME_TAG_TAKEN = " Uh-oh! This name tag is already registered. Please choose another name tag string. "
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. "
2024-01-03 00:22:48 +00:00
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). "
2023-12-29 08:26:47 +00:00
INVALID_PASSWORD = (
" The password provided is incorrect. Please check for typos and try again. "
)
2024-03-26 21:30:53 +00:00
INVALID_TRUSTED_HEADER = " Your provider has not provided a trusted header. Please contact your administrator for assistance. "
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 = (
2024-01-07 06:59:22 +00:00
" The requested action has been restricted as a security measure. "
)
FILE_NOT_SENT = " FILE_NOT_SENT "
2024-01-07 07:40:51 +00:00
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. "
2023-12-26 21:21:47 +00:00
NOT_FOUND = " We could not find what you ' re looking for :/ "
2023-11-19 00:47:12 +00:00
USER_NOT_FOUND = " We could not find what you ' re looking for :/ "
2024-01-05 02:38:03 +00:00
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. "
2024-03-07 00:13:25 +00:00
2023-11-19 00:47:12 +00:00
MALICIOUS = " Unusual activities detected, please try again in a few minutes. "
2024-01-13 13:46:56 +00:00
PANDOC_NOT_INSTALLED = " Pandoc is not installed on the server. Please contact your administrator for assistance. "
2024-02-23 03:32:36 +00:00
INCORRECT_FORMAT = (
2024-03-13 16:01:46 +00:00
lambda err = " " : f " Invalid format. Please use the correct format { err } "
2024-02-23 03:32:36 +00:00
)
2024-02-25 19:55:15 +00:00
RATE_LIMIT_EXCEEDED = " API rate limit exceeded "
2024-03-05 09:07:59 +00:00
MODEL_NOT_FOUND = lambda name = " " : f " Model ' { name } ' was not found "
2024-03-26 10:22:17 +00:00
OPENAI_NOT_FOUND = lambda name = " " : " OpenAI API was not found "
2024-03-12 07:26:14 +00:00
OLLAMA_NOT_FOUND = " WebUI could not connect to Ollama "
2024-03-26 10:22:17 +00:00
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. "
2024-03-26 06:47:08 +00:00
EMPTY_CONTENT = " The content provided is empty. Please ensure that there is text or data present before proceeding. "