Everywhere Inference Apps
Create inference application deployment
Creates a new application deployment based on a selected catalog application. Specify the desired deployment name, target regions, and configuration for each component. The platform will provision the necessary resources and initialize the application accordingly.
post/cloud/v3/inference/applications/{project_id}/deployments
Path parameters
project_idinteger required
Project ID
Example:1
Project ID
Request body
Example request
{
"api_keys": [
"key1",
"key2"
],
"application_name": "demo-app",
"components_configuration": {
"model": {
"exposed": true,
"flavor": "inference-16vcpu-232gib-1xh100-80gb",
"scale": {
"max": 1,
"min": 1
}
}
},
"regions": [
1,
2
]
}Response
OK
Example response
{
"tasks": [
"d478ae29-dedc-4869-82f0-96104425f565"
]
}