HuggyGuyJo01/KONNECT
0
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