elasticsearch9 9.0.0__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.
- elasticsearch9/__init__.py +98 -0
- elasticsearch9/_async/__init__.py +16 -0
- elasticsearch9/_async/client/__init__.py +6531 -0
- elasticsearch9/_async/client/_base.py +430 -0
- elasticsearch9/_async/client/async_search.py +637 -0
- elasticsearch9/_async/client/autoscaling.py +252 -0
- elasticsearch9/_async/client/cat.py +2995 -0
- elasticsearch9/_async/client/ccr.py +1043 -0
- elasticsearch9/_async/client/cluster.py +1223 -0
- elasticsearch9/_async/client/connector.py +1978 -0
- elasticsearch9/_async/client/dangling_indices.py +192 -0
- elasticsearch9/_async/client/enrich.py +291 -0
- elasticsearch9/_async/client/eql.py +359 -0
- elasticsearch9/_async/client/esql.py +490 -0
- elasticsearch9/_async/client/features.py +130 -0
- elasticsearch9/_async/client/fleet.py +658 -0
- elasticsearch9/_async/client/graph.py +113 -0
- elasticsearch9/_async/client/ilm.py +668 -0
- elasticsearch9/_async/client/indices.py +5582 -0
- elasticsearch9/_async/client/inference.py +2247 -0
- elasticsearch9/_async/client/ingest.py +766 -0
- elasticsearch9/_async/client/license.py +400 -0
- elasticsearch9/_async/client/logstash.py +176 -0
- elasticsearch9/_async/client/migration.py +160 -0
- elasticsearch9/_async/client/ml.py +5835 -0
- elasticsearch9/_async/client/monitoring.py +100 -0
- elasticsearch9/_async/client/nodes.py +543 -0
- elasticsearch9/_async/client/query_rules.py +485 -0
- elasticsearch9/_async/client/rollup.py +616 -0
- elasticsearch9/_async/client/search_application.py +574 -0
- elasticsearch9/_async/client/searchable_snapshots.py +313 -0
- elasticsearch9/_async/client/security.py +4688 -0
- elasticsearch9/_async/client/shutdown.py +268 -0
- elasticsearch9/_async/client/simulate.py +145 -0
- elasticsearch9/_async/client/slm.py +559 -0
- elasticsearch9/_async/client/snapshot.py +1338 -0
- elasticsearch9/_async/client/sql.py +469 -0
- elasticsearch9/_async/client/ssl.py +76 -0
- elasticsearch9/_async/client/synonyms.py +413 -0
- elasticsearch9/_async/client/tasks.py +295 -0
- elasticsearch9/_async/client/text_structure.py +664 -0
- elasticsearch9/_async/client/transform.py +922 -0
- elasticsearch9/_async/client/utils.py +48 -0
- elasticsearch9/_async/client/watcher.py +894 -0
- elasticsearch9/_async/client/xpack.py +134 -0
- elasticsearch9/_async/helpers.py +596 -0
- elasticsearch9/_otel.py +110 -0
- elasticsearch9/_sync/__init__.py +16 -0
- elasticsearch9/_sync/client/__init__.py +6529 -0
- elasticsearch9/_sync/client/_base.py +430 -0
- elasticsearch9/_sync/client/async_search.py +637 -0
- elasticsearch9/_sync/client/autoscaling.py +252 -0
- elasticsearch9/_sync/client/cat.py +2995 -0
- elasticsearch9/_sync/client/ccr.py +1043 -0
- elasticsearch9/_sync/client/cluster.py +1223 -0
- elasticsearch9/_sync/client/connector.py +1978 -0
- elasticsearch9/_sync/client/dangling_indices.py +192 -0
- elasticsearch9/_sync/client/enrich.py +291 -0
- elasticsearch9/_sync/client/eql.py +359 -0
- elasticsearch9/_sync/client/esql.py +490 -0
- elasticsearch9/_sync/client/features.py +130 -0
- elasticsearch9/_sync/client/fleet.py +658 -0
- elasticsearch9/_sync/client/graph.py +113 -0
- elasticsearch9/_sync/client/ilm.py +668 -0
- elasticsearch9/_sync/client/indices.py +5582 -0
- elasticsearch9/_sync/client/inference.py +2247 -0
- elasticsearch9/_sync/client/ingest.py +766 -0
- elasticsearch9/_sync/client/license.py +400 -0
- elasticsearch9/_sync/client/logstash.py +176 -0
- elasticsearch9/_sync/client/migration.py +160 -0
- elasticsearch9/_sync/client/ml.py +5835 -0
- elasticsearch9/_sync/client/monitoring.py +100 -0
- elasticsearch9/_sync/client/nodes.py +543 -0
- elasticsearch9/_sync/client/query_rules.py +485 -0
- elasticsearch9/_sync/client/rollup.py +616 -0
- elasticsearch9/_sync/client/search_application.py +574 -0
- elasticsearch9/_sync/client/searchable_snapshots.py +313 -0
- elasticsearch9/_sync/client/security.py +4688 -0
- elasticsearch9/_sync/client/shutdown.py +268 -0
- elasticsearch9/_sync/client/simulate.py +145 -0
- elasticsearch9/_sync/client/slm.py +559 -0
- elasticsearch9/_sync/client/snapshot.py +1338 -0
- elasticsearch9/_sync/client/sql.py +469 -0
- elasticsearch9/_sync/client/ssl.py +76 -0
- elasticsearch9/_sync/client/synonyms.py +413 -0
- elasticsearch9/_sync/client/tasks.py +295 -0
- elasticsearch9/_sync/client/text_structure.py +664 -0
- elasticsearch9/_sync/client/transform.py +922 -0
- elasticsearch9/_sync/client/utils.py +475 -0
- elasticsearch9/_sync/client/watcher.py +894 -0
- elasticsearch9/_sync/client/xpack.py +134 -0
- elasticsearch9/_utils.py +34 -0
- elasticsearch9/_version.py +18 -0
- elasticsearch9/client.py +126 -0
- elasticsearch9/compat.py +79 -0
- elasticsearch9/dsl/__init__.py +203 -0
- elasticsearch9/dsl/_async/__init__.py +16 -0
- elasticsearch9/dsl/_async/document.py +522 -0
- elasticsearch9/dsl/_async/faceted_search.py +50 -0
- elasticsearch9/dsl/_async/index.py +639 -0
- elasticsearch9/dsl/_async/mapping.py +49 -0
- elasticsearch9/dsl/_async/search.py +237 -0
- elasticsearch9/dsl/_async/update_by_query.py +47 -0
- elasticsearch9/dsl/_sync/__init__.py +16 -0
- elasticsearch9/dsl/_sync/document.py +514 -0
- elasticsearch9/dsl/_sync/faceted_search.py +50 -0
- elasticsearch9/dsl/_sync/index.py +597 -0
- elasticsearch9/dsl/_sync/mapping.py +49 -0
- elasticsearch9/dsl/_sync/search.py +230 -0
- elasticsearch9/dsl/_sync/update_by_query.py +45 -0
- elasticsearch9/dsl/aggs.py +3734 -0
- elasticsearch9/dsl/analysis.py +341 -0
- elasticsearch9/dsl/async_connections.py +37 -0
- elasticsearch9/dsl/connections.py +142 -0
- elasticsearch9/dsl/document.py +20 -0
- elasticsearch9/dsl/document_base.py +444 -0
- elasticsearch9/dsl/exceptions.py +32 -0
- elasticsearch9/dsl/faceted_search.py +28 -0
- elasticsearch9/dsl/faceted_search_base.py +489 -0
- elasticsearch9/dsl/field.py +4392 -0
- elasticsearch9/dsl/function.py +180 -0
- elasticsearch9/dsl/index.py +23 -0
- elasticsearch9/dsl/index_base.py +178 -0
- elasticsearch9/dsl/mapping.py +19 -0
- elasticsearch9/dsl/mapping_base.py +219 -0
- elasticsearch9/dsl/query.py +2822 -0
- elasticsearch9/dsl/response/__init__.py +388 -0
- elasticsearch9/dsl/response/aggs.py +100 -0
- elasticsearch9/dsl/response/hit.py +53 -0
- elasticsearch9/dsl/search.py +20 -0
- elasticsearch9/dsl/search_base.py +1053 -0
- elasticsearch9/dsl/serializer.py +34 -0
- elasticsearch9/dsl/types.py +6453 -0
- elasticsearch9/dsl/update_by_query.py +19 -0
- elasticsearch9/dsl/update_by_query_base.py +149 -0
- elasticsearch9/dsl/utils.py +687 -0
- elasticsearch9/dsl/wrappers.py +144 -0
- elasticsearch9/exceptions.py +133 -0
- elasticsearch9/helpers/__init__.py +41 -0
- elasticsearch9/helpers/actions.py +875 -0
- elasticsearch9/helpers/errors.py +40 -0
- elasticsearch9/helpers/vectorstore/__init__.py +62 -0
- elasticsearch9/helpers/vectorstore/_async/__init__.py +16 -0
- elasticsearch9/helpers/vectorstore/_async/_utils.py +39 -0
- elasticsearch9/helpers/vectorstore/_async/embedding_service.py +89 -0
- elasticsearch9/helpers/vectorstore/_async/strategies.py +487 -0
- elasticsearch9/helpers/vectorstore/_async/vectorstore.py +421 -0
- elasticsearch9/helpers/vectorstore/_sync/__init__.py +16 -0
- elasticsearch9/helpers/vectorstore/_sync/_utils.py +39 -0
- elasticsearch9/helpers/vectorstore/_sync/embedding_service.py +89 -0
- elasticsearch9/helpers/vectorstore/_sync/strategies.py +487 -0
- elasticsearch9/helpers/vectorstore/_sync/vectorstore.py +421 -0
- elasticsearch9/helpers/vectorstore/_utils.py +116 -0
- elasticsearch9/py.typed +0 -0
- elasticsearch9/serializer.py +250 -0
- elasticsearch9-9.0.0.dist-info/METADATA +175 -0
- elasticsearch9-9.0.0.dist-info/RECORD +160 -0
- elasticsearch9-9.0.0.dist-info/WHEEL +4 -0
- elasticsearch9-9.0.0.dist-info/licenses/LICENSE +176 -0
- elasticsearch9-9.0.0.dist-info/licenses/NOTICE +2 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
|
3
|
+
# this work for additional information regarding copyright
|
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
+
# not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
17
|
+
|
|
18
|
+
from typing import Any, Dict, List, Tuple, Type
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class BulkIndexError(Exception):
|
|
22
|
+
def __init__(self, message: str, errors: List[Dict[str, Any]]):
|
|
23
|
+
super().__init__(message)
|
|
24
|
+
self.errors: List[Dict[str, Any]] = errors
|
|
25
|
+
|
|
26
|
+
def __reduce__(
|
|
27
|
+
self,
|
|
28
|
+
) -> Tuple[Type["BulkIndexError"], Tuple[str, List[Dict[str, Any]]]]:
|
|
29
|
+
return (self.__class__, (self.args[0], self.errors))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
class ScanError(Exception):
|
|
33
|
+
scroll_id: str
|
|
34
|
+
|
|
35
|
+
def __init__(self, scroll_id: str, *args: Any) -> None:
|
|
36
|
+
super().__init__(*args)
|
|
37
|
+
self.scroll_id = scroll_id
|
|
38
|
+
|
|
39
|
+
def __reduce__(self) -> Tuple[Type["ScanError"], Tuple[str, str]]:
|
|
40
|
+
return (self.__class__, (self.scroll_id,) + self.args)
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
|
3
|
+
# this work for additional information regarding copyright
|
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
+
# not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
17
|
+
|
|
18
|
+
from elasticsearch.helpers.vectorstore._async.embedding_service import (
|
|
19
|
+
AsyncElasticsearchEmbeddings,
|
|
20
|
+
AsyncEmbeddingService,
|
|
21
|
+
)
|
|
22
|
+
from elasticsearch.helpers.vectorstore._async.strategies import (
|
|
23
|
+
AsyncBM25Strategy,
|
|
24
|
+
AsyncDenseVectorScriptScoreStrategy,
|
|
25
|
+
AsyncDenseVectorStrategy,
|
|
26
|
+
AsyncRetrievalStrategy,
|
|
27
|
+
AsyncSparseVectorStrategy,
|
|
28
|
+
)
|
|
29
|
+
from elasticsearch.helpers.vectorstore._async.vectorstore import AsyncVectorStore
|
|
30
|
+
from elasticsearch.helpers.vectorstore._sync.embedding_service import (
|
|
31
|
+
ElasticsearchEmbeddings,
|
|
32
|
+
EmbeddingService,
|
|
33
|
+
)
|
|
34
|
+
from elasticsearch.helpers.vectorstore._sync.strategies import (
|
|
35
|
+
BM25Strategy,
|
|
36
|
+
DenseVectorScriptScoreStrategy,
|
|
37
|
+
DenseVectorStrategy,
|
|
38
|
+
RetrievalStrategy,
|
|
39
|
+
SparseVectorStrategy,
|
|
40
|
+
)
|
|
41
|
+
from elasticsearch.helpers.vectorstore._sync.vectorstore import VectorStore
|
|
42
|
+
from elasticsearch.helpers.vectorstore._utils import DistanceMetric
|
|
43
|
+
|
|
44
|
+
__all__ = [
|
|
45
|
+
"AsyncBM25Strategy",
|
|
46
|
+
"AsyncDenseVectorScriptScoreStrategy",
|
|
47
|
+
"AsyncDenseVectorStrategy",
|
|
48
|
+
"AsyncElasticsearchEmbeddings",
|
|
49
|
+
"AsyncEmbeddingService",
|
|
50
|
+
"AsyncRetrievalStrategy",
|
|
51
|
+
"AsyncSparseVectorStrategy",
|
|
52
|
+
"AsyncVectorStore",
|
|
53
|
+
"BM25Strategy",
|
|
54
|
+
"DenseVectorScriptScoreStrategy",
|
|
55
|
+
"DenseVectorStrategy",
|
|
56
|
+
"DistanceMetric",
|
|
57
|
+
"ElasticsearchEmbeddings",
|
|
58
|
+
"EmbeddingService",
|
|
59
|
+
"RetrievalStrategy",
|
|
60
|
+
"SparseVectorStrategy",
|
|
61
|
+
"VectorStore",
|
|
62
|
+
]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
|
3
|
+
# this work for additional information regarding copyright
|
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
+
# not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
|
3
|
+
# this work for additional information regarding copyright
|
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
+
# not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
17
|
+
|
|
18
|
+
from elasticsearch import AsyncElasticsearch, BadRequestError, NotFoundError
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
async def model_must_be_deployed(client: AsyncElasticsearch, model_id: str) -> None:
|
|
22
|
+
"""
|
|
23
|
+
:raises [NotFoundError]: if the model is neither downloaded nor deployed.
|
|
24
|
+
:raises [ConflictError]: if the model is downloaded but not yet deployed.
|
|
25
|
+
"""
|
|
26
|
+
doc = {"text_field": f"test if the model '{model_id}' is deployed"}
|
|
27
|
+
try:
|
|
28
|
+
await client.ml.infer_trained_model(model_id=model_id, docs=[doc])
|
|
29
|
+
except BadRequestError:
|
|
30
|
+
# The model is deployed but expects a different input field name.
|
|
31
|
+
pass
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
async def model_is_deployed(client: AsyncElasticsearch, model_id: str) -> bool:
|
|
35
|
+
try:
|
|
36
|
+
await model_must_be_deployed(client, model_id)
|
|
37
|
+
return True
|
|
38
|
+
except NotFoundError:
|
|
39
|
+
return False
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
|
3
|
+
# this work for additional information regarding copyright
|
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
|
6
|
+
# not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
17
|
+
|
|
18
|
+
from abc import ABC, abstractmethod
|
|
19
|
+
from typing import List
|
|
20
|
+
|
|
21
|
+
from elasticsearch import AsyncElasticsearch
|
|
22
|
+
from elasticsearch._version import __versionstr__ as lib_version
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class AsyncEmbeddingService(ABC):
|
|
26
|
+
@abstractmethod
|
|
27
|
+
async def embed_documents(self, texts: List[str]) -> List[List[float]]:
|
|
28
|
+
"""Generate embeddings for a list of documents.
|
|
29
|
+
|
|
30
|
+
:param texts: A list of document strings to generate embeddings for.
|
|
31
|
+
|
|
32
|
+
:return: A list of embeddings, one for each document in the input.
|
|
33
|
+
"""
|
|
34
|
+
|
|
35
|
+
@abstractmethod
|
|
36
|
+
async def embed_query(self, query: str) -> List[float]:
|
|
37
|
+
"""Generate an embedding for a single query text.
|
|
38
|
+
|
|
39
|
+
:param text: The query text to generate an embedding for.
|
|
40
|
+
|
|
41
|
+
:return: The embedding for the input query text.
|
|
42
|
+
"""
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
class AsyncElasticsearchEmbeddings(AsyncEmbeddingService):
|
|
46
|
+
"""Elasticsearch as a service for embedding model inference.
|
|
47
|
+
|
|
48
|
+
You need to have an embedding model downloaded and deployed in Elasticsearch:
|
|
49
|
+
- https://www.elastic.co/guide/en/elasticsearch/reference/current/infer-trained-model.html
|
|
50
|
+
- https://www.elastic.co/guide/en/machine-learning/current/ml-nlp-deploy-models.html
|
|
51
|
+
""" # noqa: E501
|
|
52
|
+
|
|
53
|
+
def __init__(
|
|
54
|
+
self,
|
|
55
|
+
*,
|
|
56
|
+
client: AsyncElasticsearch,
|
|
57
|
+
model_id: str,
|
|
58
|
+
input_field: str = "text_field",
|
|
59
|
+
user_agent: str = f"elasticsearch-py-es/{lib_version}",
|
|
60
|
+
):
|
|
61
|
+
"""
|
|
62
|
+
:param agent_header: user agent header specific to the 3rd party integration.
|
|
63
|
+
Used for usage tracking in Elastic Cloud.
|
|
64
|
+
:param model_id: The model_id of the model deployed in the Elasticsearch cluster.
|
|
65
|
+
:param input_field: The name of the key for the input text field in the
|
|
66
|
+
document. Defaults to 'text_field'.
|
|
67
|
+
:param client: Elasticsearch client connection. Alternatively specify the
|
|
68
|
+
Elasticsearch connection with the other es_* parameters.
|
|
69
|
+
"""
|
|
70
|
+
# Add integration-specific usage header for tracking usage in Elastic Cloud.
|
|
71
|
+
# client.options preserves existing (non-user-agent) headers.
|
|
72
|
+
client = client.options(headers={"User-Agent": user_agent})
|
|
73
|
+
|
|
74
|
+
self.client = client
|
|
75
|
+
self.model_id = model_id
|
|
76
|
+
self.input_field = input_field
|
|
77
|
+
|
|
78
|
+
async def embed_documents(self, texts: List[str]) -> List[List[float]]:
|
|
79
|
+
return await self._embedding_func(texts)
|
|
80
|
+
|
|
81
|
+
async def embed_query(self, text: str) -> List[float]:
|
|
82
|
+
result = await self._embedding_func([text])
|
|
83
|
+
return result[0]
|
|
84
|
+
|
|
85
|
+
async def _embedding_func(self, texts: List[str]) -> List[List[float]]:
|
|
86
|
+
response = await self.client.ml.infer_trained_model(
|
|
87
|
+
model_id=self.model_id, docs=[{self.input_field: text} for text in texts]
|
|
88
|
+
)
|
|
89
|
+
return [doc["predicted_value"] for doc in response["inference_results"]]
|