File size: 1,963 Bytes
98bb2cc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import re
import os
import logging

class AIEMOTBot:
    def __init__(self):
        self.setup_logging()

    ## LOGGING CONFIGURATION
    ## -------------------------------------------------------------------------------------------
    # Configure logging to write to a file
    def setup_logging(self):
        logging.basicConfig(filename='app.log', level=logging.ERROR)

    def log_error(self, message):
        logging.error(message)

    ## HELPER FUNCTIONS
    ## ------------------------------------------------------------------------------------------
    # Function to format response received from a FastAPI endpoint
    @staticmethod
    def format_response(response_text):
        # Replace \n with newline character in markdown
        response_text = re.sub(r'\\n', '\n', response_text)

        # Check for bullet points and replace with markdown syntax
        response_text = re.sub(r'^\s*-\s+(.*)$', r'* \1', response_text, flags=re.MULTILINE)

        # Check for numbered lists and replace with markdown syntax
        response_text = re.sub(r'^\s*\d+\.\s+(.*)$', r'1. \1', response_text, flags=re.MULTILINE)

        # Check for headings and replace with markdown syntax
        response_text = re.sub(r'^\s*(#+)\s+(.*)$', r'\1 \2', response_text, flags=re.MULTILINE)
            
        return response_text

    # Function to unlink all images when the application closes
    @staticmethod
    def unlink_images(folder_path):
        # List all files in the folder
        image_files = os.listdir(folder_path)
        
        # Iterate over image files and unlink them
        for image_file in image_files:
            try:
                os.unlink(os.path.join(folder_path, image_file))
                print(f"Deleted: {image_file}")
            except Exception as e:
                print(f"Error deleting {image_file}: {e}")

if __name__ == "__main__":
    bot = AIEMOTBot()