Files
open-webui/backend/open_webui/constants.py

120 lines
5.9 KiB
Python
Raw Normal View History

2023-11-18 16:47:12 -08:00
from enum import Enum
class MESSAGES(str, Enum):
DEFAULT = lambda msg="": f"{msg if msg else ''}"
2024-04-21 17:37:59 -05:00
MODEL_ADDED = lambda model="": f"The model '{model}' has been added successfully."
MODEL_DELETED = (
lambda model="": f"The model '{model}' has been deleted successfully."
)
2023-11-18 16:47:12 -08:00
2024-03-20 18:35:02 -07: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-18 16:47:12 -08:00
class ERROR_MESSAGES(str, Enum):
2023-11-20 16:22:43 -08:00
def __str__(self) -> str:
return super().__str__()
2024-10-16 21:55:25 -07:00
DEFAULT = (
2024-10-17 20:29:31 -07:00
lambda err="": f'{"Something went wrong :/" if err == "" else "[ERROR: " + str(err) + "]"}'
2024-10-16 21:55:25 -07:00
)
2023-11-20 18:28:28 -08:00
ENV_VAR_NOT_FOUND = "Required environment variable not found. Terminating now."
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-28 23:02:49 -08:00
DELETE_USER_ERROR = "Oops! Something went wrong. We encountered an issue while trying to delete the user. Please give it another shot."
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-25 21:44:28 -08: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-02 21:35:47 -08:00
COMMAND_TAKEN = "Uh-oh! This command is already registered. Please choose another command string."
2024-01-08 01:54:03 -08:00
FILE_EXISTS = "Uh-oh! This file is already registered. Please choose another file."
2024-06-10 21:33:46 -07:00
ID_TAKEN = "Uh-oh! This id is already registered. Please choose another id string."
2024-05-24 22:21:57 -07:00
MODEL_ID_TAKEN = "Uh-oh! This model id is already registered. Please choose another model id string."
2024-01-08 01:49:20 -08:00
NAME_TAG_TAKEN = "Uh-oh! This name tag is already registered. Please choose another name tag string."
2024-10-01 09:40:08 -07:00
2023-11-18 21:41:43 -08: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-02 16:22:48 -08: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 00:26:47 -08:00
INVALID_PASSWORD = (
"The password provided is incorrect. Please check for typos and try again."
)
INVALID_TRUSTED_HEADER = "Your provider has not provided a trusted header. Please contact your administrator for assistance."
2024-05-08 09:30:14 -07:00
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."
2023-11-18 16:47:12 -08:00
UNAUTHORIZED = "401 Unauthorized"
2023-11-18 21:41:43 -08:00
ACCESS_PROHIBITED = "You do not have permission to access this resource. Please contact your administrator for assistance."
2023-11-19 00:13:59 -08:00
ACTION_PROHIBITED = (
2024-01-06 22:59:22 -08:00
"The requested action has been restricted as a security measure."
)
FILE_NOT_SENT = "FILE_NOT_SENT"
2025-02-03 16:14:00 -08: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 and try again."
2024-01-06 23:40:51 -08:00
2023-12-26 13:21:47 -08:00
NOT_FOUND = "We could not find what you're looking for :/"
2023-11-18 16:47:12 -08:00
USER_NOT_FOUND = "We could not find what you're looking for :/"
2024-01-04 18:38:03 -08: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."
API_KEY_NOT_ALLOWED = "Use of API key is not enabled in the environment."
2024-03-06 16:13:25 -08:00
2023-11-18 16:47:12 -08:00
MALICIOUS = "Unusual activities detected, please try again in a few minutes."
2024-01-13 08:46:56 -05:00
PANDOC_NOT_INSTALLED = "Pandoc is not installed on the server. Please contact your administrator for assistance."
2024-02-22 19:32:36 -08:00
INCORRECT_FORMAT = (
lambda err="": f"Invalid format. Please use the correct format{err}"
2024-02-22 19:32:36 -08:00
)
2024-02-25 11:55:15 -08:00
RATE_LIMIT_EXCEEDED = "API rate limit exceeded"
2024-03-05 01:07:59 -08:00
MODEL_NOT_FOUND = lambda name="": f"Model '{name}' was not found"
2024-03-26 18:22:17 +08:00
OPENAI_NOT_FOUND = lambda name="": "OpenAI API was not found"
2024-03-12 00:26:14 -07:00
OLLAMA_NOT_FOUND = "WebUI could not connect to Ollama"
2024-03-26 18:22:17 +08: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."
API_KEY_CREATION_NOT_ALLOWED = "API key creation is not allowed in the environment."
2024-03-25 23:47:08 -07:00
EMPTY_CONTENT = "The content provided is empty. Please ensure that there is text or data present before proceeding."
DB_NOT_SQLITE = "This feature is only available when running with SQLite databases."
INVALID_URL = (
"Oops! The URL you provided is invalid. Please double-check and try again."
)
WEB_SEARCH_ERROR = (
2024-06-01 19:52:12 -07:00
lambda err="": f"{err if err else 'Oops! Something went wrong while searching the web.'}"
)
OLLAMA_API_DISABLED = (
"The Ollama API is disabled. Please enable it to use this feature."
)
2024-09-30 01:00:13 +02:00
FILE_TOO_LARGE = (
lambda size="": f"Oops! The file you're trying to upload is too large. Please upload a file that is less than {size}."
)
2024-10-03 23:06:47 -07:00
DUPLICATE_CONTENT = (
"Duplicate content detected. Please provide unique content to proceed."
)
2024-10-03 22:22:22 -07:00
FILE_NOT_PROCESSED = "Extracted content is not available for this file. Please ensure that the file is processed before proceeding."
2024-10-03 21:05:55 -07:00
class TASKS(str, Enum):
def __str__(self) -> str:
return super().__str__()
2024-07-11 15:20:56 -07:00
DEFAULT = lambda task="": f"{task if task else 'generation'}"
TITLE_GENERATION = "title_generation"
2024-10-19 20:34:17 -07:00
TAGS_GENERATION = "tags_generation"
2024-07-11 15:20:56 -07:00
EMOJI_GENERATION = "emoji_generation"
QUERY_GENERATION = "query_generation"
2025-01-16 00:06:37 -08:00
IMAGE_PROMPT_GENERATION = "image_prompt_generation"
2024-12-01 00:23:06 -08:00
AUTOCOMPLETE_GENERATION = "autocomplete_generation"
2024-07-11 15:20:56 -07:00
FUNCTION_CALLING = "function_calling"
2024-08-18 20:59:59 +02:00
MOA_RESPONSE_GENERATION = "moa_response_generation"