## Download the best trained model artifact `autoscientist.download(strexperiment_id) -> BinaryResponseContent` **get** `/api/v1/autoscientist/{experiment_id}/download` Download the best trained model artifact ### Parameters - `experiment_id: str` ### Returns - `BinaryResponseContent` ### Example ```python import os from adaption import Adaption client = Adaption( api_key=os.environ.get("ADAPTION_API_KEY"), # This is the default and can be omitted ) response = client.autoscientist.download( "experiment_id", ) print(response) content = response.read() print(content) ```