mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-19 04:45:07 -04:00
Add back inference.inference API (#126601)
This commit is contained in:
parent
55453aeef6
commit
1f68bfbc3e
1 changed files with 45 additions and 0 deletions
|
@ -0,0 +1,45 @@
|
|||
{
|
||||
"inference.inference": {
|
||||
"documentation": {
|
||||
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/post-inference-api.html",
|
||||
"description": "Perform inference"
|
||||
},
|
||||
"stability": "stable",
|
||||
"visibility": "public",
|
||||
"headers": {
|
||||
"accept": ["application/json"],
|
||||
"content_type": ["application/json"]
|
||||
},
|
||||
"url": {
|
||||
"paths": [
|
||||
{
|
||||
"path": "/_inference/{inference_id}",
|
||||
"methods": ["POST"],
|
||||
"parts": {
|
||||
"inference_id": {
|
||||
"type": "string",
|
||||
"description": "The inference Id"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "/_inference/{task_type}/{inference_id}",
|
||||
"methods": ["POST"],
|
||||
"parts": {
|
||||
"task_type": {
|
||||
"type": "string",
|
||||
"description": "The task type"
|
||||
},
|
||||
"inference_id": {
|
||||
"type": "string",
|
||||
"description": "The inference Id"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"body": {
|
||||
"description": "The inference payload"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue