Module: Elasticsearch::API::Inference::Actions
- Included in:
- InferenceClient
- Defined in:
- lib/elasticsearch/api/namespace/inference.rb,
lib/elasticsearch/api/actions/inference/get_model.rb,
lib/elasticsearch/api/actions/inference/inference.rb,
lib/elasticsearch/api/actions/inference/put_model.rb,
lib/elasticsearch/api/actions/inference/delete_model.rb
Instance Method Summary collapse
-
#delete_model(arguments = {}) ⇒ Object
Delete model in the Inference API This functionality is Experimental and may be changed or removed completely in a future release.
-
#get_model(arguments = {}) ⇒ Object
Get a model in the Inference API This functionality is Experimental and may be changed or removed completely in a future release.
-
#inference(arguments = {}) ⇒ Object
Perform inference on a model This functionality is Experimental and may be changed or removed completely in a future release.
-
#put_model(arguments = {}) ⇒ Object
Configure a model for use in the Inference API This functionality is Experimental and may be changed or removed completely in a future release.
Instance Method Details
#delete_model(arguments = {}) ⇒ Object
Delete model in the Inference API This functionality is Experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/elasticsearch/api/actions/inference/delete_model.rb', line 37 def delete_model(arguments = {}) request_opts = { endpoint: arguments[:endpoint] || "inference.delete_model" } defined_params = [:task_type, :model_id].inject({}) do |set_variables, variable| set_variables[variable] = arguments[variable] if arguments.key?(variable) set_variables end request_opts[:defined_params] = defined_params unless defined_params.empty? raise ArgumentError, "Required argument 'task_type' missing" unless arguments[:task_type] raise ArgumentError, "Required argument 'model_id' missing" unless arguments[:model_id] arguments = arguments.clone headers = arguments.delete(:headers) || {} body = nil _task_type = arguments.delete(:task_type) _model_id = arguments.delete(:model_id) method = Elasticsearch::API::HTTP_DELETE path = "_inference/#{Utils.__listify(_task_type)}/#{Utils.__listify(_model_id)}" params = {} Elasticsearch::API::Response.new( perform_request(method, path, params, body, headers, request_opts) ) end |
#get_model(arguments = {}) ⇒ Object
Get a model in the Inference API This functionality is Experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/elasticsearch/api/actions/inference/get_model.rb', line 37 def get_model(arguments = {}) request_opts = { endpoint: arguments[:endpoint] || "inference.get_model" } defined_params = [:task_type, :model_id].inject({}) do |set_variables, variable| set_variables[variable] = arguments[variable] if arguments.key?(variable) set_variables end request_opts[:defined_params] = defined_params unless defined_params.empty? raise ArgumentError, "Required argument 'task_type' missing" unless arguments[:task_type] raise ArgumentError, "Required argument 'model_id' missing" unless arguments[:model_id] arguments = arguments.clone headers = arguments.delete(:headers) || {} body = nil _task_type = arguments.delete(:task_type) _model_id = arguments.delete(:model_id) method = Elasticsearch::API::HTTP_GET path = "_inference/#{Utils.__listify(_task_type)}/#{Utils.__listify(_model_id)}" params = {} Elasticsearch::API::Response.new( perform_request(method, path, params, body, headers, request_opts) ) end |
#inference(arguments = {}) ⇒ Object
Perform inference on a model This functionality is Experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features.
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/elasticsearch/api/actions/inference/inference.rb', line 38 def inference(arguments = {}) request_opts = { endpoint: arguments[:endpoint] || "inference.inference" } defined_params = [:task_type, :model_id].inject({}) do |set_variables, variable| set_variables[variable] = arguments[variable] if arguments.key?(variable) set_variables end request_opts[:defined_params] = defined_params unless defined_params.empty? raise ArgumentError, "Required argument 'task_type' missing" unless arguments[:task_type] raise ArgumentError, "Required argument 'model_id' missing" unless arguments[:model_id] arguments = arguments.clone headers = arguments.delete(:headers) || {} body = arguments.delete(:body) _task_type = arguments.delete(:task_type) _model_id = arguments.delete(:model_id) method = Elasticsearch::API::HTTP_POST path = "_inference/#{Utils.__listify(_task_type)}/#{Utils.__listify(_model_id)}" params = {} Elasticsearch::API::Response.new( perform_request(method, path, params, body, headers, request_opts) ) end |
#put_model(arguments = {}) ⇒ Object
Configure a model for use in the Inference API This functionality is Experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features.
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/elasticsearch/api/actions/inference/put_model.rb', line 38 def put_model(arguments = {}) request_opts = { endpoint: arguments[:endpoint] || "inference.put_model" } defined_params = [:task_type, :model_id].inject({}) do |set_variables, variable| set_variables[variable] = arguments[variable] if arguments.key?(variable) set_variables end request_opts[:defined_params] = defined_params unless defined_params.empty? raise ArgumentError, "Required argument 'task_type' missing" unless arguments[:task_type] raise ArgumentError, "Required argument 'model_id' missing" unless arguments[:model_id] arguments = arguments.clone headers = arguments.delete(:headers) || {} body = arguments.delete(:body) _task_type = arguments.delete(:task_type) _model_id = arguments.delete(:model_id) method = Elasticsearch::API::HTTP_PUT path = "_inference/#{Utils.__listify(_task_type)}/#{Utils.__listify(_model_id)}" params = {} Elasticsearch::API::Response.new( perform_request(method, path, params, body, headers, request_opts) ) end |