import os
from scale_gp import SGPClient
client = SGPClient(
api_key=os.environ.get("SGP_API_KEY"), # This is the default and can be omitted
)
generic_delete_response = client.evaluation_datasets.remove(
"evaluation_dataset_id",
)
print(generic_delete_response.count){
"success": true,
"count": 123
}Deletes the dataset, and all other entities associated with the dataset, such as test cases, evaluations and results.
This is a permanent and destructive action that cannot be undone.
import os
from scale_gp import SGPClient
client = SGPClient(
api_key=os.environ.get("SGP_API_KEY"), # This is the default and can be omitted
)
generic_delete_response = client.evaluation_datasets.remove(
"evaluation_dataset_id",
)
print(generic_delete_response.count){
"success": true,
"count": 123
}