Hi UnevenHorse85 ,
The overview page uses the Project's description
property. You can update that using the APIClient
( client.projects.update(...)
) or using a REST API call
A better example:from clearml.backend_api.session.client import APIClient client = APIClient() client.projects.update(project="<project-id>", description="...")