nucliadb 6.9.2.post5264__py3-none-any.whl → 6.9.2.post5275__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.
Potentially problematic release.
This version of nucliadb might be problematic. Click here for more details.
- nucliadb/search/api/v1/find.py +0 -2
- nucliadb/search/api/v1/search.py +1 -4
- nucliadb/search/search/chat/ask.py +0 -1
- nucliadb/search/search/chat/query.py +0 -1
- nucliadb/search/search/find.py +1 -6
- nucliadb/search/search/query.py +0 -23
- nucliadb/search/search/query_parser/models.py +0 -1
- nucliadb/search/search/query_parser/parsers/find.py +0 -8
- nucliadb/search/search/query_parser/parsers/search.py +0 -8
- nucliadb/search/search/query_parser/parsers/unit_retrieval.py +4 -11
- {nucliadb-6.9.2.post5264.dist-info → nucliadb-6.9.2.post5275.dist-info}/METADATA +6 -6
- {nucliadb-6.9.2.post5264.dist-info → nucliadb-6.9.2.post5275.dist-info}/RECORD +15 -15
- {nucliadb-6.9.2.post5264.dist-info → nucliadb-6.9.2.post5275.dist-info}/WHEEL +0 -0
- {nucliadb-6.9.2.post5264.dist-info → nucliadb-6.9.2.post5275.dist-info}/entry_points.txt +0 -0
- {nucliadb-6.9.2.post5264.dist-info → nucliadb-6.9.2.post5275.dist-info}/top_level.txt +0 -0
nucliadb/search/api/v1/find.py
CHANGED
|
@@ -126,7 +126,6 @@ async def find_knowledgebox(
|
|
|
126
126
|
extracted: list[ExtractedDataTypeName] = fastapi_query(SearchParamDefaults.extracted),
|
|
127
127
|
with_duplicates: bool = fastapi_query(SearchParamDefaults.with_duplicates),
|
|
128
128
|
with_synonyms: bool = fastapi_query(SearchParamDefaults.with_synonyms),
|
|
129
|
-
autofilter: bool = fastapi_query(SearchParamDefaults.autofilter),
|
|
130
129
|
security_groups: list[str] = fastapi_query(SearchParamDefaults.security_groups),
|
|
131
130
|
show_hidden: bool = fastapi_query(SearchParamDefaults.show_hidden),
|
|
132
131
|
rank_fusion: RankFusionName = fastapi_query(SearchParamDefaults.rank_fusion),
|
|
@@ -165,7 +164,6 @@ async def find_knowledgebox(
|
|
|
165
164
|
extracted=extracted,
|
|
166
165
|
with_duplicates=with_duplicates,
|
|
167
166
|
with_synonyms=with_synonyms,
|
|
168
|
-
autofilter=autofilter,
|
|
169
167
|
security=security,
|
|
170
168
|
show_hidden=show_hidden,
|
|
171
169
|
rank_fusion=rank_fusion,
|
nucliadb/search/api/v1/search.py
CHANGED
|
@@ -148,7 +148,6 @@ async def search_knowledgebox(
|
|
|
148
148
|
extracted: list[ExtractedDataTypeName] = fastapi_query(SearchParamDefaults.extracted),
|
|
149
149
|
with_duplicates: bool = fastapi_query(SearchParamDefaults.with_duplicates),
|
|
150
150
|
with_synonyms: bool = fastapi_query(SearchParamDefaults.with_synonyms),
|
|
151
|
-
autofilter: bool = fastapi_query(SearchParamDefaults.autofilter),
|
|
152
151
|
security_groups: list[str] = fastapi_query(SearchParamDefaults.security_groups),
|
|
153
152
|
show_hidden: bool = fastapi_query(SearchParamDefaults.show_hidden),
|
|
154
153
|
x_ndb_client: NucliaDBClientType = Header(NucliaDBClientType.API),
|
|
@@ -187,7 +186,6 @@ async def search_knowledgebox(
|
|
|
187
186
|
extracted=extracted,
|
|
188
187
|
with_duplicates=with_duplicates,
|
|
189
188
|
with_synonyms=with_synonyms,
|
|
190
|
-
autofilter=autofilter,
|
|
191
189
|
security=security,
|
|
192
190
|
show_hidden=show_hidden,
|
|
193
191
|
)
|
|
@@ -262,7 +260,7 @@ async def search(
|
|
|
262
260
|
start_time = time()
|
|
263
261
|
|
|
264
262
|
parsed = await parse_search(kbid, item)
|
|
265
|
-
pb_query, incomplete_results,
|
|
263
|
+
pb_query, incomplete_results, _ = await legacy_convert_retrieval_to_proto(parsed)
|
|
266
264
|
|
|
267
265
|
# We need to query all nodes
|
|
268
266
|
results, queried_shards = await nidx_query(kbid, Method.SEARCH, pb_query)
|
|
@@ -290,5 +288,4 @@ async def search(
|
|
|
290
288
|
)
|
|
291
289
|
|
|
292
290
|
search_results.shards = queried_shards
|
|
293
|
-
search_results.autofilters = autofilters
|
|
294
291
|
return search_results, incomplete_results
|
|
@@ -200,7 +200,6 @@ def find_request_from_ask_request(item: AskRequest, query: str) -> FindRequest:
|
|
|
200
200
|
find_request.range_modification_end = item.range_modification_end
|
|
201
201
|
find_request.show = item.show
|
|
202
202
|
find_request.extracted = item.extracted
|
|
203
|
-
find_request.autofilter = item.autofilter
|
|
204
203
|
find_request.highlight = item.highlight
|
|
205
204
|
find_request.security = item.security
|
|
206
205
|
find_request.debug = item.debug
|
nucliadb/search/search/find.py
CHANGED
|
@@ -100,7 +100,6 @@ async def _index_node_retrieval(
|
|
|
100
100
|
(
|
|
101
101
|
pb_query,
|
|
102
102
|
incomplete_results,
|
|
103
|
-
autofilters,
|
|
104
103
|
rephrased_query,
|
|
105
104
|
) = await legacy_convert_retrieval_to_proto(parsed)
|
|
106
105
|
|
|
@@ -137,7 +136,6 @@ async def _index_node_retrieval(
|
|
|
137
136
|
)
|
|
138
137
|
|
|
139
138
|
search_results.shards = queried_shards
|
|
140
|
-
search_results.autofilters = autofilters
|
|
141
139
|
|
|
142
140
|
ndb_time = metrics["index_search"] + metrics["results_merge"]
|
|
143
141
|
if metrics["index_search"] > settings.slow_node_query_log_threshold:
|
|
@@ -180,9 +178,7 @@ async def _external_index_retrieval(
|
|
|
180
178
|
parsed = await parse_find(kbid, item)
|
|
181
179
|
assert parsed.retrieval.reranker is not None, "find parser must provide a reranking algorithm"
|
|
182
180
|
reranker = get_reranker(parsed.retrieval.reranker)
|
|
183
|
-
search_request, incomplete_results,
|
|
184
|
-
parsed
|
|
185
|
-
)
|
|
181
|
+
search_request, incomplete_results, rephrased_query = await legacy_convert_retrieval_to_proto(parsed)
|
|
186
182
|
|
|
187
183
|
# Query index
|
|
188
184
|
query_results = await external_index_manager.query(search_request) # noqa
|
|
@@ -220,7 +216,6 @@ async def _external_index_retrieval(
|
|
|
220
216
|
page_number=0,
|
|
221
217
|
page_size=item.top_k,
|
|
222
218
|
relations=None, # Not implemented for external indexes yet
|
|
223
|
-
autofilters=[], # Not implemented for external indexes yet
|
|
224
219
|
min_score=results_min_score,
|
|
225
220
|
best_matches=best_matches,
|
|
226
221
|
# These are not used for external indexes
|
nucliadb/search/search/query.py
CHANGED
|
@@ -26,9 +26,6 @@ from nidx_protos.noderesources_pb2 import Resource
|
|
|
26
26
|
from nucliadb.common import datamanagers
|
|
27
27
|
from nucliadb.common.exceptions import InvalidQueryError
|
|
28
28
|
from nucliadb.common.filter_expression import add_and_expression, parse_expression
|
|
29
|
-
from nucliadb.search.search.filters import (
|
|
30
|
-
translate_label,
|
|
31
|
-
)
|
|
32
29
|
from nucliadb.search.search.query_parser.fetcher import Fetcher
|
|
33
30
|
from nucliadb_models.filters import FilterExpression
|
|
34
31
|
from nucliadb_models.labels import LABEL_HIDDEN
|
|
@@ -166,26 +163,6 @@ def expand_entities(
|
|
|
166
163
|
return list(result_entities.values())
|
|
167
164
|
|
|
168
165
|
|
|
169
|
-
def apply_entities_filter(
|
|
170
|
-
request: nodereader_pb2.SearchRequest,
|
|
171
|
-
detected_entities: list[utils_pb2.RelationNode],
|
|
172
|
-
) -> list[str]:
|
|
173
|
-
added_filters = []
|
|
174
|
-
for entity_filter in [
|
|
175
|
-
f"/e/{entity.subtype}/{entity.value}"
|
|
176
|
-
for entity in detected_entities
|
|
177
|
-
if entity.ntype == utils_pb2.RelationNode.NodeType.ENTITY
|
|
178
|
-
]:
|
|
179
|
-
if entity_filter not in added_filters:
|
|
180
|
-
added_filters.append(entity_filter)
|
|
181
|
-
# Add the entity to the filter expression (with AND)
|
|
182
|
-
entity_expr = nodereader_pb2.FilterExpression()
|
|
183
|
-
entity_expr.facet.facet = translate_label(entity_filter)
|
|
184
|
-
add_and_expression(request.field_filter, entity_expr)
|
|
185
|
-
|
|
186
|
-
return added_filters
|
|
187
|
-
|
|
188
|
-
|
|
189
166
|
async def suggest_query_to_pb(
|
|
190
167
|
kbid: str,
|
|
191
168
|
features: list[SuggestOptions],
|
|
@@ -85,7 +85,6 @@ class Filters(BaseModel):
|
|
|
85
85
|
nodereader_pb2.FilterOperator.AND
|
|
86
86
|
)
|
|
87
87
|
|
|
88
|
-
autofilter: Optional[list[utils_pb2.RelationNode]] = None
|
|
89
88
|
facets: list[str] = Field(default_factory=list)
|
|
90
89
|
hidden: Optional[bool] = None
|
|
91
90
|
security: Optional[search_models.RequestSecurity] = None
|
|
@@ -253,17 +253,9 @@ class _FindParser:
|
|
|
253
253
|
else:
|
|
254
254
|
filter_operator = nodereader_pb2.FilterOperator.AND
|
|
255
255
|
|
|
256
|
-
autofilter = None
|
|
257
|
-
if self.item.autofilter:
|
|
258
|
-
if self._query.relation is not None:
|
|
259
|
-
autofilter = self._query.relation.entry_points
|
|
260
|
-
else:
|
|
261
|
-
autofilter = await self._get_detected_entities()
|
|
262
|
-
|
|
263
256
|
hidden = await filter_hidden_resources(self.kbid, self.item.show_hidden)
|
|
264
257
|
|
|
265
258
|
return Filters(
|
|
266
|
-
autofilter=autofilter,
|
|
267
259
|
facets=[],
|
|
268
260
|
field_expression=field_expr,
|
|
269
261
|
paragraph_expression=paragraph_expr,
|
|
@@ -251,17 +251,9 @@ class _SearchParser:
|
|
|
251
251
|
else:
|
|
252
252
|
filter_operator = nodereader_pb2.FilterOperator.AND
|
|
253
253
|
|
|
254
|
-
autofilter = None
|
|
255
|
-
if self.item.autofilter:
|
|
256
|
-
if self._query.relation is not None:
|
|
257
|
-
autofilter = self._query.relation.entry_points
|
|
258
|
-
else:
|
|
259
|
-
autofilter = await self._get_detected_entities()
|
|
260
|
-
|
|
261
254
|
hidden = await filter_hidden_resources(self.kbid, self.item.show_hidden)
|
|
262
255
|
|
|
263
256
|
return Filters(
|
|
264
|
-
autofilter=autofilter,
|
|
265
257
|
facets=self.item.faceted,
|
|
266
258
|
field_expression=field_expr,
|
|
267
259
|
paragraph_expression=paragraph_expr,
|
|
@@ -25,10 +25,10 @@ from nidx_protos.nodereader_pb2 import SearchRequest
|
|
|
25
25
|
from nucliadb.common.filter_expression import add_and_expression
|
|
26
26
|
from nucliadb.search.search.filters import translate_label
|
|
27
27
|
from nucliadb.search.search.metrics import node_features, query_parser_observer
|
|
28
|
-
from nucliadb.search.search.query import
|
|
28
|
+
from nucliadb.search.search.query import get_sort_field_proto
|
|
29
29
|
from nucliadb.search.search.query_parser.models import ParsedQuery, PredictReranker, UnitRetrieval
|
|
30
30
|
from nucliadb.search.search.query_parser.parsers.graph import parse_path_query
|
|
31
|
-
from nucliadb_models.labels import LABEL_HIDDEN
|
|
31
|
+
from nucliadb_models.labels import LABEL_HIDDEN
|
|
32
32
|
from nucliadb_models.search import SortOrderMap
|
|
33
33
|
from nucliadb_protos import utils_pb2
|
|
34
34
|
|
|
@@ -36,7 +36,7 @@ from nucliadb_protos import utils_pb2
|
|
|
36
36
|
@query_parser_observer.wrap({"type": "convert_retrieval_to_proto"})
|
|
37
37
|
async def legacy_convert_retrieval_to_proto(
|
|
38
38
|
parsed: ParsedQuery,
|
|
39
|
-
) -> tuple[SearchRequest, bool,
|
|
39
|
+
) -> tuple[SearchRequest, bool, Optional[str]]:
|
|
40
40
|
converter = _Converter(parsed.retrieval)
|
|
41
41
|
request = converter.into_search_request()
|
|
42
42
|
|
|
@@ -44,13 +44,12 @@ async def legacy_convert_retrieval_to_proto(
|
|
|
44
44
|
# needed. We should find a better abstraction
|
|
45
45
|
|
|
46
46
|
incomplete = is_incomplete(parsed.retrieval)
|
|
47
|
-
autofilter = converter._autofilter
|
|
48
47
|
|
|
49
48
|
rephrased_query = None
|
|
50
49
|
if parsed.retrieval.query.semantic:
|
|
51
50
|
rephrased_query = await parsed.fetcher.get_rephrased_query()
|
|
52
51
|
|
|
53
|
-
return request, incomplete,
|
|
52
|
+
return request, incomplete, rephrased_query
|
|
54
53
|
|
|
55
54
|
|
|
56
55
|
@query_parser_observer.wrap({"type": "convert_retrieval_to_proto"})
|
|
@@ -65,8 +64,6 @@ class _Converter:
|
|
|
65
64
|
self.req = nodereader_pb2.SearchRequest()
|
|
66
65
|
self.retrieval = retrieval
|
|
67
66
|
|
|
68
|
-
self._autofilter: list[str] = []
|
|
69
|
-
|
|
70
67
|
def into_search_request(self) -> nodereader_pb2.SearchRequest:
|
|
71
68
|
"""Generate a SearchRequest proto from a retrieval operation."""
|
|
72
69
|
self._apply_text_queries()
|
|
@@ -235,10 +232,6 @@ class _Converter:
|
|
|
235
232
|
self.req.paragraph_filter.CopyFrom(self.retrieval.filters.paragraph_expression)
|
|
236
233
|
self.req.filter_operator = self.retrieval.filters.filter_expression_operator
|
|
237
234
|
|
|
238
|
-
if self.retrieval.filters.autofilter:
|
|
239
|
-
entity_filters = apply_entities_filter(self.req, self.retrieval.filters.autofilter)
|
|
240
|
-
self._autofilter.extend([translate_system_to_alias_label(e) for e in entity_filters])
|
|
241
|
-
|
|
242
235
|
if self.retrieval.filters.hidden is not None:
|
|
243
236
|
expr = nodereader_pb2.FilterExpression()
|
|
244
237
|
if self.retrieval.filters.hidden:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nucliadb
|
|
3
|
-
Version: 6.9.2.
|
|
3
|
+
Version: 6.9.2.post5275
|
|
4
4
|
Summary: NucliaDB
|
|
5
5
|
Author-email: Nuclia <nucliadb@nuclia.com>
|
|
6
6
|
License-Expression: AGPL-3.0-or-later
|
|
@@ -18,11 +18,11 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
19
19
|
Requires-Python: <4,>=3.10
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
|
-
Requires-Dist: nucliadb-telemetry[all]>=6.9.2.
|
|
22
|
-
Requires-Dist: nucliadb-utils[cache,fastapi,storages]>=6.9.2.
|
|
23
|
-
Requires-Dist: nucliadb-protos>=6.9.2.
|
|
24
|
-
Requires-Dist: nucliadb-models>=6.9.2.
|
|
25
|
-
Requires-Dist: nidx-protos>=6.9.2.
|
|
21
|
+
Requires-Dist: nucliadb-telemetry[all]>=6.9.2.post5275
|
|
22
|
+
Requires-Dist: nucliadb-utils[cache,fastapi,storages]>=6.9.2.post5275
|
|
23
|
+
Requires-Dist: nucliadb-protos>=6.9.2.post5275
|
|
24
|
+
Requires-Dist: nucliadb-models>=6.9.2.post5275
|
|
25
|
+
Requires-Dist: nidx-protos>=6.9.2.post5275
|
|
26
26
|
Requires-Dist: nucliadb-admin-assets>=1.0.0.post1224
|
|
27
27
|
Requires-Dist: nuclia-models>=0.50.0
|
|
28
28
|
Requires-Dist: uvicorn[standard]
|
|
@@ -229,13 +229,13 @@ nucliadb/search/api/v1/__init__.py,sha256=hiIGqIVD0ETJWHvX41_RDEMPHq7jWrE4q4rFQo
|
|
|
229
229
|
nucliadb/search/api/v1/ask.py,sha256=hZUnk1opZuXp1IwTiingSatlUefg2CZ9r_Z9sUwZMaU,5698
|
|
230
230
|
nucliadb/search/api/v1/catalog.py,sha256=zMflTu9UKfvuEO_u4Et33Q2kSni0TIk2E5t-_Ad5BXM,8069
|
|
231
231
|
nucliadb/search/api/v1/feedback.py,sha256=kNLc4dHz2SXHzV0PwC1WiRAwY88fDptPcP-kO0q-FrQ,2620
|
|
232
|
-
nucliadb/search/api/v1/find.py,sha256=
|
|
232
|
+
nucliadb/search/api/v1/find.py,sha256=X17Sj8T_WAZHkkbhXvEr3fK3oItKL1aDzqvB4TY5cbY,10768
|
|
233
233
|
nucliadb/search/api/v1/graph.py,sha256=gthqxCOn9biE6D6s93jRGLglk0ono8U7OyS390kWiI8,4178
|
|
234
234
|
nucliadb/search/api/v1/hydrate.py,sha256=31HuYvQPZthBhDulVWU8q3EPiBfm4bJDpWMbtM3gtCk,11954
|
|
235
235
|
nucliadb/search/api/v1/knowledgebox.py,sha256=e9xeLPUqnQTx33i4A8xuV93ENvtJGrpjPlLRbGJtAI8,8415
|
|
236
236
|
nucliadb/search/api/v1/predict_proxy.py,sha256=TnXKAqf_Go-9QVi6L5z4cXjnuNRe7XLJjF5QH_uwA1I,3504
|
|
237
237
|
nucliadb/search/api/v1/router.py,sha256=mtT07rBZcVfpa49doaw9b1tj3sdi3qLH0gn9Io6NYM0,988
|
|
238
|
-
nucliadb/search/api/v1/search.py,sha256=
|
|
238
|
+
nucliadb/search/api/v1/search.py,sha256=DwfA0gPpf4g7ng7rqX27wa1jeo-RVF4eK4byL21G0fA,12134
|
|
239
239
|
nucliadb/search/api/v1/suggest.py,sha256=gaJE60r8-z6TVO05mQRKBITwXn2_ofM3B4-OtpOgZEk,6343
|
|
240
240
|
nucliadb/search/api/v1/summarize.py,sha256=eJzgFJWUO80STx3lHc_0h9RZVaBCWF196nZUecfmqbE,2700
|
|
241
241
|
nucliadb/search/api/v1/utils.py,sha256=5Ve-frn7LAE2jqAgB85F8RSeqxDlyA08--gS-AdOLS4,1434
|
|
@@ -252,7 +252,7 @@ nucliadb/search/search/cut.py,sha256=ytY0_GY7ocNjfxTb4aosxEp4ZfhQNDP--JkhEMGD298
|
|
|
252
252
|
nucliadb/search/search/exceptions.py,sha256=q6IKlajYRGLx_AVc2DI6gIZLpOY7ydf4EevMr5_2Krw,940
|
|
253
253
|
nucliadb/search/search/fetch.py,sha256=QweK9WOl9ilxVPsVU5qTnIg7lhISWVFknij4vGhdBFk,6170
|
|
254
254
|
nucliadb/search/search/filters.py,sha256=vZnbf3BjYuDkEQcBeLX_GDkq3Ahbbb7pLJ6DJU9z-QE,6490
|
|
255
|
-
nucliadb/search/search/find.py,sha256=
|
|
255
|
+
nucliadb/search/search/find.py,sha256=pM1Qcm9VM9Cnp6vmy1YX_bXcMGnPp-zJBVPnkeah3Lw,7650
|
|
256
256
|
nucliadb/search/search/find_merge.py,sha256=c-7IlfjfdmWAvQOyM7IO3bKS1EQpnR4oi6pN6mwrQKw,19815
|
|
257
257
|
nucliadb/search/search/graph_merge.py,sha256=y5V7X-BhjHsKDXE69tzQLIIKGm4XuaFrZXw0odcHVNM,3402
|
|
258
258
|
nucliadb/search/search/graph_strategy.py,sha256=VNa-XLQnJometUTbDJumhHf_LUHphHBoEQhopL3rDGk,36122
|
|
@@ -261,18 +261,18 @@ nucliadb/search/search/merge.py,sha256=XiRBsxhYPshPV7lZXD-9E259KZOPIf4I2tKosY0lP
|
|
|
261
261
|
nucliadb/search/search/metrics.py,sha256=yodhoyn-smFdS7rKUn_XXNNXT93WqVdZj9F3TCbbQTI,4160
|
|
262
262
|
nucliadb/search/search/paragraphs.py,sha256=pNAEiYqJGGUVcEf7xf-PFMVqz0PX4Qb-WNG-_zPGN2o,7799
|
|
263
263
|
nucliadb/search/search/predict_proxy.py,sha256=fjy4HsIkv-CfiHIk9282Pp0DfLgl3939F-whYk4LnYI,10051
|
|
264
|
-
nucliadb/search/search/query.py,sha256=
|
|
264
|
+
nucliadb/search/search/query.py,sha256=0iF8QKmft5Y14TD4ww893cEoCxXOAwpHtCDoksNEPkE,10753
|
|
265
265
|
nucliadb/search/search/rank_fusion.py,sha256=xZtXhbmKb_56gs73u6KkFm2efvTATOSMmpOV2wrAIqE,9613
|
|
266
266
|
nucliadb/search/search/rerankers.py,sha256=2LNC0I28EXriffMuBlOYzjQq0vCTjpCxaK29f852n3s,7473
|
|
267
267
|
nucliadb/search/search/shards.py,sha256=mc5DK-MoCv9AFhlXlOFHbPvetcyNDzTFOJ5rimK8PC8,2636
|
|
268
268
|
nucliadb/search/search/summarize.py,sha256=3lLdwsM28W505bKvmK7JLXmz7kcjd8Hp70LQs391ofY,5087
|
|
269
269
|
nucliadb/search/search/utils.py,sha256=ajRIXfdTF67dBVahQCXW-rSv6gJpUMPt3QhJrWqArTQ,2175
|
|
270
270
|
nucliadb/search/search/chat/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
|
|
271
|
-
nucliadb/search/search/chat/ask.py,sha256=
|
|
271
|
+
nucliadb/search/search/chat/ask.py,sha256=siMKgXEuAOUPa9oxi72idEOhN9BXZ-NVvWY3rqMMM3I,41610
|
|
272
272
|
nucliadb/search/search/chat/exceptions.py,sha256=Siy4GXW2L7oPhIR86H3WHBhE9lkV4A4YaAszuGGUf54,1356
|
|
273
273
|
nucliadb/search/search/chat/images.py,sha256=PA8VWxT5_HUGfW1ULhKTK46UBsVyINtWWqEM1ulzX1E,3095
|
|
274
274
|
nucliadb/search/search/chat/prompt.py,sha256=dqk6969zEymfGuDl0S1uAGM_Ii5kgdcCgNkuVrM0_8c,54406
|
|
275
|
-
nucliadb/search/search/chat/query.py,sha256=
|
|
275
|
+
nucliadb/search/search/chat/query.py,sha256=Ds_0vYfCdbfTZerSM0AykkfKYYJj88j_M2XA87FfjJQ,17101
|
|
276
276
|
nucliadb/search/search/hydrator/__init__.py,sha256=3Pc-rcax4TI174qcrllnReE728DoJTaA8tpvBUFf98g,7005
|
|
277
277
|
nucliadb/search/search/hydrator/fields.py,sha256=LhKw-aNU5eJqfZADtq3iB7AGXm0l_QabAAoSHJTk8Is,5962
|
|
278
278
|
nucliadb/search/search/hydrator/images.py,sha256=gS7-dr1e_DpRQ6XaGxwMW1AMEV9a-u73h_jTVy7XY38,4602
|
|
@@ -281,16 +281,16 @@ nucliadb/search/search/hydrator/resources.py,sha256=1pNyUac8xWRnQVXU6FkDwsXHzmOZ
|
|
|
281
281
|
nucliadb/search/search/query_parser/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
|
|
282
282
|
nucliadb/search/search/query_parser/exceptions.py,sha256=sVl9gRNzhE-s480LBBVkiXzNRbKhYRQN5F3it5tNNp8,939
|
|
283
283
|
nucliadb/search/search/query_parser/fetcher.py,sha256=0Eg_7x9BaAQ1AuTK6NXQMUoGFAXIZiMRurR32tydeNM,17198
|
|
284
|
-
nucliadb/search/search/query_parser/models.py,sha256=
|
|
284
|
+
nucliadb/search/search/query_parser/models.py,sha256=eejW44oZ-XMl3CP8qFPMTqqK4MC_k7blLWZDR82c7yQ,4240
|
|
285
285
|
nucliadb/search/search/query_parser/old_filters.py,sha256=GsU3T3-WiSPvjucP7evHkshzAWZOli8qsuXChvWRCY0,9092
|
|
286
286
|
nucliadb/search/search/query_parser/parsers/__init__.py,sha256=ySCNSdbesLXGZyR88919njulA6UE10_3PhqMG_Yj1o4,1034
|
|
287
287
|
nucliadb/search/search/query_parser/parsers/ask.py,sha256=ySa3lBhUuammIchJvj7xodeGIYGkR0uyLnHuOtLfWE8,2810
|
|
288
288
|
nucliadb/search/search/query_parser/parsers/catalog.py,sha256=ZECncFrgcxtsXrvAA2sqH9h0HJrQvSdezdlQhPR78Lk,7464
|
|
289
289
|
nucliadb/search/search/query_parser/parsers/common.py,sha256=LvpCHL5a8mwVn3_3MMZq9WiVHOFMfLuJlZKvh_neHiM,6872
|
|
290
|
-
nucliadb/search/search/query_parser/parsers/find.py,sha256=
|
|
290
|
+
nucliadb/search/search/query_parser/parsers/find.py,sha256=HgBFqLSZICg6zT6k14riJzyn-XLP--EVjKNDDDyy-k8,12408
|
|
291
291
|
nucliadb/search/search/query_parser/parsers/graph.py,sha256=s7nCB7ly_4BZWds-8zce1R-r2fHSiEhAK8P-eL14wTk,9390
|
|
292
|
-
nucliadb/search/search/query_parser/parsers/search.py,sha256=
|
|
293
|
-
nucliadb/search/search/query_parser/parsers/unit_retrieval.py,sha256=
|
|
292
|
+
nucliadb/search/search/query_parser/parsers/search.py,sha256=1L-m7TrpqoaWmO-saxLxN7l4MC_WzD8pMwz5z_uZBbE,10138
|
|
293
|
+
nucliadb/search/search/query_parser/parsers/unit_retrieval.py,sha256=Oz2L9W21h5XVzQDa5v9cdZsJs8nc9jl8T2nP57F29CU,11054
|
|
294
294
|
nucliadb/standalone/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
|
|
295
295
|
nucliadb/standalone/api_router.py,sha256=zRSMlaRVHUDGTYA3zC03UV_aLLn-ch-kaeWn1tEjTXw,4338
|
|
296
296
|
nucliadb/standalone/app.py,sha256=mAApNK_iVsQgJyd-mtwCeZq5csSimwnXmlQGH9a70pE,5586
|
|
@@ -385,8 +385,8 @@ nucliadb/writer/tus/local.py,sha256=7jYa_w9b-N90jWgN2sQKkNcomqn6JMVBOVeDOVYJHto,
|
|
|
385
385
|
nucliadb/writer/tus/s3.py,sha256=vu1BGg4VqJ_x2P1u2BxqPKlSfw5orT_a3R-Ln5oPUpU,8483
|
|
386
386
|
nucliadb/writer/tus/storage.py,sha256=ToqwjoYnjI4oIcwzkhha_MPxi-k4Jk3Lt55zRwaC1SM,2903
|
|
387
387
|
nucliadb/writer/tus/utils.py,sha256=MSdVbRsRSZVdkaum69_0wku7X3p5wlZf4nr6E0GMKbw,2556
|
|
388
|
-
nucliadb-6.9.2.
|
|
389
|
-
nucliadb-6.9.2.
|
|
390
|
-
nucliadb-6.9.2.
|
|
391
|
-
nucliadb-6.9.2.
|
|
392
|
-
nucliadb-6.9.2.
|
|
388
|
+
nucliadb-6.9.2.post5275.dist-info/METADATA,sha256=Rw1v7kl_32369UkLp0l5JKfZ8ipe5j0wd1hNBDFTxiw,4118
|
|
389
|
+
nucliadb-6.9.2.post5275.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
390
|
+
nucliadb-6.9.2.post5275.dist-info/entry_points.txt,sha256=XqGfgFDuY3zXQc8ewXM2TRVjTModIq851zOsgrmaXx4,1268
|
|
391
|
+
nucliadb-6.9.2.post5275.dist-info/top_level.txt,sha256=hwYhTVnX7jkQ9gJCkVrbqEG1M4lT2F_iPQND1fCzF80,20
|
|
392
|
+
nucliadb-6.9.2.post5275.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|