CoolFace
Apppublic

HuggyGuyJo01/KONNECT

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
file_processor.py5 linesDownload Raw Back to root
1def process_uploaded_files(dashboard_file, chat_interface_file):2    """Process the uploaded HTML files"""3    dashboard_content = dashboard_file.read().decode('utf-8')4    chat_interface_content = chat_interface_file.read().decode('utf-8')5    return dashboard_content, chat_interface_content