elasticsearch 8.18.0__py3-none-any.whl → 8.18.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- elasticsearch/_async/client/cluster.py +2 -2
- elasticsearch/_async/client/inference.py +107 -0
- elasticsearch/_async/client/license.py +1 -1
- elasticsearch/_async/client/ml.py +5 -5
- elasticsearch/_async/client/transform.py +2 -2
- elasticsearch/_async/client/watcher.py +13 -13
- elasticsearch/_async/client/xpack.py +1 -1
- elasticsearch/_sync/client/cluster.py +2 -2
- elasticsearch/_sync/client/inference.py +107 -0
- elasticsearch/_sync/client/license.py +1 -1
- elasticsearch/_sync/client/ml.py +5 -5
- elasticsearch/_sync/client/transform.py +2 -2
- elasticsearch/_sync/client/watcher.py +13 -13
- elasticsearch/_sync/client/xpack.py +1 -1
- elasticsearch/_version.py +1 -1
- elasticsearch/dsl/field.py +139 -1
- elasticsearch/dsl/query.py +6 -0
- elasticsearch/dsl/types.py +44 -6
- {elasticsearch-8.18.0.dist-info → elasticsearch-8.18.1.dist-info}/METADATA +3 -1
- {elasticsearch-8.18.0.dist-info → elasticsearch-8.18.1.dist-info}/RECORD +25 -23
- elasticsearch-8.18.1.dist-info/licenses/LICENSE.txt +175 -0
- elasticsearch-8.18.1.dist-info/licenses/NOTICE.txt +559 -0
- {elasticsearch-8.18.0.dist-info → elasticsearch-8.18.1.dist-info}/WHEEL +0 -0
- {elasticsearch-8.18.0.dist-info → elasticsearch-8.18.1.dist-info}/licenses/LICENSE +0 -0
- {elasticsearch-8.18.0.dist-info → elasticsearch-8.18.1.dist-info}/licenses/NOTICE +0 -0
|
@@ -48,7 +48,7 @@ class WatcherClient(NamespacedClient):
|
|
|
48
48
|
This happens when the condition of the watch is not met (the condition evaluates to false).</p>
|
|
49
49
|
|
|
50
50
|
|
|
51
|
-
`<https://www.elastic.co/
|
|
51
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v8/operation/operation-watcher-ack-watch>`_
|
|
52
52
|
|
|
53
53
|
:param watch_id: The watch identifier.
|
|
54
54
|
:param action_id: A comma-separated list of the action identifiers to acknowledge.
|
|
@@ -104,7 +104,7 @@ class WatcherClient(NamespacedClient):
|
|
|
104
104
|
A watch can be either active or inactive.</p>
|
|
105
105
|
|
|
106
106
|
|
|
107
|
-
`<https://www.elastic.co/
|
|
107
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v8/operation/operation-watcher-activate-watch>`_
|
|
108
108
|
|
|
109
109
|
:param watch_id: The watch identifier.
|
|
110
110
|
"""
|
|
@@ -148,7 +148,7 @@ class WatcherClient(NamespacedClient):
|
|
|
148
148
|
A watch can be either active or inactive.</p>
|
|
149
149
|
|
|
150
150
|
|
|
151
|
-
`<https://www.elastic.co/
|
|
151
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v8/operation/operation-watcher-deactivate-watch>`_
|
|
152
152
|
|
|
153
153
|
:param watch_id: The watch identifier.
|
|
154
154
|
"""
|
|
@@ -196,7 +196,7 @@ class WatcherClient(NamespacedClient):
|
|
|
196
196
|
When Elasticsearch security features are enabled, make sure no write privileges are granted to anyone for the <code>.watches</code> index.</p>
|
|
197
197
|
|
|
198
198
|
|
|
199
|
-
`<https://www.elastic.co/
|
|
199
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v8/operation/operation-watcher-delete-watch>`_
|
|
200
200
|
|
|
201
201
|
:param id: The watch identifier.
|
|
202
202
|
"""
|
|
@@ -277,7 +277,7 @@ class WatcherClient(NamespacedClient):
|
|
|
277
277
|
<p>When using the run watch API, the authorization data of the user that called the API will be used as a base, instead of the information who stored the watch.</p>
|
|
278
278
|
|
|
279
279
|
|
|
280
|
-
`<https://www.elastic.co/
|
|
280
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v8/operation/operation-watcher-execute-watch>`_
|
|
281
281
|
|
|
282
282
|
:param id: The watch identifier.
|
|
283
283
|
:param action_modes: Determines how to handle the watch actions as part of the
|
|
@@ -365,7 +365,7 @@ class WatcherClient(NamespacedClient):
|
|
|
365
365
|
Only a subset of settings are shown, for example <code>index.auto_expand_replicas</code> and <code>index.number_of_replicas</code>.</p>
|
|
366
366
|
|
|
367
367
|
|
|
368
|
-
`<https://www.elastic.co/
|
|
368
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v8/operation/operation-watcher-get-settings>`_
|
|
369
369
|
|
|
370
370
|
:param master_timeout: The period to wait for a connection to the master node.
|
|
371
371
|
If no response is received before the timeout expires, the request fails
|
|
@@ -410,7 +410,7 @@ class WatcherClient(NamespacedClient):
|
|
|
410
410
|
<p>Get a watch.</p>
|
|
411
411
|
|
|
412
412
|
|
|
413
|
-
`<https://www.elastic.co/
|
|
413
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v8/operation/operation-watcher-get-watch>`_
|
|
414
414
|
|
|
415
415
|
:param id: The watch identifier.
|
|
416
416
|
"""
|
|
@@ -485,7 +485,7 @@ class WatcherClient(NamespacedClient):
|
|
|
485
485
|
If the user is able to read index <code>a</code>, but not index <code>b</code>, the same will apply when the watch runs.</p>
|
|
486
486
|
|
|
487
487
|
|
|
488
|
-
`<https://www.elastic.co/
|
|
488
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v8/operation/operation-watcher-put-watch>`_
|
|
489
489
|
|
|
490
490
|
:param id: The identifier for the watch.
|
|
491
491
|
:param actions: The list of actions that will be run if the condition matches.
|
|
@@ -598,7 +598,7 @@ class WatcherClient(NamespacedClient):
|
|
|
598
598
|
<p>Note that only the <code>_id</code> and <code>metadata.*</code> fields are queryable or sortable.</p>
|
|
599
599
|
|
|
600
600
|
|
|
601
|
-
`<https://www.elastic.co/
|
|
601
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v8/operation/operation-watcher-query-watches>`_
|
|
602
602
|
|
|
603
603
|
:param from_: The offset from the first result to fetch. It must be non-negative.
|
|
604
604
|
:param query: A query that filters the watches to be returned.
|
|
@@ -673,7 +673,7 @@ class WatcherClient(NamespacedClient):
|
|
|
673
673
|
Start the Watcher service if it is not already running.</p>
|
|
674
674
|
|
|
675
675
|
|
|
676
|
-
`<https://www.elastic.co/
|
|
676
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v8/operation/operation-watcher-start>`_
|
|
677
677
|
|
|
678
678
|
:param master_timeout: Period to wait for a connection to the master node.
|
|
679
679
|
"""
|
|
@@ -739,7 +739,7 @@ class WatcherClient(NamespacedClient):
|
|
|
739
739
|
You retrieve more metrics by using the metric parameter.</p>
|
|
740
740
|
|
|
741
741
|
|
|
742
|
-
`<https://www.elastic.co/
|
|
742
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v8/operation/operation-watcher-stats>`_
|
|
743
743
|
|
|
744
744
|
:param metric: Defines which additional metrics are included in the response.
|
|
745
745
|
:param emit_stacktraces: Defines whether stack traces are generated for each
|
|
@@ -790,7 +790,7 @@ class WatcherClient(NamespacedClient):
|
|
|
790
790
|
Stop the Watcher service if it is running.</p>
|
|
791
791
|
|
|
792
792
|
|
|
793
|
-
`<https://www.elastic.co/
|
|
793
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v8/operation/operation-watcher-stop>`_
|
|
794
794
|
|
|
795
795
|
:param master_timeout: The period to wait for the master node. If the master
|
|
796
796
|
node is not available before the timeout expires, the request fails and returns
|
|
@@ -851,7 +851,7 @@ class WatcherClient(NamespacedClient):
|
|
|
851
851
|
Watcher shards must always be in the <code>data_content</code> tier.</p>
|
|
852
852
|
|
|
853
853
|
|
|
854
|
-
`<https://www.elastic.co/
|
|
854
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v8/operation/operation-watcher-update-settings>`_
|
|
855
855
|
|
|
856
856
|
:param index_auto_expand_replicas:
|
|
857
857
|
:param index_number_of_replicas:
|
|
@@ -103,7 +103,7 @@ class XPackClient(NamespacedClient):
|
|
|
103
103
|
The API also provides some usage statistics.</p>
|
|
104
104
|
|
|
105
105
|
|
|
106
|
-
`<https://www.elastic.co/
|
|
106
|
+
`<https://www.elastic.co/docs/api/doc/elasticsearch/v8/group/endpoint-xpack>`_
|
|
107
107
|
|
|
108
108
|
:param master_timeout: The period to wait for a connection to the master node.
|
|
109
109
|
If no response is received before the timeout expires, the request fails
|
elasticsearch/_version.py
CHANGED
elasticsearch/dsl/field.py
CHANGED
|
@@ -437,7 +437,9 @@ class Object(Field):
|
|
|
437
437
|
doc_class: Union[Type["InnerDoc"], "DefaultType"] = DEFAULT,
|
|
438
438
|
*args: Any,
|
|
439
439
|
enabled: Union[bool, "DefaultType"] = DEFAULT,
|
|
440
|
-
subobjects: Union[
|
|
440
|
+
subobjects: Union[
|
|
441
|
+
Literal["true", "false", "auto"], bool, "DefaultType"
|
|
442
|
+
] = DEFAULT,
|
|
441
443
|
copy_to: Union[
|
|
442
444
|
Union[str, "InstrumentedField"],
|
|
443
445
|
Sequence[Union[str, "InstrumentedField"]],
|
|
@@ -1109,6 +1111,56 @@ class ConstantKeyword(Field):
|
|
|
1109
1111
|
super().__init__(*args, **kwargs)
|
|
1110
1112
|
|
|
1111
1113
|
|
|
1114
|
+
class CountedKeyword(Field):
|
|
1115
|
+
"""
|
|
1116
|
+
:arg index:
|
|
1117
|
+
:arg meta: Metadata about the field.
|
|
1118
|
+
:arg properties:
|
|
1119
|
+
:arg ignore_above:
|
|
1120
|
+
:arg dynamic:
|
|
1121
|
+
:arg fields:
|
|
1122
|
+
:arg synthetic_source_keep:
|
|
1123
|
+
"""
|
|
1124
|
+
|
|
1125
|
+
name = "counted_keyword"
|
|
1126
|
+
_param_defs = {
|
|
1127
|
+
"properties": {"type": "field", "hash": True},
|
|
1128
|
+
"fields": {"type": "field", "hash": True},
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
def __init__(
|
|
1132
|
+
self,
|
|
1133
|
+
*args: Any,
|
|
1134
|
+
index: Union[bool, "DefaultType"] = DEFAULT,
|
|
1135
|
+
meta: Union[Mapping[str, str], "DefaultType"] = DEFAULT,
|
|
1136
|
+
properties: Union[Mapping[str, Field], "DefaultType"] = DEFAULT,
|
|
1137
|
+
ignore_above: Union[int, "DefaultType"] = DEFAULT,
|
|
1138
|
+
dynamic: Union[
|
|
1139
|
+
Literal["strict", "runtime", "true", "false"], bool, "DefaultType"
|
|
1140
|
+
] = DEFAULT,
|
|
1141
|
+
fields: Union[Mapping[str, Field], "DefaultType"] = DEFAULT,
|
|
1142
|
+
synthetic_source_keep: Union[
|
|
1143
|
+
Literal["none", "arrays", "all"], "DefaultType"
|
|
1144
|
+
] = DEFAULT,
|
|
1145
|
+
**kwargs: Any,
|
|
1146
|
+
):
|
|
1147
|
+
if index is not DEFAULT:
|
|
1148
|
+
kwargs["index"] = index
|
|
1149
|
+
if meta is not DEFAULT:
|
|
1150
|
+
kwargs["meta"] = meta
|
|
1151
|
+
if properties is not DEFAULT:
|
|
1152
|
+
kwargs["properties"] = properties
|
|
1153
|
+
if ignore_above is not DEFAULT:
|
|
1154
|
+
kwargs["ignore_above"] = ignore_above
|
|
1155
|
+
if dynamic is not DEFAULT:
|
|
1156
|
+
kwargs["dynamic"] = dynamic
|
|
1157
|
+
if fields is not DEFAULT:
|
|
1158
|
+
kwargs["fields"] = fields
|
|
1159
|
+
if synthetic_source_keep is not DEFAULT:
|
|
1160
|
+
kwargs["synthetic_source_keep"] = synthetic_source_keep
|
|
1161
|
+
super().__init__(*args, **kwargs)
|
|
1162
|
+
|
|
1163
|
+
|
|
1112
1164
|
class Date(Field):
|
|
1113
1165
|
"""
|
|
1114
1166
|
:arg default_timezone: timezone that will be automatically used for tz-naive values
|
|
@@ -1118,6 +1170,8 @@ class Date(Field):
|
|
|
1118
1170
|
:arg format:
|
|
1119
1171
|
:arg ignore_malformed:
|
|
1120
1172
|
:arg index:
|
|
1173
|
+
:arg script:
|
|
1174
|
+
:arg on_script_error:
|
|
1121
1175
|
:arg null_value:
|
|
1122
1176
|
:arg precision_step:
|
|
1123
1177
|
:arg locale:
|
|
@@ -1150,6 +1204,8 @@ class Date(Field):
|
|
|
1150
1204
|
format: Union[str, "DefaultType"] = DEFAULT,
|
|
1151
1205
|
ignore_malformed: Union[bool, "DefaultType"] = DEFAULT,
|
|
1152
1206
|
index: Union[bool, "DefaultType"] = DEFAULT,
|
|
1207
|
+
script: Union["types.Script", Dict[str, Any], "DefaultType"] = DEFAULT,
|
|
1208
|
+
on_script_error: Union[Literal["fail", "continue"], "DefaultType"] = DEFAULT,
|
|
1153
1209
|
null_value: Any = DEFAULT,
|
|
1154
1210
|
precision_step: Union[int, "DefaultType"] = DEFAULT,
|
|
1155
1211
|
locale: Union[str, "DefaultType"] = DEFAULT,
|
|
@@ -1182,6 +1238,10 @@ class Date(Field):
|
|
|
1182
1238
|
kwargs["ignore_malformed"] = ignore_malformed
|
|
1183
1239
|
if index is not DEFAULT:
|
|
1184
1240
|
kwargs["index"] = index
|
|
1241
|
+
if script is not DEFAULT:
|
|
1242
|
+
kwargs["script"] = script
|
|
1243
|
+
if on_script_error is not DEFAULT:
|
|
1244
|
+
kwargs["on_script_error"] = on_script_error
|
|
1185
1245
|
if null_value is not DEFAULT:
|
|
1186
1246
|
kwargs["null_value"] = null_value
|
|
1187
1247
|
if precision_step is not DEFAULT:
|
|
@@ -1246,6 +1306,8 @@ class DateNanos(Field):
|
|
|
1246
1306
|
:arg format:
|
|
1247
1307
|
:arg ignore_malformed:
|
|
1248
1308
|
:arg index:
|
|
1309
|
+
:arg script:
|
|
1310
|
+
:arg on_script_error:
|
|
1249
1311
|
:arg null_value:
|
|
1250
1312
|
:arg precision_step:
|
|
1251
1313
|
:arg doc_values:
|
|
@@ -1272,6 +1334,8 @@ class DateNanos(Field):
|
|
|
1272
1334
|
format: Union[str, "DefaultType"] = DEFAULT,
|
|
1273
1335
|
ignore_malformed: Union[bool, "DefaultType"] = DEFAULT,
|
|
1274
1336
|
index: Union[bool, "DefaultType"] = DEFAULT,
|
|
1337
|
+
script: Union["types.Script", Dict[str, Any], "DefaultType"] = DEFAULT,
|
|
1338
|
+
on_script_error: Union[Literal["fail", "continue"], "DefaultType"] = DEFAULT,
|
|
1275
1339
|
null_value: Any = DEFAULT,
|
|
1276
1340
|
precision_step: Union[int, "DefaultType"] = DEFAULT,
|
|
1277
1341
|
doc_values: Union[bool, "DefaultType"] = DEFAULT,
|
|
@@ -1301,6 +1365,10 @@ class DateNanos(Field):
|
|
|
1301
1365
|
kwargs["ignore_malformed"] = ignore_malformed
|
|
1302
1366
|
if index is not DEFAULT:
|
|
1303
1367
|
kwargs["index"] = index
|
|
1368
|
+
if script is not DEFAULT:
|
|
1369
|
+
kwargs["script"] = script
|
|
1370
|
+
if on_script_error is not DEFAULT:
|
|
1371
|
+
kwargs["on_script_error"] = on_script_error
|
|
1304
1372
|
if null_value is not DEFAULT:
|
|
1305
1373
|
kwargs["null_value"] = null_value
|
|
1306
1374
|
if precision_step is not DEFAULT:
|
|
@@ -3085,6 +3153,76 @@ class Nested(Object):
|
|
|
3085
3153
|
super().__init__(*args, **kwargs)
|
|
3086
3154
|
|
|
3087
3155
|
|
|
3156
|
+
class Passthrough(Field):
|
|
3157
|
+
"""
|
|
3158
|
+
:arg enabled:
|
|
3159
|
+
:arg priority:
|
|
3160
|
+
:arg time_series_dimension:
|
|
3161
|
+
:arg copy_to:
|
|
3162
|
+
:arg store:
|
|
3163
|
+
:arg meta: Metadata about the field.
|
|
3164
|
+
:arg properties:
|
|
3165
|
+
:arg ignore_above:
|
|
3166
|
+
:arg dynamic:
|
|
3167
|
+
:arg fields:
|
|
3168
|
+
:arg synthetic_source_keep:
|
|
3169
|
+
"""
|
|
3170
|
+
|
|
3171
|
+
name = "passthrough"
|
|
3172
|
+
_param_defs = {
|
|
3173
|
+
"properties": {"type": "field", "hash": True},
|
|
3174
|
+
"fields": {"type": "field", "hash": True},
|
|
3175
|
+
}
|
|
3176
|
+
|
|
3177
|
+
def __init__(
|
|
3178
|
+
self,
|
|
3179
|
+
*args: Any,
|
|
3180
|
+
enabled: Union[bool, "DefaultType"] = DEFAULT,
|
|
3181
|
+
priority: Union[int, "DefaultType"] = DEFAULT,
|
|
3182
|
+
time_series_dimension: Union[bool, "DefaultType"] = DEFAULT,
|
|
3183
|
+
copy_to: Union[
|
|
3184
|
+
Union[str, "InstrumentedField"],
|
|
3185
|
+
Sequence[Union[str, "InstrumentedField"]],
|
|
3186
|
+
"DefaultType",
|
|
3187
|
+
] = DEFAULT,
|
|
3188
|
+
store: Union[bool, "DefaultType"] = DEFAULT,
|
|
3189
|
+
meta: Union[Mapping[str, str], "DefaultType"] = DEFAULT,
|
|
3190
|
+
properties: Union[Mapping[str, Field], "DefaultType"] = DEFAULT,
|
|
3191
|
+
ignore_above: Union[int, "DefaultType"] = DEFAULT,
|
|
3192
|
+
dynamic: Union[
|
|
3193
|
+
Literal["strict", "runtime", "true", "false"], bool, "DefaultType"
|
|
3194
|
+
] = DEFAULT,
|
|
3195
|
+
fields: Union[Mapping[str, Field], "DefaultType"] = DEFAULT,
|
|
3196
|
+
synthetic_source_keep: Union[
|
|
3197
|
+
Literal["none", "arrays", "all"], "DefaultType"
|
|
3198
|
+
] = DEFAULT,
|
|
3199
|
+
**kwargs: Any,
|
|
3200
|
+
):
|
|
3201
|
+
if enabled is not DEFAULT:
|
|
3202
|
+
kwargs["enabled"] = enabled
|
|
3203
|
+
if priority is not DEFAULT:
|
|
3204
|
+
kwargs["priority"] = priority
|
|
3205
|
+
if time_series_dimension is not DEFAULT:
|
|
3206
|
+
kwargs["time_series_dimension"] = time_series_dimension
|
|
3207
|
+
if copy_to is not DEFAULT:
|
|
3208
|
+
kwargs["copy_to"] = str(copy_to)
|
|
3209
|
+
if store is not DEFAULT:
|
|
3210
|
+
kwargs["store"] = store
|
|
3211
|
+
if meta is not DEFAULT:
|
|
3212
|
+
kwargs["meta"] = meta
|
|
3213
|
+
if properties is not DEFAULT:
|
|
3214
|
+
kwargs["properties"] = properties
|
|
3215
|
+
if ignore_above is not DEFAULT:
|
|
3216
|
+
kwargs["ignore_above"] = ignore_above
|
|
3217
|
+
if dynamic is not DEFAULT:
|
|
3218
|
+
kwargs["dynamic"] = dynamic
|
|
3219
|
+
if fields is not DEFAULT:
|
|
3220
|
+
kwargs["fields"] = fields
|
|
3221
|
+
if synthetic_source_keep is not DEFAULT:
|
|
3222
|
+
kwargs["synthetic_source_keep"] = synthetic_source_keep
|
|
3223
|
+
super().__init__(*args, **kwargs)
|
|
3224
|
+
|
|
3225
|
+
|
|
3088
3226
|
class Percolator(Field):
|
|
3089
3227
|
"""
|
|
3090
3228
|
:arg meta: Metadata about the field.
|
elasticsearch/dsl/query.py
CHANGED
|
@@ -1083,6 +1083,8 @@ class Knn(Query):
|
|
|
1083
1083
|
:arg filter: Filters for the kNN search query
|
|
1084
1084
|
:arg similarity: The minimum similarity for a vector to be considered
|
|
1085
1085
|
a match
|
|
1086
|
+
:arg rescore_vector: Apply oversampling and rescoring to quantized
|
|
1087
|
+
vectors *
|
|
1086
1088
|
:arg boost: Floating point number used to decrease or increase the
|
|
1087
1089
|
relevance scores of the query. Boost values are relative to the
|
|
1088
1090
|
default value of 1.0. A boost value between 0 and 1.0 decreases
|
|
@@ -1108,6 +1110,9 @@ class Knn(Query):
|
|
|
1108
1110
|
k: Union[int, "DefaultType"] = DEFAULT,
|
|
1109
1111
|
filter: Union[Query, Sequence[Query], "DefaultType"] = DEFAULT,
|
|
1110
1112
|
similarity: Union[float, "DefaultType"] = DEFAULT,
|
|
1113
|
+
rescore_vector: Union[
|
|
1114
|
+
"types.RescoreVector", Dict[str, Any], "DefaultType"
|
|
1115
|
+
] = DEFAULT,
|
|
1111
1116
|
boost: Union[float, "DefaultType"] = DEFAULT,
|
|
1112
1117
|
_name: Union[str, "DefaultType"] = DEFAULT,
|
|
1113
1118
|
**kwargs: Any,
|
|
@@ -1120,6 +1125,7 @@ class Knn(Query):
|
|
|
1120
1125
|
k=k,
|
|
1121
1126
|
filter=filter,
|
|
1122
1127
|
similarity=similarity,
|
|
1128
|
+
rescore_vector=rescore_vector,
|
|
1123
1129
|
boost=boost,
|
|
1124
1130
|
_name=_name,
|
|
1125
1131
|
**kwargs,
|
elasticsearch/dsl/types.py
CHANGED
|
@@ -380,15 +380,24 @@ class DenseVectorIndexOptions(AttrDict[Any]):
|
|
|
380
380
|
`int4_flat` index types.
|
|
381
381
|
:arg ef_construction: The number of candidates to track while
|
|
382
382
|
assembling the list of nearest neighbors for each new node. Only
|
|
383
|
-
applicable to `hnsw`, `int8_hnsw`, and `int4_hnsw`
|
|
384
|
-
Defaults to `100` if omitted.
|
|
383
|
+
applicable to `hnsw`, `int8_hnsw`, `bbq_hnsw`, and `int4_hnsw`
|
|
384
|
+
index types. Defaults to `100` if omitted.
|
|
385
385
|
:arg m: The number of neighbors each node will be connected to in the
|
|
386
|
-
HNSW graph. Only applicable to `hnsw`, `int8_hnsw`,
|
|
387
|
-
`int4_hnsw` index types. Defaults to `16` if omitted.
|
|
386
|
+
HNSW graph. Only applicable to `hnsw`, `int8_hnsw`, `bbq_hnsw`,
|
|
387
|
+
and `int4_hnsw` index types. Defaults to `16` if omitted.
|
|
388
388
|
"""
|
|
389
389
|
|
|
390
390
|
type: Union[
|
|
391
|
-
Literal[
|
|
391
|
+
Literal[
|
|
392
|
+
"bbq_flat",
|
|
393
|
+
"bbq_hnsw",
|
|
394
|
+
"flat",
|
|
395
|
+
"hnsw",
|
|
396
|
+
"int4_flat",
|
|
397
|
+
"int4_hnsw",
|
|
398
|
+
"int8_flat",
|
|
399
|
+
"int8_hnsw",
|
|
400
|
+
],
|
|
392
401
|
DefaultType,
|
|
393
402
|
]
|
|
394
403
|
confidence_interval: Union[float, DefaultType]
|
|
@@ -399,7 +408,16 @@ class DenseVectorIndexOptions(AttrDict[Any]):
|
|
|
399
408
|
self,
|
|
400
409
|
*,
|
|
401
410
|
type: Union[
|
|
402
|
-
Literal[
|
|
411
|
+
Literal[
|
|
412
|
+
"bbq_flat",
|
|
413
|
+
"bbq_hnsw",
|
|
414
|
+
"flat",
|
|
415
|
+
"hnsw",
|
|
416
|
+
"int4_flat",
|
|
417
|
+
"int4_hnsw",
|
|
418
|
+
"int8_flat",
|
|
419
|
+
"int8_hnsw",
|
|
420
|
+
],
|
|
403
421
|
DefaultType,
|
|
404
422
|
] = DEFAULT,
|
|
405
423
|
confidence_interval: Union[float, DefaultType] = DEFAULT,
|
|
@@ -591,6 +609,7 @@ class FieldSort(AttrDict[Any]):
|
|
|
591
609
|
"completion",
|
|
592
610
|
"nested",
|
|
593
611
|
"object",
|
|
612
|
+
"passthrough",
|
|
594
613
|
"version",
|
|
595
614
|
"murmur3",
|
|
596
615
|
"token_count",
|
|
@@ -617,6 +636,7 @@ class FieldSort(AttrDict[Any]):
|
|
|
617
636
|
"shape",
|
|
618
637
|
"histogram",
|
|
619
638
|
"constant_keyword",
|
|
639
|
+
"counted_keyword",
|
|
620
640
|
"aggregate_metric_double",
|
|
621
641
|
"dense_vector",
|
|
622
642
|
"semantic_text",
|
|
@@ -654,6 +674,7 @@ class FieldSort(AttrDict[Any]):
|
|
|
654
674
|
"completion",
|
|
655
675
|
"nested",
|
|
656
676
|
"object",
|
|
677
|
+
"passthrough",
|
|
657
678
|
"version",
|
|
658
679
|
"murmur3",
|
|
659
680
|
"token_count",
|
|
@@ -680,6 +701,7 @@ class FieldSort(AttrDict[Any]):
|
|
|
680
701
|
"shape",
|
|
681
702
|
"histogram",
|
|
682
703
|
"constant_keyword",
|
|
704
|
+
"counted_keyword",
|
|
683
705
|
"aggregate_metric_double",
|
|
684
706
|
"dense_vector",
|
|
685
707
|
"semantic_text",
|
|
@@ -2850,6 +2872,22 @@ class RegressionInferenceOptions(AttrDict[Any]):
|
|
|
2850
2872
|
super().__init__(kwargs)
|
|
2851
2873
|
|
|
2852
2874
|
|
|
2875
|
+
class RescoreVector(AttrDict[Any]):
|
|
2876
|
+
"""
|
|
2877
|
+
:arg oversample: (required) Applies the specified oversample factor to
|
|
2878
|
+
k on the approximate kNN search
|
|
2879
|
+
"""
|
|
2880
|
+
|
|
2881
|
+
oversample: Union[float, DefaultType]
|
|
2882
|
+
|
|
2883
|
+
def __init__(
|
|
2884
|
+
self, *, oversample: Union[float, DefaultType] = DEFAULT, **kwargs: Any
|
|
2885
|
+
):
|
|
2886
|
+
if oversample is not DEFAULT:
|
|
2887
|
+
kwargs["oversample"] = oversample
|
|
2888
|
+
super().__init__(kwargs)
|
|
2889
|
+
|
|
2890
|
+
|
|
2853
2891
|
class ScoreSort(AttrDict[Any]):
|
|
2854
2892
|
"""
|
|
2855
2893
|
:arg order:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: elasticsearch
|
|
3
|
-
Version: 8.18.
|
|
3
|
+
Version: 8.18.1
|
|
4
4
|
Summary: Python client for Elasticsearch
|
|
5
5
|
Project-URL: Documentation, https://elasticsearch-py.readthedocs.io/
|
|
6
6
|
Project-URL: Homepage, https://github.com/elastic/elasticsearch-py
|
|
@@ -10,7 +10,9 @@ Author-email: Elastic Client Library Maintainers <client-libs@elastic.co>
|
|
|
10
10
|
Maintainer-email: Elastic Client Library Maintainers <client-libs@elastic.co>
|
|
11
11
|
License-Expression: Apache-2.0
|
|
12
12
|
License-File: LICENSE
|
|
13
|
+
License-File: LICENSE.txt
|
|
13
14
|
License-File: NOTICE
|
|
15
|
+
License-File: NOTICE.txt
|
|
14
16
|
Keywords: REST,client,elastic,elasticsearch,index,kibana,mapping,search
|
|
15
17
|
Classifier: Development Status :: 5 - Production/Stable
|
|
16
18
|
Classifier: Intended Audience :: Developers
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
elasticsearch/__init__.py,sha256=KicjUPfCZzRi4nTg2vJa1CklY168gVI6WwQsF2qsoXM,3325
|
|
2
2
|
elasticsearch/_otel.py,sha256=Oidt86g9XzeVrwMsJeV7dGLsyquVMJWfhcRlz43RlGo,4188
|
|
3
3
|
elasticsearch/_utils.py,sha256=Vr_aNG5ddxInE1PgDpCXMYpXBTNUFM9nYrgbw-cjeCc,1419
|
|
4
|
-
elasticsearch/_version.py,sha256=
|
|
4
|
+
elasticsearch/_version.py,sha256=tQbRxkJ-078N54UqqK1BsRJX3JLV9jx5rys98jlq18E,814
|
|
5
5
|
elasticsearch/client.py,sha256=D7XS3Fa57GEbBVIaJLQdzbA12_pdmRXCscdnwnXjn4U,5498
|
|
6
6
|
elasticsearch/compat.py,sha256=hL3mtqVxWwxeiFbNGADva5XruAwK-A6xcu-vrpnDXFs,2657
|
|
7
7
|
elasticsearch/exceptions.py,sha256=ynpP0TLJxur7x7JQJD-CFtXov0bPImGt234gdlAyv6g,4142
|
|
@@ -16,7 +16,7 @@ elasticsearch/_async/client/async_search.py,sha256=E_CL2j-zpQEVXbfG6ZAqbN8ahM5wb
|
|
|
16
16
|
elasticsearch/_async/client/autoscaling.py,sha256=agGl_shrA9WC77XLCuEn6lOcBdEshUw6_sLUdcqs1NM,11247
|
|
17
17
|
elasticsearch/_async/client/cat.py,sha256=CmbgDcVBOsCDH7goPRzEb6K0kgHnt9NwJONq86DIz_Q,132337
|
|
18
18
|
elasticsearch/_async/client/ccr.py,sha256=2m2cInOGUtcRyCTFiqNrPjyi2cU5gvwBxZRc3fATyQs,49873
|
|
19
|
-
elasticsearch/_async/client/cluster.py,sha256
|
|
19
|
+
elasticsearch/_async/client/cluster.py,sha256=-k8cwRhNLz0vcZaHBIqeidP3FLlGGmEFbbt9IkYP3FI,61007
|
|
20
20
|
elasticsearch/_async/client/connector.py,sha256=MTyZDqaCQhQt-mBAGnUxTc4CiU6ZF_Xbu6EPigaUxfo,78345
|
|
21
21
|
elasticsearch/_async/client/dangling_indices.py,sha256=MDmdhhGVZ1oJ63ZmnoEtS_G9XEiniI_sSvhs9cs_IHU,8464
|
|
22
22
|
elasticsearch/_async/client/enrich.py,sha256=RFor5NEFYG3uVtXWcB2tLCugIDsie0FntHIpZRhq0Vo,11294
|
|
@@ -27,12 +27,12 @@ elasticsearch/_async/client/fleet.py,sha256=MuIYatf9sFYoq0haLMepJOXQZ8eUgJyfnFfX
|
|
|
27
27
|
elasticsearch/_async/client/graph.py,sha256=wDIFvXb-_bHcjeoRn5cV3b_NoPQMYdGijMWRfcXuhfQ,5149
|
|
28
28
|
elasticsearch/_async/client/ilm.py,sha256=cmmu7FxgVVHRkjUQf2BNG43_JUA00kYKCDrkE6COjc0,28101
|
|
29
29
|
elasticsearch/_async/client/indices.py,sha256=LLT9HTR54TY43NIsjdi4TqzRafyOLwEwTSiVoliT450,282043
|
|
30
|
-
elasticsearch/_async/client/inference.py,sha256=
|
|
30
|
+
elasticsearch/_async/client/inference.py,sha256=D1gR_egR0yB6f__jQ5lHJ2PQOCETUowfmIR0TembSoU,109005
|
|
31
31
|
elasticsearch/_async/client/ingest.py,sha256=uTIIVeJIfnZNBJHGNWKXC9jyYp9qAYu0X5o_-rCdzhw,32447
|
|
32
|
-
elasticsearch/_async/client/license.py,sha256=
|
|
32
|
+
elasticsearch/_async/client/license.py,sha256=iNypUCSEa3CzaU146vkAgL66J2BRSXlfFJQMq0-rAWc,16663
|
|
33
33
|
elasticsearch/_async/client/logstash.py,sha256=O0fiNFNWruFQD3Pz__ypgvsisvCzKy_uBEmz0vpzmDs,6534
|
|
34
34
|
elasticsearch/_async/client/migration.py,sha256=BmXqmuPJWxROKBRUSPoShZnnyrmYY0_KXXp6NllgVPY,6371
|
|
35
|
-
elasticsearch/_async/client/ml.py,sha256=
|
|
35
|
+
elasticsearch/_async/client/ml.py,sha256=0maigQ-x4cqKoeUaw3M0YFFxi01VHx9HtpBGLjiIcIE,268090
|
|
36
36
|
elasticsearch/_async/client/monitoring.py,sha256=QpkiCnV3e4pYtb5KOvo1SLuLy2E9_kJYOqH6-rjBSeM,3852
|
|
37
37
|
elasticsearch/_async/client/nodes.py,sha256=hgilu5QjZ2FytjIL6753eEHg3FTYkX4e--wGJ6OnhXs,24179
|
|
38
38
|
elasticsearch/_async/client/query_rules.py,sha256=Q31lCisB46xWGxMeTlIh_oscQoxlUHYASMVRhrLaJxg,19359
|
|
@@ -49,10 +49,10 @@ elasticsearch/_async/client/ssl.py,sha256=PMs8dO8XtFGPteRbSE54VGKi1ynG-6WVWaSukT
|
|
|
49
49
|
elasticsearch/_async/client/synonyms.py,sha256=GSuQ6gByRuJe54dmPBjrT7-_g_2P2LOWfu-15aF58x0,16238
|
|
50
50
|
elasticsearch/_async/client/tasks.py,sha256=uhb4Ru25yw_dHx74zNAQpk9sibhq1uM2GoAT_nYPiC4,13688
|
|
51
51
|
elasticsearch/_async/client/text_structure.py,sha256=Vrnq1O27XrisLNpLSzRxWLSapmWrUgbfou9H0uqQ3L8,40615
|
|
52
|
-
elasticsearch/_async/client/transform.py,sha256=
|
|
52
|
+
elasticsearch/_async/client/transform.py,sha256=B0C9rugZZ81OnPT556auZqtSluWUyzoUK42pxyMWc1g,44277
|
|
53
53
|
elasticsearch/_async/client/utils.py,sha256=h64qW1YcQZoJdEpDiYqkgnD3Q_0r2Y_ltUiNpNzpekI,1449
|
|
54
|
-
elasticsearch/_async/client/watcher.py,sha256=
|
|
55
|
-
elasticsearch/_async/client/xpack.py,sha256=
|
|
54
|
+
elasticsearch/_async/client/watcher.py,sha256=9YVUhhOaWgM6ZZrHNUW_XTuB74iAr9UqXw6hCN_5QhE,38063
|
|
55
|
+
elasticsearch/_async/client/xpack.py,sha256=ZQiVgLDyE6DM50cZIbUGavRcUPgaXq-DhcQgkCCPNMY,5137
|
|
56
56
|
elasticsearch/_sync/__init__.py,sha256=TZps9WjF-TaSNzBvW5wUCgXRcbHnvE_9xAynBHsMtSo,787
|
|
57
57
|
elasticsearch/_sync/client/__init__.py,sha256=vzTM3U3Y-dmZOT2fOUyBuVcbSgo1YawZ0oGUlFRUe74,361419
|
|
58
58
|
elasticsearch/_sync/client/_base.py,sha256=sz3kVP_-27pJQ7w6fpAjjYRdKQWY7JUQfQCDOIuxN4c,15424
|
|
@@ -60,7 +60,7 @@ elasticsearch/_sync/client/async_search.py,sha256=0-67-QdVwhgPR_ODeaGLn9YMcRab7S
|
|
|
60
60
|
elasticsearch/_sync/client/autoscaling.py,sha256=mZFBVDvSLjHld6DLQH4_l6LvMrnUwgTeEbgSBA1EKVU,11199
|
|
61
61
|
elasticsearch/_sync/client/cat.py,sha256=6kCNbJVPih_niyjsc4TMBZb7zfh2eS-SDMrlKnikqv0,132025
|
|
62
62
|
elasticsearch/_sync/client/ccr.py,sha256=NYS07gcWcyx4R0BhU98mdfp9DCJQM1h4lP6-Z7A9IJs,49717
|
|
63
|
-
elasticsearch/_sync/client/cluster.py,sha256=
|
|
63
|
+
elasticsearch/_sync/client/cluster.py,sha256=MV3txQ8gntuqq7ys-eo9qYPS-z2v_KcQWnbC2ZRZr-U,60815
|
|
64
64
|
elasticsearch/_sync/client/connector.py,sha256=yypNN6_GuYV9giVMwQU_nkp9vWGuyp6dOKfZEkBwzXQ,77985
|
|
65
65
|
elasticsearch/_sync/client/dangling_indices.py,sha256=cl8hfOV8reQ_i-8cFILKNtaTVyNTmecinKsdBMFgSBI,8428
|
|
66
66
|
elasticsearch/_sync/client/enrich.py,sha256=wU6AA2eDA8bHkhrLRl7EhGpuSWGKnCtL5WqMpc69TCk,11234
|
|
@@ -71,12 +71,12 @@ elasticsearch/_sync/client/fleet.py,sha256=oWFXdQeksI29DCheSLg69z6BmZ5eb2w1TnG5E
|
|
|
71
71
|
elasticsearch/_sync/client/graph.py,sha256=a-FJLv9Qktt-9TDCglmFkbWYSrCuE6dF_S1iD2KeTqY,5137
|
|
72
72
|
elasticsearch/_sync/client/ilm.py,sha256=D1wEjjWwqjaVVBgiv69YkPfW3HAxOOnJTtegsSJ628Y,27969
|
|
73
73
|
elasticsearch/_sync/client/indices.py,sha256=mwwwOz6Mludi2tE3WQqirq_k3QNO00msNuRUQ7J_ht4,281275
|
|
74
|
-
elasticsearch/_sync/client/inference.py,sha256=
|
|
74
|
+
elasticsearch/_sync/client/inference.py,sha256=j0cpuv7ut7Ge7OBXuZ00FPDBg5rGMSjbNFkMkuvF9f8,108705
|
|
75
75
|
elasticsearch/_sync/client/ingest.py,sha256=SUceINTZWb0hWBXO7tfVaIOb8PUYBKaNnhCGWErW_b0,32303
|
|
76
|
-
elasticsearch/_sync/client/license.py,sha256=
|
|
76
|
+
elasticsearch/_sync/client/license.py,sha256=lTKAksSsNfTIykWJEUoEbPULwYI-2CJ3tHvfFNpPLJ8,16579
|
|
77
77
|
elasticsearch/_sync/client/logstash.py,sha256=z2KJ6XFabPnNDNkTT1FsJX_idI5UklgSMEkvWiQD61s,6498
|
|
78
78
|
elasticsearch/_sync/client/migration.py,sha256=AatMrjs9PlqCZAt36xAo8aHMa0P5sMoNt9Jjk_yuVY8,6335
|
|
79
|
-
elasticsearch/_sync/client/ml.py,sha256=
|
|
79
|
+
elasticsearch/_sync/client/ml.py,sha256=22H41bp7lqwXgMSQCvWqOPPNY4RHb9c1o_525occDxg,267214
|
|
80
80
|
elasticsearch/_sync/client/monitoring.py,sha256=8mbTAvXUELL9uRaWcwatxrYtuqI7X-HO5H4k6zgMmcA,3840
|
|
81
81
|
elasticsearch/_sync/client/nodes.py,sha256=DeyRHotWLs4RDt29ih5PDzkfUTttZPg2OBiEp7sUiy4,24095
|
|
82
82
|
elasticsearch/_sync/client/query_rules.py,sha256=lyP4Q-HtrQ8RLVK6Yx4CyrcUSPJkPKbnm5-7ITvcjfk,19263
|
|
@@ -93,10 +93,10 @@ elasticsearch/_sync/client/ssl.py,sha256=C54ELSCNRpBe9RsPoBFp9ZxTX9J-1Lsd4zUBXyc
|
|
|
93
93
|
elasticsearch/_sync/client/synonyms.py,sha256=N8TIs2WVzZhZH6teos7PN0gOMpxEdyDfBQWX0uR8fbE,16154
|
|
94
94
|
elasticsearch/_sync/client/tasks.py,sha256=a6S_6R1btpcKgdVG9L1KoPAuiqo2FJTaXXBiai91iM4,13652
|
|
95
95
|
elasticsearch/_sync/client/text_structure.py,sha256=tNfAgHJQuWv_hD1tx-DM8sgavlMYwAb3bwI9YslaHjI,40567
|
|
96
|
-
elasticsearch/_sync/client/transform.py,sha256=
|
|
96
|
+
elasticsearch/_sync/client/transform.py,sha256=ffDnIXAAC41Ypl2wJJZyGVmuAnUqgITsSL8o7ieqoLc,44145
|
|
97
97
|
elasticsearch/_sync/client/utils.py,sha256=NcO9I0O0vnRrFXdpYF5BlK8QpaPLHi0bhCVagrXAf_U,18644
|
|
98
|
-
elasticsearch/_sync/client/watcher.py,sha256=
|
|
99
|
-
elasticsearch/_sync/client/xpack.py,sha256=
|
|
98
|
+
elasticsearch/_sync/client/watcher.py,sha256=PECJ__iIKgzkWYbMkXkBtbt5FVVs1g18LlsMmufF_s0,37907
|
|
99
|
+
elasticsearch/_sync/client/xpack.py,sha256=3O-nzKXJhKCqHZGqYh7jK-h0h-z8_fyM3-h9aQVwYvc,5113
|
|
100
100
|
elasticsearch/dsl/__init__.py,sha256=IKzYnYwF2Xb4_xTRN_upDOHpYJgIP3iWXXmd7O_2lDc,4296
|
|
101
101
|
elasticsearch/dsl/aggs.py,sha256=YEKG9mF67Z9njq39VkpHANmTSg-AP9r4f4unFf-UuOU,131401
|
|
102
102
|
elasticsearch/dsl/analysis.py,sha256=8-P6Cgh7CIgmbL6ZnhSl27NKVSjvqTcyn_VKnwZ6LDM,10308
|
|
@@ -107,17 +107,17 @@ elasticsearch/dsl/document_base.py,sha256=r045luNNySLO-Jrv6wec43yKlQM_pEXcjvde4_
|
|
|
107
107
|
elasticsearch/dsl/exceptions.py,sha256=bmQh4tjfFzSzlYr-Wtn5fdq6dTa3zcgtUEz3jlsYI38,1043
|
|
108
108
|
elasticsearch/dsl/faceted_search.py,sha256=0NY9_yMlZ1FJWhmHtjx2I5eLlS8V0jBNAJdkp__ljg8,1094
|
|
109
109
|
elasticsearch/dsl/faceted_search_base.py,sha256=7fpQPSlGpPoKggzm_S1l938Zfe-WiTOy6EADeLjykYk,15401
|
|
110
|
-
elasticsearch/dsl/field.py,sha256=
|
|
110
|
+
elasticsearch/dsl/field.py,sha256=uAgaJKpgaQMKHB7grSCYoFHE4GwpG4YamqQcBFEKUts,157423
|
|
111
111
|
elasticsearch/dsl/function.py,sha256=OavCMAUpDf1snQfVaaAL7wa_2HEQzhWVMo3Xuu-dV94,5127
|
|
112
112
|
elasticsearch/dsl/index.py,sha256=r7qdWevIWAgXTEz2iIKdwhyRF1B3nFchVuNdguSXtUc,991
|
|
113
113
|
elasticsearch/dsl/index_base.py,sha256=7YysvCWcAf0JEAFaZGsZPJML-CUG3QkqSd8D89PBOlE,6355
|
|
114
114
|
elasticsearch/dsl/mapping.py,sha256=d5GU7ZZ89-aLO_PjXzHzmavUUZVBIvaC-hok06V-Ff0,892
|
|
115
115
|
elasticsearch/dsl/mapping_base.py,sha256=uDhpyxxyORxcFkEju5DVq8nxrU57a_1pS_1A0C-iuh4,7480
|
|
116
|
-
elasticsearch/dsl/query.py,sha256=
|
|
116
|
+
elasticsearch/dsl/query.py,sha256=swPlnds5sVuVqfxbedimy6mqhVaA6hUfg1wIJ91xogY,103750
|
|
117
117
|
elasticsearch/dsl/search.py,sha256=KzDfCPWWgSwMB79PQxyAHUhsL4lubfnCW9HpR0juDxs,991
|
|
118
118
|
elasticsearch/dsl/search_base.py,sha256=BWcLYOpiqUQvlWNeRH-sf342IvDlqPF4TwCOX2wMcK8,34683
|
|
119
119
|
elasticsearch/dsl/serializer.py,sha256=hpo3aa94WhKY5iKyNyrE9TCe1A7JjF6tIiuyEBFhveE,1189
|
|
120
|
-
elasticsearch/dsl/types.py,sha256=
|
|
120
|
+
elasticsearch/dsl/types.py,sha256=Xur-vb5nfo6Vza-LrtnG7Vg4QCG59_K_tKgO96z0vRA,203912
|
|
121
121
|
elasticsearch/dsl/update_by_query.py,sha256=adLSefH6YeGbdcmLMTC4IXqzqVFY63lSeEXsI45wj4Y,920
|
|
122
122
|
elasticsearch/dsl/update_by_query_base.py,sha256=3jZROLNL3fLcaqeDLk82waBSNTdv7w6L38hxjQV-ybU,4939
|
|
123
123
|
elasticsearch/dsl/utils.py,sha256=WRupAUt432wZuyS49IpF2f6m0Ux79P9RthkG2FM4pFw,22977
|
|
@@ -154,8 +154,10 @@ elasticsearch/helpers/vectorstore/_sync/_utils.py,sha256=5pdvNS5XC3wqShjliW9Njl9
|
|
|
154
154
|
elasticsearch/helpers/vectorstore/_sync/embedding_service.py,sha256=sAw_WKUcmyqOOJRqnNesZCzn7ZyA91v4NvvQszHIWJ8,3582
|
|
155
155
|
elasticsearch/helpers/vectorstore/_sync/strategies.py,sha256=LfB2_uQMnPkWpe67hnPxeS1h5rLodnYOgk64hp9bs-s,16108
|
|
156
156
|
elasticsearch/helpers/vectorstore/_sync/vectorstore.py,sha256=HZiEyrXL2i-3P5f9sYUPUYTcIDdEBTnATwQqtdfikZs,16523
|
|
157
|
-
elasticsearch-8.18.
|
|
158
|
-
elasticsearch-8.18.
|
|
159
|
-
elasticsearch-8.18.
|
|
160
|
-
elasticsearch-8.18.
|
|
161
|
-
elasticsearch-8.18.
|
|
157
|
+
elasticsearch-8.18.1.dist-info/METADATA,sha256=tcoffaGchUekut_v2Wy4rbU-qg1hNQ_ZG-fEzIBNTog,9241
|
|
158
|
+
elasticsearch-8.18.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
159
|
+
elasticsearch-8.18.1.dist-info/licenses/LICENSE,sha256=XfKg2H1sVi8OoRxoisUlMqoo10TKvHmU_wU39ks7MyA,10143
|
|
160
|
+
elasticsearch-8.18.1.dist-info/licenses/LICENSE.txt,sha256=4JFueU7Hi11OhqseKJyD5W5ufZ6ZkGDsMWH7CLOHg6Y,10142
|
|
161
|
+
elasticsearch-8.18.1.dist-info/licenses/NOTICE,sha256=t4IjKAJ_G-0hYaL4AH16CVS_xDel8UXrJVK6x7JDaGA,61
|
|
162
|
+
elasticsearch-8.18.1.dist-info/licenses/NOTICE.txt,sha256=2dshATdruN4hzPj9pypOzZ8uLqIPnQDK5LynrVu-d4Y,28246
|
|
163
|
+
elasticsearch-8.18.1.dist-info/RECORD,,
|