Skip to content

Commit

Permalink
Set inference API stability to stable
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkyle committed Nov 16, 2024
1 parent 0dbfea3 commit 87025e2
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion specification/_json_spec/inference.delete.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/delete-inference-api.html",
"description": "Delete an inference endpoint"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/inference.get.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/get-inference-api.html",
"description": "Get an inference endpoint"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/inference.inference.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/post-inference-api.html",
"description": "Perform inference"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/inference.put.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/put-inference-api.html",
"description": "Configure an inference endpoint for use in the Inference API"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/inference.stream_inference.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/post-stream-inference-api.html",
"description": "Perform streaming inference"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["text/event-stream"],
Expand Down
4 changes: 2 additions & 2 deletions specification/inference/delete/DeleteRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import { Id } from '@_types/common'
/**
* Delete an inference endpoint
* @rest_spec_name inference.delete
* @availability stack since=8.11.0 stability=experimental visibility=public
* @availability serverless stability=experimental visibility=public
* @availability stack since=8.11.0 stability=stable visibility=public
* @availability serverless stability=stable visibility=public
*/
export interface Request extends RequestBase {
path_parts: {
Expand Down
4 changes: 2 additions & 2 deletions specification/inference/get/GetRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import { Id } from '@_types/common'
/**
* Get an inference endpoint
* @rest_spec_name inference.get
* @availability stack since=8.11.0 stability=experimental visibility=public
* @availability serverless stability=experimental visibility=public
* @availability stack since=8.11.0 stability=stable visibility=public
* @availability serverless stability=stable visibility=public
*/
export interface Request extends RequestBase {
path_parts: {
Expand Down
4 changes: 2 additions & 2 deletions specification/inference/inference/InferenceRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import { Duration } from '@_types/Time'
/**
* Perform inference on the service
* @rest_spec_name inference.inference
* @availability stack since=8.11.0 stability=experimental visibility=public
* @availability serverless stability=experimental visibility=public
* @availability stack since=8.11.0 stability=stable visibility=public
* @availability serverless stability=stable visibility=public
*/
export interface Request extends RequestBase {
path_parts: {
Expand Down
4 changes: 2 additions & 2 deletions specification/inference/put/PutRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import { Id } from '@_types/common'
/**
* Create an inference endpoint
* @rest_spec_name inference.put
* @availability stack since=8.11.0 stability=experimental visibility=public
* @availability serverless stability=experimental visibility=public
* @availability stack since=8.11.0 stability=stable visibility=public
* @availability serverless stability=stable visibility=public
*/
export interface Request extends RequestBase {
path_parts: {
Expand Down

0 comments on commit 87025e2

Please sign in to comment.