nucliadb 6.4.0.post4287__py3-none-any.whl → 6.4.0.post4302__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.
- nucliadb/search/api/v1/catalog.py +2 -1
- nucliadb/search/api/v1/graph.py +4 -4
- nucliadb/search/api/v1/resource/search.py +2 -5
- nucliadb/search/api/v1/search.py +2 -3
- nucliadb/search/api/v1/suggest.py +2 -5
- nucliadb/search/requesters/utils.py +17 -18
- nucliadb/search/search/chat/query.py +2 -3
- nucliadb/search/search/find.py +2 -5
- nucliadb/search/search/graph_strategy.py +2 -2
- nucliadb/search/search/query_parser/parsers/unit_retrieval.py +4 -0
- {nucliadb-6.4.0.post4287.dist-info → nucliadb-6.4.0.post4302.dist-info}/METADATA +6 -6
- {nucliadb-6.4.0.post4287.dist-info → nucliadb-6.4.0.post4302.dist-info}/RECORD +15 -15
- {nucliadb-6.4.0.post4287.dist-info → nucliadb-6.4.0.post4302.dist-info}/WHEEL +1 -1
- {nucliadb-6.4.0.post4287.dist-info → nucliadb-6.4.0.post4302.dist-info}/entry_points.txt +0 -0
- {nucliadb-6.4.0.post4287.dist-info → nucliadb-6.4.0.post4302.dist-info}/top_level.txt +0 -0
@@ -184,7 +184,8 @@ async def catalog(
|
|
184
184
|
return HTTPClientError(status_code=exc.status_code, detail=exc.detail)
|
185
185
|
finally:
|
186
186
|
duration = time() - start_time
|
187
|
-
|
187
|
+
max_time = 5 if item.faceted else 2
|
188
|
+
if duration > max_time: # pragma: no cover
|
188
189
|
logger.warning(
|
189
190
|
"Slow catalog request",
|
190
191
|
extra={
|
nucliadb/search/api/v1/graph.py
CHANGED
@@ -21,7 +21,7 @@ from fastapi import Header, Request, Response
|
|
21
21
|
from fastapi_versioning import version
|
22
22
|
|
23
23
|
from nucliadb.search.api.v1.router import KB_PREFIX, api
|
24
|
-
from nucliadb.search.requesters.utils import Method,
|
24
|
+
from nucliadb.search.requesters.utils import Method, nidx_query
|
25
25
|
from nucliadb.search.search.graph_merge import (
|
26
26
|
build_graph_nodes_response,
|
27
27
|
build_graph_relations_response,
|
@@ -71,7 +71,7 @@ async def graph_search_knowledgebox(
|
|
71
71
|
) -> GraphSearchResponse:
|
72
72
|
pb_query = await parse_graph_search(kbid, item)
|
73
73
|
|
74
|
-
results, _
|
74
|
+
results, _ = await nidx_query(kbid, Method.GRAPH, pb_query)
|
75
75
|
|
76
76
|
return build_graph_response(results)
|
77
77
|
|
@@ -98,7 +98,7 @@ async def graph_nodes_search_knowledgebox(
|
|
98
98
|
) -> GraphNodesSearchResponse:
|
99
99
|
pb_query = await parse_graph_node_search(kbid, item)
|
100
100
|
|
101
|
-
results, _
|
101
|
+
results, _ = await nidx_query(kbid, Method.GRAPH, pb_query)
|
102
102
|
|
103
103
|
return build_graph_nodes_response(results)
|
104
104
|
|
@@ -125,6 +125,6 @@ async def graph_relations_search_knowledgebox(
|
|
125
125
|
) -> GraphRelationsSearchResponse:
|
126
126
|
pb_query = await parse_graph_relation_search(kbid, item)
|
127
127
|
|
128
|
-
results, _
|
128
|
+
results, _ = await nidx_query(kbid, Method.GRAPH, pb_query)
|
129
129
|
|
130
130
|
return build_graph_relations_response(results)
|
@@ -27,7 +27,7 @@ from pydantic import ValidationError
|
|
27
27
|
from nucliadb.models.responses import HTTPClientError
|
28
28
|
from nucliadb.search.api.v1.router import KB_PREFIX, RESOURCE_PREFIX, api
|
29
29
|
from nucliadb.search.api.v1.utils import fastapi_query
|
30
|
-
from nucliadb.search.requesters.utils import Method,
|
30
|
+
from nucliadb.search.requesters.utils import Method, nidx_query
|
31
31
|
from nucliadb.search.search import cache
|
32
32
|
from nucliadb.search.search.exceptions import InvalidQueryError
|
33
33
|
from nucliadb.search.search.merge import merge_paragraphs_results
|
@@ -110,7 +110,7 @@ async def resource_search(
|
|
110
110
|
detail = json.loads(exc.json())
|
111
111
|
return HTTPClientError(status_code=422, detail=detail)
|
112
112
|
|
113
|
-
results,
|
113
|
+
results, queried_shards = await nidx_query(kbid, Method.SEARCH, pb_query)
|
114
114
|
|
115
115
|
# We need to merge
|
116
116
|
search_results = await merge_paragraphs_results(
|
@@ -120,8 +120,5 @@ async def resource_search(
|
|
120
120
|
highlight_split=highlight,
|
121
121
|
min_score=0.0,
|
122
122
|
)
|
123
|
-
|
124
|
-
response.status_code = 206 if incomplete_results else 200
|
125
|
-
|
126
123
|
search_results.shards = queried_shards
|
127
124
|
return search_results
|
nucliadb/search/api/v1/search.py
CHANGED
@@ -32,7 +32,7 @@ from nucliadb.models.responses import HTTPClientError
|
|
32
32
|
from nucliadb.search import predict
|
33
33
|
from nucliadb.search.api.v1.router import KB_PREFIX, api
|
34
34
|
from nucliadb.search.api.v1.utils import fastapi_query
|
35
|
-
from nucliadb.search.requesters.utils import Method,
|
35
|
+
from nucliadb.search.requesters.utils import Method, nidx_query
|
36
36
|
from nucliadb.search.search import cache
|
37
37
|
from nucliadb.search.search.exceptions import InvalidQueryError
|
38
38
|
from nucliadb.search.search.merge import merge_results
|
@@ -265,8 +265,7 @@ async def search(
|
|
265
265
|
pb_query, incomplete_results, autofilters, _ = await legacy_convert_retrieval_to_proto(parsed)
|
266
266
|
|
267
267
|
# We need to query all nodes
|
268
|
-
results,
|
269
|
-
incomplete_results = incomplete_results or query_incomplete_results
|
268
|
+
results, queried_shards = await nidx_query(kbid, Method.SEARCH, pb_query)
|
270
269
|
|
271
270
|
# We need to merge
|
272
271
|
search_results = await merge_results(
|
@@ -28,7 +28,7 @@ from pydantic import ValidationError
|
|
28
28
|
from nucliadb.models.responses import HTTPClientError
|
29
29
|
from nucliadb.search.api.v1.router import KB_PREFIX, api
|
30
30
|
from nucliadb.search.api.v1.utils import fastapi_query
|
31
|
-
from nucliadb.search.requesters.utils import Method,
|
31
|
+
from nucliadb.search.requesters.utils import Method, nidx_query
|
32
32
|
from nucliadb.search.search import cache
|
33
33
|
from nucliadb.search.search.exceptions import InvalidQueryError
|
34
34
|
from nucliadb.search.search.merge import merge_suggest_results
|
@@ -160,7 +160,7 @@ async def suggest(
|
|
160
160
|
range_modification_end,
|
161
161
|
hidden,
|
162
162
|
)
|
163
|
-
results,
|
163
|
+
results, queried_shards = await nidx_query(kbid, Method.SUGGEST, pb_query)
|
164
164
|
|
165
165
|
# We need to merge
|
166
166
|
search_results = await merge_suggest_results(
|
@@ -168,9 +168,6 @@ async def suggest(
|
|
168
168
|
kbid=kbid,
|
169
169
|
highlight=highlight,
|
170
170
|
)
|
171
|
-
|
172
|
-
response.status_code = 206 if incomplete_results else 200
|
173
|
-
|
174
171
|
if debug and queried_shards:
|
175
172
|
search_results.shards = queried_shards
|
176
173
|
|
@@ -71,38 +71,38 @@ T = TypeVar(
|
|
71
71
|
|
72
72
|
|
73
73
|
@overload
|
74
|
-
async def
|
74
|
+
async def nidx_query(
|
75
75
|
kbid: str,
|
76
76
|
method: Method,
|
77
77
|
pb_query: SuggestRequest,
|
78
78
|
timeout: Optional[float] = None,
|
79
|
-
) -> tuple[list[SuggestResponse],
|
79
|
+
) -> tuple[list[SuggestResponse], list[str]]: ...
|
80
80
|
|
81
81
|
|
82
82
|
@overload
|
83
|
-
async def
|
83
|
+
async def nidx_query(
|
84
84
|
kbid: str,
|
85
85
|
method: Method,
|
86
86
|
pb_query: SearchRequest,
|
87
87
|
timeout: Optional[float] = None,
|
88
|
-
) -> tuple[list[SearchResponse],
|
88
|
+
) -> tuple[list[SearchResponse], list[str]]: ...
|
89
89
|
|
90
90
|
|
91
91
|
@overload
|
92
|
-
async def
|
92
|
+
async def nidx_query(
|
93
93
|
kbid: str,
|
94
94
|
method: Method,
|
95
95
|
pb_query: GraphSearchRequest,
|
96
96
|
timeout: Optional[float] = None,
|
97
|
-
) -> tuple[list[GraphSearchResponse],
|
97
|
+
) -> tuple[list[GraphSearchResponse], list[str]]: ...
|
98
98
|
|
99
99
|
|
100
|
-
async def
|
100
|
+
async def nidx_query(
|
101
101
|
kbid: str,
|
102
102
|
method: Method,
|
103
103
|
pb_query: REQUEST_TYPE,
|
104
104
|
timeout: Optional[float] = None,
|
105
|
-
) -> tuple[Sequence[Union[T, BaseException]],
|
105
|
+
) -> tuple[Sequence[Union[T, BaseException]], list[str]]:
|
106
106
|
timeout = timeout or settings.search_timeout
|
107
107
|
shard_manager = get_shard_manager()
|
108
108
|
try:
|
@@ -115,7 +115,6 @@ async def node_query(
|
|
115
115
|
|
116
116
|
ops = []
|
117
117
|
queried_shards = []
|
118
|
-
incomplete_results = False
|
119
118
|
|
120
119
|
for shard_obj in shard_groups:
|
121
120
|
shard_id = shard_obj.nidx_shard_id
|
@@ -127,10 +126,10 @@ async def node_query(
|
|
127
126
|
queried_shards.append(shard_id)
|
128
127
|
|
129
128
|
if not ops:
|
130
|
-
logger.warning(f"No
|
129
|
+
logger.warning(f"No shards found for kb", extra={"kbid": kbid})
|
131
130
|
raise HTTPException(
|
132
131
|
status_code=512,
|
133
|
-
detail=f"No
|
132
|
+
detail=f"No shards found for kb",
|
134
133
|
)
|
135
134
|
|
136
135
|
try:
|
@@ -144,12 +143,12 @@ async def node_query(
|
|
144
143
|
)
|
145
144
|
results = [exc]
|
146
145
|
|
147
|
-
error =
|
146
|
+
error = validate_nidx_query_results(results or [])
|
148
147
|
if error is not None:
|
149
148
|
query_dict = MessageToDict(pb_query)
|
150
149
|
query_dict.pop("vector", None)
|
151
150
|
logger.error(
|
152
|
-
"Error while querying
|
151
|
+
"Error while querying nidx",
|
153
152
|
extra={
|
154
153
|
"kbid": kbid,
|
155
154
|
"query": json.dumps(query_dict),
|
@@ -157,12 +156,12 @@ async def node_query(
|
|
157
156
|
)
|
158
157
|
raise error
|
159
158
|
|
160
|
-
return results,
|
159
|
+
return results, queried_shards
|
161
160
|
|
162
161
|
|
163
|
-
def
|
162
|
+
def validate_nidx_query_results(results: list[Any]) -> Optional[HTTPException]:
|
164
163
|
"""
|
165
|
-
Validate the results of a
|
164
|
+
Validate the results of a nidx query and return an exception if any error is found
|
166
165
|
|
167
166
|
Handling of exception is responsibility of caller.
|
168
167
|
"""
|
@@ -175,14 +174,14 @@ def validate_node_query_results(results: list[Any]) -> Optional[HTTPException]:
|
|
175
174
|
reason = "Error while querying shard data."
|
176
175
|
if isinstance(result, AioRpcError):
|
177
176
|
if result.code() is GrpcStatusCode.INTERNAL:
|
178
|
-
# handle
|
177
|
+
# handle nidx response errors
|
179
178
|
details = result.details() or "gRPC error without details"
|
180
179
|
if "AllButQueryForbidden" in details:
|
181
180
|
status_code = 412
|
182
181
|
reason = details.split(":")[-1].strip().strip("'")
|
183
182
|
else:
|
184
183
|
reason = details
|
185
|
-
logger.exception(f"Unhandled
|
184
|
+
logger.exception(f"Unhandled nidx error", exc_info=result)
|
186
185
|
else:
|
187
186
|
logger.error(
|
188
187
|
f"Unhandled GRPC error while querying shard data: {result.debug_error_string()}"
|
@@ -28,7 +28,7 @@ from nidx_protos.nodereader_pb2 import (
|
|
28
28
|
from nucliadb.common.models_utils import to_proto
|
29
29
|
from nucliadb.search import logger
|
30
30
|
from nucliadb.search.predict import AnswerStatusCode, RephraseResponse
|
31
|
-
from nucliadb.search.requesters.utils import Method,
|
31
|
+
from nucliadb.search.requesters.utils import Method, nidx_query
|
32
32
|
from nucliadb.search.search.chat.exceptions import NoRetrievalResultsError
|
33
33
|
from nucliadb.search.search.exceptions import IncompleteFindResultsError
|
34
34
|
from nucliadb.search.search.find import find
|
@@ -293,8 +293,7 @@ async def get_relations_results_from_entities(
|
|
293
293
|
(
|
294
294
|
results,
|
295
295
|
_,
|
296
|
-
|
297
|
-
) = await node_query(
|
296
|
+
) = await nidx_query(
|
298
297
|
kbid,
|
299
298
|
Method.SEARCH,
|
300
299
|
request,
|
nucliadb/search/search/find.py
CHANGED
@@ -23,7 +23,7 @@ from time import time
|
|
23
23
|
from nucliadb.common.external_index_providers.base import ExternalIndexManager
|
24
24
|
from nucliadb.common.external_index_providers.manager import get_external_index_manager
|
25
25
|
from nucliadb.common.models_utils import to_proto
|
26
|
-
from nucliadb.search.requesters.utils import Method,
|
26
|
+
from nucliadb.search.requesters.utils import Method, nidx_query
|
27
27
|
from nucliadb.search.search.find_merge import (
|
28
28
|
build_find_response,
|
29
29
|
compose_find_resources,
|
@@ -105,10 +105,7 @@ async def _index_node_retrieval(
|
|
105
105
|
) = await legacy_convert_retrieval_to_proto(parsed)
|
106
106
|
|
107
107
|
with metrics.time("index_search"):
|
108
|
-
results,
|
109
|
-
kbid, Method.SEARCH, pb_query
|
110
|
-
)
|
111
|
-
incomplete_results = incomplete_results or query_incomplete_results
|
108
|
+
results, queried_shards = await nidx_query(kbid, Method.SEARCH, pb_query)
|
112
109
|
|
113
110
|
# Rank fusion merge, cut, hydrate and rerank
|
114
111
|
with metrics.time("results_merge"):
|
@@ -33,7 +33,7 @@ from sentry_sdk import capture_exception
|
|
33
33
|
from nucliadb.common.external_index_providers.base import TextBlockMatch
|
34
34
|
from nucliadb.common.ids import FieldId, ParagraphId
|
35
35
|
from nucliadb.search import logger
|
36
|
-
from nucliadb.search.requesters.utils import Method,
|
36
|
+
from nucliadb.search.requesters.utils import Method, nidx_query
|
37
37
|
from nucliadb.search.search.chat.query import (
|
38
38
|
find_request_from_ask_request,
|
39
39
|
get_relations_results_from_entities,
|
@@ -458,7 +458,7 @@ async def fuzzy_search_entities(
|
|
458
458
|
request.query.path.bool_or.operands.append(subquery)
|
459
459
|
|
460
460
|
try:
|
461
|
-
results, _
|
461
|
+
results, _ = await nidx_query(kbid, Method.GRAPH, request)
|
462
462
|
except Exception as exc:
|
463
463
|
capture_exception(exc)
|
464
464
|
logger.exception("Error in finding entities in query for graph strategy")
|
@@ -273,6 +273,10 @@ class _Converter:
|
|
273
273
|
|
274
274
|
|
275
275
|
def is_incomplete(retrieval: UnitRetrieval) -> bool:
|
276
|
+
"""
|
277
|
+
Return true if the retrieval had the semantic feature on but the query endpoint
|
278
|
+
did not return the vector in the response.
|
279
|
+
"""
|
276
280
|
if retrieval.query.semantic is None:
|
277
281
|
return False
|
278
282
|
incomplete = retrieval.query.semantic.query is None or len(retrieval.query.semantic.query) == 0
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: nucliadb
|
3
|
-
Version: 6.4.0.
|
3
|
+
Version: 6.4.0.post4302
|
4
4
|
Summary: NucliaDB
|
5
5
|
Author-email: Nuclia <nucliadb@nuclia.com>
|
6
6
|
License: AGPL
|
@@ -20,11 +20,11 @@ Classifier: Programming Language :: Python :: 3.12
|
|
20
20
|
Classifier: Programming Language :: Python :: 3 :: Only
|
21
21
|
Requires-Python: <4,>=3.9
|
22
22
|
Description-Content-Type: text/markdown
|
23
|
-
Requires-Dist: nucliadb-telemetry[all]>=6.4.0.
|
24
|
-
Requires-Dist: nucliadb-utils[cache,fastapi,storages]>=6.4.0.
|
25
|
-
Requires-Dist: nucliadb-protos>=6.4.0.
|
26
|
-
Requires-Dist: nucliadb-models>=6.4.0.
|
27
|
-
Requires-Dist: nidx-protos>=6.4.0.
|
23
|
+
Requires-Dist: nucliadb-telemetry[all]>=6.4.0.post4302
|
24
|
+
Requires-Dist: nucliadb-utils[cache,fastapi,storages]>=6.4.0.post4302
|
25
|
+
Requires-Dist: nucliadb-protos>=6.4.0.post4302
|
26
|
+
Requires-Dist: nucliadb-models>=6.4.0.post4302
|
27
|
+
Requires-Dist: nidx-protos>=6.4.0.post4302
|
28
28
|
Requires-Dist: nucliadb-admin-assets>=1.0.0.post1224
|
29
29
|
Requires-Dist: nuclia-models>=0.24.2
|
30
30
|
Requires-Dist: uvicorn[standard]
|
@@ -213,34 +213,34 @@ nucliadb/search/utilities.py,sha256=9SsRDw0rJVXVoLBfF7rBb6q080h-thZc7u8uRcTiBeY,
|
|
213
213
|
nucliadb/search/api/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
|
214
214
|
nucliadb/search/api/v1/__init__.py,sha256=DH16OYnw9jQ38OpKlmdXeoq2j40ZPXZRtGvClKOkMhw,1239
|
215
215
|
nucliadb/search/api/v1/ask.py,sha256=b4tz33HNsfT5DXv_2DMc_jirnFsHuobreWkbAKkzj5o,5337
|
216
|
-
nucliadb/search/api/v1/catalog.py,sha256=
|
216
|
+
nucliadb/search/api/v1/catalog.py,sha256=W0cPWuC27Y4bO7Ifl1VQp8OPYfF5gv5yeWZBsuJMxUU,7721
|
217
217
|
nucliadb/search/api/v1/feedback.py,sha256=kNLc4dHz2SXHzV0PwC1WiRAwY88fDptPcP-kO0q-FrQ,2620
|
218
218
|
nucliadb/search/api/v1/find.py,sha256=C4sTGFRS9tQFF8v1zhnHQvnExJoGDYi78bZTRfwhGrc,10831
|
219
|
-
nucliadb/search/api/v1/graph.py,sha256=
|
219
|
+
nucliadb/search/api/v1/graph.py,sha256=Km_ysePnhaEahdYp0gaF-234FHliB8LdUpfGOnqZ0rc,4265
|
220
220
|
nucliadb/search/api/v1/knowledgebox.py,sha256=e9xeLPUqnQTx33i4A8xuV93ENvtJGrpjPlLRbGJtAI8,8415
|
221
221
|
nucliadb/search/api/v1/predict_proxy.py,sha256=Q03ZTvWp7Sq0x71t5Br4LHxTiYsRd6-GCb4YuKqhynM,3131
|
222
222
|
nucliadb/search/api/v1/router.py,sha256=mtT07rBZcVfpa49doaw9b1tj3sdi3qLH0gn9Io6NYM0,988
|
223
|
-
nucliadb/search/api/v1/search.py,sha256=
|
224
|
-
nucliadb/search/api/v1/suggest.py,sha256=
|
223
|
+
nucliadb/search/api/v1/search.py,sha256=bp2JfBO_wiPl7vG3-MXJfqdFfIGwJM3L25UqqGWj4V4,12304
|
224
|
+
nucliadb/search/api/v1/suggest.py,sha256=GJ7DveD6c9_h0m6NbI7IAvfO2j82TtrGuLg6UF3GBh4,6350
|
225
225
|
nucliadb/search/api/v1/summarize.py,sha256=VAHJvE6V3xUgEBfqNKhgoxmDqCvh30RnrEIBVhMcNLU,2499
|
226
226
|
nucliadb/search/api/v1/utils.py,sha256=5Ve-frn7LAE2jqAgB85F8RSeqxDlyA08--gS-AdOLS4,1434
|
227
227
|
nucliadb/search/api/v1/resource/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
|
228
228
|
nucliadb/search/api/v1/resource/ask.py,sha256=nsVzBSanSSlf0Ody6LSTjdEy75Vg283_YhbkAtWEjh8,3637
|
229
229
|
nucliadb/search/api/v1/resource/ingestion_agents.py,sha256=fqqRCd8Wc9GciS5P98lcnihvTKStsZYYtOU-T1bc-6E,4771
|
230
|
-
nucliadb/search/api/v1/resource/search.py,sha256=
|
230
|
+
nucliadb/search/api/v1/resource/search.py,sha256=Gnn4CY5NO4AK5ZWwrSIRJqBDm16u8k0XtpUwDXEBeYY,4930
|
231
231
|
nucliadb/search/api/v1/resource/utils.py,sha256=-NjZqAQtFEXKpIh8ui5S26ItnJ5rzmmG0BHxGSS9QPw,1141
|
232
232
|
nucliadb/search/requesters/__init__.py,sha256=itSI7dtTwFP55YMX4iK7JzdMHS5CQVUiB1XzQu4UBh8,833
|
233
|
-
nucliadb/search/requesters/utils.py,sha256=
|
233
|
+
nucliadb/search/requesters/utils.py,sha256=Ne5fweSWk9hettQKyUZAMZrw_MTjPE5W_EVqj4p5XiI,6109
|
234
234
|
nucliadb/search/search/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
|
235
235
|
nucliadb/search/search/cache.py,sha256=-6l3i2Qi8ig2SM_FCgOLIaQ48XVj7L5ctd5PdQRY5mY,4458
|
236
236
|
nucliadb/search/search/cut.py,sha256=ytY0_GY7ocNjfxTb4aosxEp4ZfhQNDP--JkhEMGD298,1153
|
237
237
|
nucliadb/search/search/exceptions.py,sha256=klGLgAGGrXcSGix_W6418ZBMqDchAIGjN77ofkOScEI,1039
|
238
238
|
nucliadb/search/search/fetch.py,sha256=eiljOKim-4OOEZn-3fyVZSYxztCH156BXYdqlIwVdN4,6181
|
239
239
|
nucliadb/search/search/filters.py,sha256=1MkHlJjAQqoRCj7e5cEzK2HvBxGLE17I_omsjiklbtw,6476
|
240
|
-
nucliadb/search/search/find.py,sha256=
|
240
|
+
nucliadb/search/search/find.py,sha256=ZocoQNN28OHOmMaroGVFCnce3YHPZbFb1-9jxLNHSFM,7805
|
241
241
|
nucliadb/search/search/find_merge.py,sha256=c-7IlfjfdmWAvQOyM7IO3bKS1EQpnR4oi6pN6mwrQKw,19815
|
242
242
|
nucliadb/search/search/graph_merge.py,sha256=y5V7X-BhjHsKDXE69tzQLIIKGm4XuaFrZXw0odcHVNM,3402
|
243
|
-
nucliadb/search/search/graph_strategy.py,sha256=
|
243
|
+
nucliadb/search/search/graph_strategy.py,sha256=RVUPqzvnfoZY9JlprCqtitFa_5aAvl48S0TAZtbNbQM,32888
|
244
244
|
nucliadb/search/search/hydrator.py,sha256=-R37gCrGxkyaiHQalnTWHNG_FCx11Zucd7qA1vQCxuw,6985
|
245
245
|
nucliadb/search/search/ingestion_agents.py,sha256=NeJr4EEX-bvFFMGvXOOwLv8uU7NuQ-ntJnnrhnKfMzY,3174
|
246
246
|
nucliadb/search/search/merge.py,sha256=Abg9YblQJvH2jDvXVT45MNxaIpNa7TTpsiUSJqb3NDc,23307
|
@@ -259,7 +259,7 @@ nucliadb/search/search/chat/ask.py,sha256=aaNj0MeAbx9dyeKpQJdm3VsHMq9OmcCESxahbg
|
|
259
259
|
nucliadb/search/search/chat/exceptions.py,sha256=Siy4GXW2L7oPhIR86H3WHBhE9lkV4A4YaAszuGGUf54,1356
|
260
260
|
nucliadb/search/search/chat/images.py,sha256=PA8VWxT5_HUGfW1ULhKTK46UBsVyINtWWqEM1ulzX1E,3095
|
261
261
|
nucliadb/search/search/chat/prompt.py,sha256=e8C7_MPr6Cn3nJHA4hWpeW3629KVI1ZUQA_wZf9Kiu4,48503
|
262
|
-
nucliadb/search/search/chat/query.py,sha256=
|
262
|
+
nucliadb/search/search/chat/query.py,sha256=0cShyunE_ZbHiQ2PIEbqjGyRCF409gE6OS45YZcZHi8,17052
|
263
263
|
nucliadb/search/search/query_parser/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
|
264
264
|
nucliadb/search/search/query_parser/exceptions.py,sha256=szAOXUZ27oNY-OSa9t2hQ5HHkQQC0EX1FZz_LluJHJE,1224
|
265
265
|
nucliadb/search/search/query_parser/fetcher.py,sha256=SkvBRDfSKmuz-QygNKLAU4AhZhhDo1dnOZmt1zA28RA,16851
|
@@ -273,7 +273,7 @@ nucliadb/search/search/query_parser/parsers/common.py,sha256=o3028wUnK78lOmFK0jt
|
|
273
273
|
nucliadb/search/search/query_parser/parsers/find.py,sha256=Fo4lXOnCbP0AKEc1mKLNINJBv63B4DPlix0vlhyesck,12717
|
274
274
|
nucliadb/search/search/query_parser/parsers/graph.py,sha256=lDRJO_JvOe7yytNgXZyMogyPMgB5xc8obNY2kqz3yGU,9405
|
275
275
|
nucliadb/search/search/query_parser/parsers/search.py,sha256=yEebeMOXJza7HMK3TdIPO6UGQbe79maSDg-GgohQIMk,10517
|
276
|
-
nucliadb/search/search/query_parser/parsers/unit_retrieval.py,sha256=
|
276
|
+
nucliadb/search/search/query_parser/parsers/unit_retrieval.py,sha256=rW3YHDWLkI2Hhznl_1oOMhC01bwZMAjv-Wu3iHPIaiU,11475
|
277
277
|
nucliadb/standalone/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
|
278
278
|
nucliadb/standalone/api_router.py,sha256=hgq9FXpihzgjHkwcVGfGCSwyXy67fqXTfLFHuINzIi0,5567
|
279
279
|
nucliadb/standalone/app.py,sha256=mAApNK_iVsQgJyd-mtwCeZq5csSimwnXmlQGH9a70pE,5586
|
@@ -368,8 +368,8 @@ nucliadb/writer/tus/local.py,sha256=7jYa_w9b-N90jWgN2sQKkNcomqn6JMVBOVeDOVYJHto,
|
|
368
368
|
nucliadb/writer/tus/s3.py,sha256=vF0NkFTXiXhXq3bCVXXVV-ED38ECVoUeeYViP8uMqcU,8357
|
369
369
|
nucliadb/writer/tus/storage.py,sha256=ToqwjoYnjI4oIcwzkhha_MPxi-k4Jk3Lt55zRwaC1SM,2903
|
370
370
|
nucliadb/writer/tus/utils.py,sha256=MSdVbRsRSZVdkaum69_0wku7X3p5wlZf4nr6E0GMKbw,2556
|
371
|
-
nucliadb-6.4.0.
|
372
|
-
nucliadb-6.4.0.
|
373
|
-
nucliadb-6.4.0.
|
374
|
-
nucliadb-6.4.0.
|
375
|
-
nucliadb-6.4.0.
|
371
|
+
nucliadb-6.4.0.post4302.dist-info/METADATA,sha256=BELqLq2CUcIs_LxWC6lJuuuyPvCt2JGYoTJ7Ur-zK80,4223
|
372
|
+
nucliadb-6.4.0.post4302.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
373
|
+
nucliadb-6.4.0.post4302.dist-info/entry_points.txt,sha256=XqGfgFDuY3zXQc8ewXM2TRVjTModIq851zOsgrmaXx4,1268
|
374
|
+
nucliadb-6.4.0.post4302.dist-info/top_level.txt,sha256=hwYhTVnX7jkQ9gJCkVrbqEG1M4lT2F_iPQND1fCzF80,20
|
375
|
+
nucliadb-6.4.0.post4302.dist-info/RECORD,,
|
File without changes
|
File without changes
|