diff --git a/output/schema/schema.json b/output/schema/schema.json index 45aad87141..50f02a2fc4 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -9207,34 +9207,6 @@ } ] }, - { - "availability": { - "stack": { - "stability": "stable", - "visibility": "public" - } - }, - "description": "Perform a chat completion task via the Elastic Inference Service (EIS)", - "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/current/inference-apis.html", - "name": "inference.post_eis_chat_completion", - "request": null, - "requestBodyRequired": false, - "requestMediaType": [ - "application/json" - ], - "response": null, - "responseMediaType": [ - "application/json" - ], - "urls": [ - { - "methods": [ - "POST" - ], - "path": "/_inference/chat_completion/{eis_inference_id}/_stream" - } - ] - }, { "availability": { "serverless": { @@ -9556,34 +9528,6 @@ } ] }, - { - "availability": { - "stack": { - "stability": "stable", - "visibility": "public" - } - }, - "description": "Configure an EIS inference endpoint", - "docUrl": "https://www.elastic.co/guide/en/elasticsearch/reference/current/infer-service-eis.html", - "name": "inference.put_eis", - "request": null, - "requestBodyRequired": false, - "requestMediaType": [ - "application/json" - ], - "response": null, - "responseMediaType": [ - "application/json" - ], - "urls": [ - { - "methods": [ - "PUT" - ], - "path": "/_inference/{task_type}/{eis_inference_id}" - } - ] - }, { "availability": { "serverless": { diff --git a/specification/_json_spec/inference.post_eis_chat_completion.json b/specification/_json_spec/inference.post_eis_chat_completion.json deleted file mode 100644 index e34b14913b..0000000000 --- a/specification/_json_spec/inference.post_eis_chat_completion.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "inference.post_eis_chat_completion": { - "documentation": { - "url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/inference-apis.html", - "description": "Perform a chat completion task via the Elastic Inference Service (EIS)" - }, - "stability": "stable", - "visibility": "public", - "headers": { - "accept": ["application/json"], - "content_type": ["application/json"] - }, - "url": { - "paths": [ - { - "path": "/_inference/chat_completion/{eis_inference_id}/_stream", - "methods": ["POST"], - "parts": { - "eis_inference_id": { - "type": "string", - "description": "The inference ID" - } - } - } - ] - }, - "body": { - "description": "The inference tasks settings to perform" - } - } -} diff --git a/specification/_json_spec/inference.put.eis.json b/specification/_json_spec/inference.put.eis.json deleted file mode 100644 index 281758769e..0000000000 --- a/specification/_json_spec/inference.put.eis.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "inference.put_eis": { - "documentation": { - "url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/infer-service-eis.html", - "description": "Configure an EIS inference endpoint" - }, - "stability": "stable", - "visibility": "public", - "headers": { - "accept": ["application/json"], - "content_type": ["application/json"] - }, - "url": { - "paths": [ - { - "path": "/_inference/{task_type}/{eis_inference_id}", - "methods": ["PUT"], - "parts": { - "task_type": { - "type": "string", - "description": "The task type" - }, - "eis_inference_id": { - "type": "string", - "description": "The inference ID" - } - } - } - ] - }, - "body": { - "description": "The inference endpoint's service settings" - } - } -}