curl --request POST \
--url https://api.galileo.ai/v2/integrations/labelstudio/export \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '
{
"project_name": "<string>",
"project_id": "<string>",
"run_id": "<string>",
"split": "training",
"task": "<string>",
"filter_params": {
"ids": [],
"span_regex": false,
"exclude_ids": [],
"likely_mislabeled_dep_percentile": 0,
"data_embs": false
},
"compare_to": "training",
"map_threshold": 0.5,
"workspace": "<string>",
"inference_name": "<string>",
"labels": [
"<string>"
]
}
'