Skip to main content
POST
/
v2
/
integrations
/
labelstudio
/
export
Export To Labelstudio
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>"
  ]
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Galileo-API-Key
string
header
required

Body

application/json

Schema for requesting data to be sent to labelstudio.

Coming soon!

project_name
string
required
project_id
string<uuid4>
required
run_id
string<uuid4>
required
split
enum<string>
required
Available options:
training,
validation,
test,
inference
task
string | null
filter_params
FilterParams · object
compare_to
enum<string> | null
Available options:
training,
validation,
test,
inference
map_threshold
number
default:0.5
workspace
string | null
inference_name
string | null
labels
string[] | null

Response

Successful Response