You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
** *`name` (Optional, string)*: List of component template names used to limit the request.
3846
3846
Wildcard (`*`) expressions are supported.
3847
3847
** *`flat_settings` (Optional, boolean)*: If `true`, returns settings in flat format.
3848
+
** *`settings_filter` (Optional, string | string[])*: Filter out results, for example to filter out sensitive information. Supports wildcards or full settings keys
3848
3849
** *`include_defaults` (Optional, boolean)*: Return all default configurations for the component template (default: false)
3849
3850
** *`local` (Optional, boolean)*: If `true`, the request retrieves information from the local node only.
3850
3851
If `false`, information is retrieved from the master node.
@@ -8169,6 +8170,16 @@ It can be a single string or an array.
8169
8170
** *`task_type` (Optional, Enum("sparse_embedding" | "text_embedding" | "rerank" | "completion" | "chat_completion"))*: The type of inference task that the model performs.
8170
8171
** *`query` (Optional, string)*: The query input, which is required only for the `rerank` task.
8171
8172
It is not required for other tasks.
8173
+
** *`input_type` (Optional, string)*: Specifies the input data type for the text embedding model. The `input_type` parameter only applies to Inference Endpoints with the `text_embedding` task type. Possible values include:
8174
+
* `SEARCH`
8175
+
* `INGEST`
8176
+
* `CLASSIFICATION`
8177
+
* `CLUSTERING`
8178
+
Not all services support all values. Unsupported values will trigger a validation exception.
8179
+
Accepted values depend on the configured inference service, refer to the relevant service-specific documentation for more info.
8180
+
8181
+
> info
8182
+
> The `input_type` parameter specified on the root level of the request body will take precedence over the `input_type` parameter specified in `task_settings`.
8172
8183
** *`task_settings` (Optional, User-defined value)*: Task settings for the individual inference request.
8173
8184
These settings are specific to the task type you specified and override the task settings specified when initializing the service.
8174
8185
** *`timeout` (Optional, string | -1 | 0)*: The amount of time to wait for the inference request to complete.
@@ -8706,7 +8717,7 @@ The only valid task type for the model to perform is `text_embedding`.
** *`application` (Optional, string)*: The name of the application. Application privileges are always associated with exactly one application. If you do not specify this parameter, the API returns information about all privileges for all applications.
13249
-
** *`priviledge` (Optional, string)*: The name of the privilege. If you do not specify this parameter, the API returns information about all privileges for the requested application.
13250
-
** *`username` (Optional, string | null)*
13251
13255
13252
13256
[discrete]
13253
13257
==== get_user_profile
@@ -13322,6 +13326,10 @@ It is not valid with other grant types.
13322
13326
If you specify the `password` grant type, this parameter is required.
13323
13327
It is not valid with other grant types.
13324
13328
** *`run_as` (Optional, string)*: The name of the user to be impersonated.
13329
+
** *`refresh` (Optional, Enum(true | false | "wait_for"))*: If 'true', Elasticsearch refreshes the affected shards to make this operation
13330
+
visible to search.
13331
+
If 'wait_for', it waits for a refresh to make this operation visible to search.
0 commit comments