nucliadb 6.3.4.post3762__py3-none-any.whl → 6.3.4.post3769__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/search/chat/ask.py +3 -3
- {nucliadb-6.3.4.post3762.dist-info → nucliadb-6.3.4.post3769.dist-info}/METADATA +6 -6
- {nucliadb-6.3.4.post3762.dist-info → nucliadb-6.3.4.post3769.dist-info}/RECORD +6 -6
- {nucliadb-6.3.4.post3762.dist-info → nucliadb-6.3.4.post3769.dist-info}/WHEEL +1 -1
- {nucliadb-6.3.4.post3762.dist-info → nucliadb-6.3.4.post3769.dist-info}/entry_points.txt +0 -0
- {nucliadb-6.3.4.post3762.dist-info → nucliadb-6.3.4.post3769.dist-info}/top_level.txt +0 -0
@@ -436,6 +436,9 @@ class NotEnoughContextAskResult(AskResult):
|
|
436
436
|
return the find results and the messages indicating that there is not enough
|
437
437
|
context in the corpus to answer.
|
438
438
|
"""
|
439
|
+
status = AnswerStatusCode.NO_RETRIEVAL_DATA
|
440
|
+
yield self._ndjson_encode(StatusAskResponseItem(code=status.value, status=status.prettify()))
|
441
|
+
yield self._ndjson_encode(AnswerAskResponseItem(text=NOT_ENOUGH_CONTEXT_ANSWER))
|
439
442
|
yield self._ndjson_encode(RetrievalAskResponseItem(results=self.main_results))
|
440
443
|
if self.prequeries_results:
|
441
444
|
yield self._ndjson_encode(
|
@@ -446,9 +449,6 @@ class NotEnoughContextAskResult(AskResult):
|
|
446
449
|
}
|
447
450
|
)
|
448
451
|
)
|
449
|
-
yield self._ndjson_encode(AnswerAskResponseItem(text=NOT_ENOUGH_CONTEXT_ANSWER))
|
450
|
-
status = AnswerStatusCode.NO_RETRIEVAL_DATA
|
451
|
-
yield self._ndjson_encode(StatusAskResponseItem(code=status.value, status=status.prettify()))
|
452
452
|
|
453
453
|
async def json(self) -> str:
|
454
454
|
prequeries = (
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: nucliadb
|
3
|
-
Version: 6.3.4.
|
3
|
+
Version: 6.3.4.post3769
|
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.3.4.
|
24
|
-
Requires-Dist: nucliadb-utils[cache,fastapi,storages]>=6.3.4.
|
25
|
-
Requires-Dist: nucliadb-protos>=6.3.4.
|
26
|
-
Requires-Dist: nucliadb-models>=6.3.4.
|
27
|
-
Requires-Dist: nidx-protos>=6.3.4.
|
23
|
+
Requires-Dist: nucliadb-telemetry[all]>=6.3.4.post3769
|
24
|
+
Requires-Dist: nucliadb-utils[cache,fastapi,storages]>=6.3.4.post3769
|
25
|
+
Requires-Dist: nucliadb-protos>=6.3.4.post3769
|
26
|
+
Requires-Dist: nucliadb-models>=6.3.4.post3769
|
27
|
+
Requires-Dist: nidx-protos>=6.3.4.post3769
|
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
|
@@ -244,7 +244,7 @@ nucliadb/search/search/shards.py,sha256=OEtN1p9WX_cMX8t-myaafpmFAPTpUEOutR7z1sDu
|
|
244
244
|
nucliadb/search/search/summarize.py,sha256=ksmYPubEQvAQgfPdZHfzB_rR19B2ci4IYZ6jLdHxZo8,4996
|
245
245
|
nucliadb/search/search/utils.py,sha256=iF2tbBA56gRMJH1TlE2hMrqeXqjoeOPt4KgRdp2m9Ek,3313
|
246
246
|
nucliadb/search/search/chat/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
|
247
|
-
nucliadb/search/search/chat/ask.py,sha256=
|
247
|
+
nucliadb/search/search/chat/ask.py,sha256=4Vi4yxnhjToPHZUtdUkFNAEuI85QgkyBXQkcRX-a_vA,37244
|
248
248
|
nucliadb/search/search/chat/exceptions.py,sha256=Siy4GXW2L7oPhIR86H3WHBhE9lkV4A4YaAszuGGUf54,1356
|
249
249
|
nucliadb/search/search/chat/images.py,sha256=PA8VWxT5_HUGfW1ULhKTK46UBsVyINtWWqEM1ulzX1E,3095
|
250
250
|
nucliadb/search/search/chat/prompt.py,sha256=Jnja-Ss7skgnnDY8BymVfdeYsFPnIQFL8tEvcRXTKUE,47356
|
@@ -354,8 +354,8 @@ nucliadb/writer/tus/local.py,sha256=7jYa_w9b-N90jWgN2sQKkNcomqn6JMVBOVeDOVYJHto,
|
|
354
354
|
nucliadb/writer/tus/s3.py,sha256=vF0NkFTXiXhXq3bCVXXVV-ED38ECVoUeeYViP8uMqcU,8357
|
355
355
|
nucliadb/writer/tus/storage.py,sha256=ToqwjoYnjI4oIcwzkhha_MPxi-k4Jk3Lt55zRwaC1SM,2903
|
356
356
|
nucliadb/writer/tus/utils.py,sha256=MSdVbRsRSZVdkaum69_0wku7X3p5wlZf4nr6E0GMKbw,2556
|
357
|
-
nucliadb-6.3.4.
|
358
|
-
nucliadb-6.3.4.
|
359
|
-
nucliadb-6.3.4.
|
360
|
-
nucliadb-6.3.4.
|
361
|
-
nucliadb-6.3.4.
|
357
|
+
nucliadb-6.3.4.post3769.dist-info/METADATA,sha256=3yi784IVKCq1hDA5dt7jxVLfDJ6P8kCcGxL38k64JZ4,4291
|
358
|
+
nucliadb-6.3.4.post3769.dist-info/WHEEL,sha256=L0N565qmK-3nM2eBoMNFszYJ_MTx03_tQ0CQu1bHLYo,91
|
359
|
+
nucliadb-6.3.4.post3769.dist-info/entry_points.txt,sha256=XqGfgFDuY3zXQc8ewXM2TRVjTModIq851zOsgrmaXx4,1268
|
360
|
+
nucliadb-6.3.4.post3769.dist-info/top_level.txt,sha256=hwYhTVnX7jkQ9gJCkVrbqEG1M4lT2F_iPQND1fCzF80,20
|
361
|
+
nucliadb-6.3.4.post3769.dist-info/RECORD,,
|
File without changes
|
File without changes
|