/** * NOTE: The client-side dataset loading logic has been moved to the backend. * The `DatasetManager` now uses `apiService.ts` to upload the raw .zip file directly to the server. * This file is now deprecated and should not be used. */ export const loadDatasetFromZip = async (): Promise => { throw new Error("`loadDatasetFromZip` has been moved to the backend. Please use `uploadAndProcessDataset` from `apiService.ts` instead."); };