constants.py 3.33 KB
Newer Older
1
2
3
4
5
6
7
from enum import Enum


class MESSAGES(str, Enum):
    DEFAULT = lambda msg="": f"{msg if msg else ''}"


Timothy J. Baek's avatar
Timothy J. Baek committed
8
9
10
11
12
13
14
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"
    )


15
class ERROR_MESSAGES(str, Enum):
Timothy J. Baek's avatar
Timothy J. Baek committed
16
17
18
    def __str__(self) -> str:
        return super().__str__()

19
    DEFAULT = lambda err="": f"Something went wrong :/\n{err if err else ''}"
Timothy J. Baek's avatar
Timothy J. Baek committed
20
    ENV_VAR_NOT_FOUND = "Required environment variable not found. Terminating now."
21
    CREATE_USER_ERROR = "Oops! Something went wrong while creating your account. Please try again later. If the issue persists, contact support for assistance."
22
    DELETE_USER_ERROR = "Oops! Something went wrong. We encountered an issue while trying to delete the user. Please give it another shot."
Timothy J. Baek's avatar
Timothy J. Baek committed
23
24
25
26
    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."
    )
Timothy J. Baek's avatar
Timothy J. Baek committed
27
    COMMAND_TAKEN = "Uh-oh! This command is already registered. Please choose another command string."
28
29
    FILE_EXISTS = "Uh-oh! This file is already registered. Please choose another file."

30
    NAME_TAG_TAKEN = "Uh-oh! This name tag is already registered. Please choose another name tag string."
Timothy J. Baek's avatar
Timothy J. Baek committed
31
32
33
34
    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."
35
    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)."
36
37
38
    INVALID_PASSWORD = (
        "The password provided is incorrect. Please check for typos and try again."
    )
39
    UNAUTHORIZED = "401 Unauthorized"
Timothy J. Baek's avatar
Timothy J. Baek committed
40
    ACCESS_PROHIBITED = "You do not have permission to access this resource. Please contact your administrator for assistance."
Timothy J. Baek's avatar
Timothy J. Baek committed
41
    ACTION_PROHIBITED = (
42
43
44
45
        "The requested action has been restricted as a security measure."
    )

    FILE_NOT_SENT = "FILE_NOT_SENT"
Timothy J. Baek's avatar
Timothy J. Baek committed
46
47
    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."

48
    NOT_FOUND = "We could not find what you're looking for :/"
49
    USER_NOT_FOUND = "We could not find what you're looking for :/"
50
    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."
Timothy J. Baek's avatar
Timothy J. Baek committed
51

52
    MALICIOUS = "Unusual activities detected, please try again in a few minutes."
Dave Bauman's avatar
Dave Bauman committed
53
54

    PANDOC_NOT_INSTALLED = "Pandoc is not installed on the server. Please contact your administrator for assistance."
Timothy J. Baek's avatar
Timothy J. Baek committed
55
    INCORRECT_FORMAT = (
56
        lambda err="": f"Invalid format. Please use the correct format{err}"
Timothy J. Baek's avatar
Timothy J. Baek committed
57
    )
Timothy J. Baek's avatar
Timothy J. Baek committed
58
    RATE_LIMIT_EXCEEDED = "API rate limit exceeded"
Timothy J. Baek's avatar
Timothy J. Baek committed
59
60

    MODEL_NOT_FOUND = lambda name="": f"Model '{name}' was not found"
Timothy J. Baek's avatar
Timothy J. Baek committed
61
    OPENAI_NOT_FOUND = lambda name="": f"OpenAI API was not found"
Timothy J. Baek's avatar
Timothy J. Baek committed
62
    OLLAMA_NOT_FOUND = "WebUI could not connect to Ollama"
Timothy J. Baek's avatar
Timothy J. Baek committed
63
64

    EMPTY_CONTENT = "The content provided is empty. Please ensure that there is text or data present before proceeding."