Invoke applications
Inferencing applications can be achieved using any of the methods described below.
Hydrosphere UI
To send a sample request using Hydrosphere UI, open the desired application, and press the Test button at the upper right corner. We will generate dummy inputs based on your model's contract and send an HTTP request to the model's endpoint.
HTTP Inference
POST
undefined/gateway/application/<application:name>
To send an HTTP request, you should send a POST request to the /gateway/application/<applicationName> endpoint with the JSON body containing your request data, composed with respect to the model's contract.
Path Parameters
Name | Type | Description |
---|---|---|
application:name | string | Name of the application |
Request Body
Name | Type | Description |
---|---|---|
object | Request data, composed with respect to the model's contract. |
gRPC
To send a gRPC request you need to create a specific client.
Python SDK
You can learn more about our Python SDK here.
Last updated