Response Payload

This sub-page lets the integrator to actually be able to obtain the inference response with the output of individual tasks or tasks sequence in the order requested by the integrator.

Complete Payload

Audio Language Detection response
{
    "pipelineResponse": [
        {
            "taskType": "audio-lang-detection",
            "config": null,
            "output": [
                {
                    "audio": {
                        "audioContent": "INPUT_AUDIO_CONTENT",
                        "audioUri": null
                    },
                    "langPrediction": [
                        {
                            "langCode": "LANGUAGE_CODE",
                            "scriptCode": null,
                            "langScore": null
                        }
                    ]
                }
            ],
            "audio": null
        }
    ]
}

The above JSON Response shows the output of the Audio language detection task requested by the integrator in that order.

Last updated