diff --git a/Static/ascii_text_prompts.py b/Static/ascii_text_prompts.py deleted file mode 100644 index 4f03291..0000000 --- a/Static/ascii_text_prompts.py +++ /dev/null @@ -1,35 +0,0 @@ -import re - - -ascii_art = f""" -┓┏ ┏┓┳ -┣┫┓┏┏┓╋ ┣┫┃ -┛┗┗┻┛┗┗ ┛┗┻ -""" - - -# Original ASCII Art with ANSI Color Codes -full_ascii_art = f""" -┓┏ ┏┓ •┏• • ┓ • ┓┓• -┣┫┓┏┏┓╋ ┣┫┏┓╋┓╋┓┏┓┏┓┃ ┓┏┓╋┏┓┃┃┓┏┓┏┓┏┓┏┏┓ -┛┗┗┻┛┗┗ ┛┗┛ ┗┗┛┗┗┗┗┻┗ ┗┛┗┗┗ ┗┗┗┗┫┗ ┛┗┗┗ - ┛ -""" - -infinitei = f""" -██╗███╗ ██╗███████╗██╗███╗ ██╗██╗████████╗██████╗ ██╗ -██║████╗ ██║██╔════╝██║████╗ ██║██║╚══██╔══╝╚════██╗██║ -██║██╔██╗ ██║█████╗ ██║██╔██╗ ██║██║ ██║ █████╔╝██║ -██║██║╚██╗██║██╔══╝ ██║██║╚██╗██║██║ ██║ ╚═══██╗██║ -██║██║ ╚████║██║ ██║██║ ╚████║██║ ██║ ██████╔╝██║ -╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ -""" - -# Function to strip ANSI escape codes -def strip_ansi_codes(text): - ansi_escape = re.compile(r'\x1B(?:[@-Z\\-_]|\[[0-?]*[ -/]*[@-~])') - return ansi_escape.sub('', text) - -# Stripped versions of the ASCII art -full_ascii_art_stripped = strip_ansi_codes(full_ascii_art) -infinitei_stripped = strip_ansi_codes(infinitei)