unstructured-ingest 1.0.14__py3-none-any.whl → 1.0.15__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 unstructured-ingest might be problematic. Click here for more details.
- unstructured_ingest/__version__.py +1 -1
- unstructured_ingest/embed/bedrock.py +2 -2
- {unstructured_ingest-1.0.14.dist-info → unstructured_ingest-1.0.15.dist-info}/METADATA +1 -1
- {unstructured_ingest-1.0.14.dist-info → unstructured_ingest-1.0.15.dist-info}/RECORD +7 -7
- {unstructured_ingest-1.0.14.dist-info → unstructured_ingest-1.0.15.dist-info}/WHEEL +0 -0
- {unstructured_ingest-1.0.14.dist-info → unstructured_ingest-1.0.15.dist-info}/entry_points.txt +0 -0
- {unstructured_ingest-1.0.14.dist-info → unstructured_ingest-1.0.15.dist-info}/licenses/LICENSE.md +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.0.
|
|
1
|
+
__version__ = "1.0.15" # pragma: no cover
|
|
@@ -96,8 +96,8 @@ class BedrockEmbeddingConfig(EmbeddingConfig):
|
|
|
96
96
|
try:
|
|
97
97
|
model_info = client.list_foundation_models(byOutputModality="EMBEDDING")
|
|
98
98
|
summaries = model_info.get("modelSummaries", [])
|
|
99
|
-
model_ids = [m["modelId"]
|
|
100
|
-
arns = [":".join(m["modelArn"]
|
|
99
|
+
model_ids = [m["modelId"] for m in summaries]
|
|
100
|
+
arns = [":".join(m["modelArn"]) for m in summaries]
|
|
101
101
|
|
|
102
102
|
if self.embedder_model_name not in model_ids and self.embedder_model_name not in arns:
|
|
103
103
|
raise UserError(
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
unstructured_ingest/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
2
|
-
unstructured_ingest/__version__.py,sha256=
|
|
2
|
+
unstructured_ingest/__version__.py,sha256=oGOfVxqR9-1jTBJa12PKKVu0cnuxJyM_nJIiJM33B_A,43
|
|
3
3
|
unstructured_ingest/error.py,sha256=qDncnJgbf5ils956RcO2CGlAKYDT5OaEM9Clv1JVTNc,1448
|
|
4
4
|
unstructured_ingest/errors_v2.py,sha256=9RuRCi7lbDxCguDz07y5RiHoQiFIOWwOD7xqzJ2B3Yw,436
|
|
5
5
|
unstructured_ingest/logger.py,sha256=7e_7UeK6hVOd5BQ6i9NzRUAPCS_DF839Y8TjUDywraY,1428
|
|
@@ -23,7 +23,7 @@ unstructured_ingest/data_types/entities.py,sha256=ECc6EkZ5_ZUvK7uaALYOynfFmofIrH
|
|
|
23
23
|
unstructured_ingest/data_types/file_data.py,sha256=J0RQa7YXhhxiLVzhPbF5Hl2nzSpxLFK9vrP6RTBWlSg,3833
|
|
24
24
|
unstructured_ingest/embed/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
25
|
unstructured_ingest/embed/azure_openai.py,sha256=_-I-nwd-wdCiKkSdYBL4UKrTZ2UPWsM_0T69fcObs_I,1707
|
|
26
|
-
unstructured_ingest/embed/bedrock.py,sha256=
|
|
26
|
+
unstructured_ingest/embed/bedrock.py,sha256=AjOMSZakPrGvVUEOacnTbhuE1Ka5MdRZgOnK7Qb2lhY,8931
|
|
27
27
|
unstructured_ingest/embed/huggingface.py,sha256=vJeTVeLzPU0mksmZHz-4v9TCtdiNt-d9bsHPbzhpyV8,2253
|
|
28
28
|
unstructured_ingest/embed/interfaces.py,sha256=Y3PLhgWnMDmtpugE37hlAiBIbC8izrFFXXkrPVby-HY,5137
|
|
29
29
|
unstructured_ingest/embed/mixedbreadai.py,sha256=_rqH5sZspKbMM1naSU5zYFgEULzZivtc3-5RrgZErpE,4486
|
|
@@ -231,8 +231,8 @@ unstructured_ingest/utils/ndjson.py,sha256=nz8VUOPEgAFdhaDOpuveknvCU4x82fVwqE01q
|
|
|
231
231
|
unstructured_ingest/utils/pydantic_models.py,sha256=BT_j15e4rX40wQbt8LUXbqfPhA3rJn1PHTI_G_A_EHY,1720
|
|
232
232
|
unstructured_ingest/utils/string_and_date_utils.py,sha256=oXOI6rxXq-8ncbk7EoJK0WCcTXWj75EzKl8pfQMID3U,2522
|
|
233
233
|
unstructured_ingest/utils/table.py,sha256=WZechczgVFvlodUWFcsnCGvBNh1xRm6hr0VbJTPxKAc,3669
|
|
234
|
-
unstructured_ingest-1.0.
|
|
235
|
-
unstructured_ingest-1.0.
|
|
236
|
-
unstructured_ingest-1.0.
|
|
237
|
-
unstructured_ingest-1.0.
|
|
238
|
-
unstructured_ingest-1.0.
|
|
234
|
+
unstructured_ingest-1.0.15.dist-info/METADATA,sha256=FLLtR4NPVBbafV9aTVcwguRub-D_xwmHwQmPWDAGmXU,8720
|
|
235
|
+
unstructured_ingest-1.0.15.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
236
|
+
unstructured_ingest-1.0.15.dist-info/entry_points.txt,sha256=gUAAFnjFPnBgThJSEbw0N5ZjxtaKlT1s9e05_arQrNw,70
|
|
237
|
+
unstructured_ingest-1.0.15.dist-info/licenses/LICENSE.md,sha256=SxkKP_62uIAKb9mb1eH7FH4Kn2aYT09fgjKpJt5PyTk,11360
|
|
238
|
+
unstructured_ingest-1.0.15.dist-info/RECORD,,
|
|
File without changes
|
{unstructured_ingest-1.0.14.dist-info → unstructured_ingest-1.0.15.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{unstructured_ingest-1.0.14.dist-info → unstructured_ingest-1.0.15.dist-info}/licenses/LICENSE.md
RENAMED
|
File without changes
|