URGENT - Code interpreter is NOT working anymore switching from PLUS to Team

I recently switched to the Team version as you suggested by including several members among my colleagues. In this step I imported the more than 20 gpts I had created otherwise I would have lost them.

One specific of these gpts had a zip file inside the knowledge files which it read normally, as well as reading excel files and so on. Good, or rather, bad, because now the custom gpt is no longer able to read zip files, let alone other types of files that require the code interpreter (that is flagged) to be read and analysed.

This zip file contains over 100 doc files divided into folders, it is unthinkable and stupid to have to load them all. Previously everything worked correctly, now I am basically not allowed to update the knowledge and even in the front end it does not parse excel or zip files.

I switched to teams to use this gpt and now I’ve lost the ability to update it. What is the problem?
Pls do not suggest me to activate the “code interpreter” as it’s already flagged.

Here a copy of the python code when I try to launch the zip extraction.

from zipfile import ZipFile
import os

Path to the ZIP file in the provided environment

zip_file_path = ‘/mnt/data/PROGETTO UFFICIO STAMPA.zip’
extracted_folder_path = ‘/mnt/data/PROGETTO_UFFICIO_STAMPA’

Create a directory to extract the files

os.makedirs(extracted_folder_path, exist_ok=True)

Extract the ZIP file

with ZipFile(zip_file_path, ‘r’) as zip_ref:
zip_ref.extractall(extracted_folder_path)

List the files extracted

extracted_files = os.listdir(extracted_folder_path)
extracted_files