Interface InferenceFutureResponse

This class represents the responses from the poll_url of a InferenceFuture

Param: status

Inference status of either pending, running, completed

Param: response_url

URL to get the results once it's ready.

Remarks

This class is used in conjunction with the Client.inferAsync method. Please reference that methods remarks for more information.

interface InferenceFutureResponse {
    response_url: string;
    status: string;
}

Properties

Properties

response_url: string
status: string

Generated using TypeDoc