File tree Expand file tree Collapse file tree 7 files changed +2355
-2276
lines changed Expand file tree Collapse file tree 7 files changed +2355
-2276
lines changed Original file line number Diff line number Diff line change 2121 NLTK_DATA : ${{ github.workspace }}/nltk_data
2222 steps :
2323 - uses : ' actions/checkout@v4'
24+ with :
25+ fetch-depth : 0
2426 - name : Install uv
2527 uses : astral-sh/setup-uv@v5
2628 with :
Original file line number Diff line number Diff line change 1+ ## [ 1.2.19]
2+
3+ * ** fix: Pinned aibotocore to skip version that's incompatible with recent botocore version**
4+
15## [ 1.2.18]
26
37* ** feat: add configurable Bedrock inference profile support**
Original file line number Diff line number Diff line change 11from pathlib import Path
22
3+ from unstructured_ingest .processes .connectors .opensearch import (
4+ CONNECTOR_TYPE ,
5+ OpenSearchAccessConfig ,
6+ OpenSearchConnectionConfig ,
7+ OpenSearchUploaderConfig ,
8+ OpenSearchUploadStagerConfig ,
9+ )
10+
311from unstructured_ingest .interfaces import ProcessorConfig
412from unstructured_ingest .pipeline .pipeline import Pipeline
513from unstructured_ingest .processes .chunker import ChunkerConfig
816 LocalDownloaderConfig ,
917 LocalIndexerConfig ,
1018)
11- from unstructured_ingest .processes .connectors .opensearch import (
12- CONNECTOR_TYPE ,
13- OpenSearchAccessConfig ,
14- OpenSearchConnectionConfig ,
15- OpenSearchUploaderConfig ,
16- OpenSearchUploadStagerConfig ,
17- )
1819from unstructured_ingest .processes .embedder import EmbedderConfig
1920from unstructured_ingest .processes .partitioner import PartitionerConfig
2021
Original file line number Diff line number Diff line change 11from pathlib import Path
22
3+ from unstructured_ingest .processes .connectors .singlestore import (
4+ CONNECTOR_TYPE ,
5+ SingleStoreAccessConfig ,
6+ SingleStoreConnectionConfig ,
7+ SingleStoreUploaderConfig ,
8+ SingleStoreUploadStagerConfig ,
9+ )
10+
311from unstructured_ingest .interfaces import ProcessorConfig
412from unstructured_ingest .pipeline .pipeline import Pipeline
513from unstructured_ingest .processes .chunker import ChunkerConfig
816 LocalDownloaderConfig ,
917 LocalIndexerConfig ,
1018)
11- from unstructured_ingest .processes .connectors .singlestore import (
12- CONNECTOR_TYPE ,
13- SingleStoreAccessConfig ,
14- SingleStoreConnectionConfig ,
15- SingleStoreUploaderConfig ,
16- SingleStoreUploadStagerConfig ,
17- )
1819from unstructured_ingest .processes .embedder import EmbedderConfig
1920from unstructured_ingest .processes .partitioner import PartitionerConfig
2021
Original file line number Diff line number Diff line change 22
33boto3
44aioboto3
5+ aiobotocore[boto3]!=2.24.2 # incompatible with recent versions of botocore
Original file line number Diff line number Diff line change 1- __version__ = "1.2.18 " # pragma: no cover
1+ __version__ = "1.2.19 " # pragma: no cover
You can’t perform that action at this time.
0 commit comments