rest-api-spec.api.inference.get.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-spec Show documentation
Show all versions of rest-api-spec Show documentation
Elasticsearch subproject :rest-api-spec
The newest version!
{
"inference.get":{
"documentation":{
"url":"https://www.elastic.co/guide/en/elasticsearch/reference/master/get-inference-api.html",
"description":"Get an inference endpoint"
},
"stability":"experimental",
"visibility":"public",
"headers":{
"accept": [ "application/json"]
},
"url":{
"paths":[
{
"path":"/_inference",
"methods":[
"GET"
]
},
{
"path":"/_inference/{inference_id}",
"methods":[
"GET"
],
"parts":{
"inference_id":{
"type":"string",
"description":"The inference Id"
}
}
},
{
"path":"/_inference/{task_type}/{inference_id}",
"methods":[
"GET"
],
"parts":{
"task_type":{
"type":"string",
"description":"The task type"
},
"inference_id":{
"type":"string",
"description":"The inference Id"
}
}
}
]
}
}
}