-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7130b17
commit 4a1d5ec
Showing
144 changed files
with
231 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.astra import ( | ||
AstraAccessConfig, | ||
AstraWriteConfig, | ||
SimpleAstraConfig, | ||
) | ||
from unstructured.ingest.connector.local import SimpleLocalConfig | ||
from unstructured.ingest.interfaces import ( | ||
ChunkingConfig, | ||
EmbeddingConfig, | ||
PartitionConfig, | ||
ProcessorConfig, | ||
ReadConfig, | ||
) | ||
from unstructured.ingest.runner import LocalRunner | ||
from unstructured.ingest.runner.writers.astra import ( | ||
AstraWriter, | ||
) | ||
from unstructured.ingest.runner.writers.base_writer import Writer | ||
|
||
|
||
def get_writer() -> Writer: | ||
return AstraWriter( | ||
connector_config=SimpleAstraConfig( | ||
access_config=AstraAccessConfig( | ||
token=os.getenv("ASTRA_DB_TOKEN"), api_endpoint=os.getenv("ASTRA_DB_ENDPOINT") | ||
), | ||
collection_name="test_collection", | ||
embedding_dimension=384, | ||
), | ||
write_config=AstraWriteConfig(batch_size=80), | ||
) | ||
|
||
|
||
if __name__ == "__main__": | ||
writer = get_writer() | ||
runner = LocalRunner( | ||
processor_config=ProcessorConfig( | ||
verbose=True, | ||
output_dir="local-output-to-astra", | ||
num_processes=2, | ||
), | ||
connector_config=SimpleLocalConfig( | ||
input_path="example-docs/book-war-and-peace-1p.txt", | ||
), | ||
read_config=ReadConfig(), | ||
partition_config=PartitionConfig(), | ||
chunking_config=ChunkingConfig(chunk_elements=True), | ||
embedding_config=EmbeddingConfig( | ||
provider="langchain-huggingface", | ||
), | ||
writer=writer, | ||
writer_kwargs={}, | ||
) | ||
runner.run() | ||
``` |
2 changes: 1 addition & 1 deletion
2
snippets/destination_connectors/astra.sh.mdx → snippets/destination_connectors/astra.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
EMBEDDING_PROVIDER=${EMBEDDING_PROVIDER:-"langchain-huggingface"} | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/destination_connectors/azure.py.mdx → snippets/destination_connectors/azure.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
from unstructured.ingest.connector.fsspec.azure import ( | ||
AzureAccessConfig, | ||
AzureWriteConfig, | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/destination_connectors/azure.sh.mdx → snippets/destination_connectors/azure.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
EMBEDDING_PROVIDER=${EMBEDDING_PROVIDER:-"langchain-huggingface"} | ||
|
2 changes: 1 addition & 1 deletion
2
..._connectors/azure_cognitive_search.py.mdx → ...tion_connectors/azure_cognitive_search.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.azure_cognitive_search import ( | ||
|
2 changes: 1 addition & 1 deletion
2
..._connectors/azure_cognitive_search.sh.mdx → ...tion_connectors/azure_cognitive_search.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
EMBEDDING_PROVIDER=${EMBEDDING_PROVIDER:-"langchain-huggingface"} | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/destination_connectors/box.py.mdx → snippets/destination_connectors/box.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.fsspec.box import ( | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/destination_connectors/box.sh.mdx → snippets/destination_connectors/box.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
EMBEDDING_PROVIDER=${EMBEDDING_PROVIDER:-"langchain-huggingface"} | ||
|
2 changes: 1 addition & 1 deletion
2
...pets/destination_connectors/chroma.py.mdx → snippets/destination_connectors/chroma.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
from unstructured.ingest.connector.chroma import ( | ||
ChromaAccessConfig, | ||
ChromaWriteConfig, | ||
|
2 changes: 1 addition & 1 deletion
2
...pets/destination_connectors/chroma.sh.mdx → snippets/destination_connectors/chroma.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
unstructured-ingest \ | ||
|
2 changes: 1 addition & 1 deletion
2
...ts/destination_connectors/clarifai.py.mdx → snippets/destination_connectors/clarifai.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
from unstructured.ingest.connector.clarifai import ( | ||
ClarifaiAccessConfig, | ||
ClarifaiWriteConfig, | ||
|
2 changes: 1 addition & 1 deletion
2
...ts/destination_connectors/clarifai.sh.mdx → snippets/destination_connectors/clarifai.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
unstructured-ingest \ | ||
|
2 changes: 1 addition & 1 deletion
2
...tion_connectors/databricks_volumes.py.mdx → ...tination_connectors/databricks_volumes.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.databricks_volumes import ( | ||
|
2 changes: 1 addition & 1 deletion
2
...tion_connectors/databricks_volumes.sh.mdx → ...tination_connectors/databricks_volumes.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
unstructured-ingest \ | ||
|
2 changes: 1 addition & 1 deletion
2
...destination_connectors/delta_table.py.mdx → ...ets/destination_connectors/delta_table.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...destination_connectors/delta_table.sh.mdx → ...ets/destination_connectors/delta_table.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
EMBEDDING_PROVIDER=${EMBEDDING_PROVIDER:-"langchain-huggingface"} | ||
|
2 changes: 1 addition & 1 deletion
2
...ets/destination_connectors/dropbox.py.mdx → snippets/destination_connectors/dropbox.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.fsspec.dropbox import ( | ||
|
2 changes: 1 addition & 1 deletion
2
...ets/destination_connectors/dropbox.sh.mdx → snippets/destination_connectors/dropbox.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
EMBEDDING_PROVIDER=${EMBEDDING_PROVIDER:-"langchain-huggingface"} | ||
|
2 changes: 1 addition & 1 deletion
2
...stination_connectors/elasticsearch.py.mdx → ...s/destination_connectors/elasticsearch.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.elasticsearch import ( | ||
|
2 changes: 1 addition & 1 deletion
2
...stination_connectors/elasticsearch.sh.mdx → ...s/destination_connectors/elasticsearch.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
EMBEDDING_PROVIDER=${EMBEDDING_PROVIDER:-"langchain-huggingface"} | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/destination_connectors/gcs.py.mdx → snippets/destination_connectors/gcs.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.fsspec.gcs import ( | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/destination_connectors/gcs.sh.mdx → snippets/destination_connectors/gcs.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
EMBEDDING_PROVIDER=${EMBEDDING_PROVIDER:-"langchain-huggingface"} | ||
|
2 changes: 1 addition & 1 deletion
2
...ets/destination_connectors/mongodb.py.mdx → snippets/destination_connectors/mongodb.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.local import SimpleLocalConfig | ||
|
2 changes: 1 addition & 1 deletion
2
...ets/destination_connectors/mongodb.sh.mdx → snippets/destination_connectors/mongodb.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
EMBEDDING_PROVIDER=${EMBEDDING_PROVIDER:-"langchain-huggingface"} | ||
|
2 changes: 1 addition & 1 deletion
2
.../destination_connectors/opensearch.py.mdx → ...pets/destination_connectors/opensearch.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.elasticsearch import ( | ||
|
2 changes: 1 addition & 1 deletion
2
.../destination_connectors/opensearch.sh.mdx → ...pets/destination_connectors/opensearch.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
EMBEDDING_PROVIDER=${EMBEDDING_PROVIDER:-"langchain-huggingface"} | ||
|
2 changes: 1 addition & 1 deletion
2
...ts/destination_connectors/pinecone.py.mdx → snippets/destination_connectors/pinecone.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.local import SimpleLocalConfig | ||
|
2 changes: 1 addition & 1 deletion
2
...ts/destination_connectors/pinecone.sh.mdx → snippets/destination_connectors/pinecone.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
EMBEDDING_PROVIDER=${EMBEDDING_PROVIDER:-"langchain-huggingface"} | ||
|
2 changes: 1 addition & 1 deletion
2
...pets/destination_connectors/qdrant.py.mdx → snippets/destination_connectors/qdrant.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...pets/destination_connectors/qdrant.sh.mdx → snippets/destination_connectors/qdrant.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
EMBEDDING_PROVIDER=${EMBEDDING_PROVIDER:-"langchain-huggingface"} | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/destination_connectors/s3.py.mdx → snippets/destination_connectors/s3.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
snippets/destination_connectors/s3.sh.mdx → snippets/destination_connectors/s3.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
EMBEDDING_PROVIDER=${EMBEDDING_PROVIDER:-"langchain-huggingface"} | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/destination_connectors/sql.py.mdx → snippets/destination_connectors/sql.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.interfaces import PartitionConfig, ProcessorConfig, ReadConfig | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/destination_connectors/sql.sh.mdx → snippets/destination_connectors/sql.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
unstructured-ingest \ | ||
|
2 changes: 1 addition & 1 deletion
2
...ets/destination_connectors/vectara.py.mdx → snippets/destination_connectors/vectara.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.local import SimpleLocalConfig | ||
|
2 changes: 1 addition & 1 deletion
2
...ets/destination_connectors/vectara.sh.mdx → snippets/destination_connectors/vectara.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
unstructured-ingest \ | ||
|
2 changes: 1 addition & 1 deletion
2
...ts/destination_connectors/weaviate.py.mdx → snippets/destination_connectors/weaviate.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ts/destination_connectors/weaviate.sh.mdx → snippets/destination_connectors/weaviate.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
EMBEDDING_PROVIDER=${EMBEDDING_PROVIDER:-"langchain-huggingface"} | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/airtable.py.mdx → snippets/source_connectors/airtable.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/airtable.sh.mdx → snippets/source_connectors/airtable.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
unstructured-ingest \ | ||
|
2 changes: 1 addition & 1 deletion
2
...ets/source_connectors/airtable_api.py.mdx → snippets/source_connectors/airtable_api.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ets/source_connectors/airtable_api.sh.mdx → snippets/source_connectors/airtable_api.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
unstructured-ingest \ | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/azure.py.mdx → snippets/source_connectors/azure.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/azure.sh.mdx → snippets/source_connectors/azure.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
unstructured-ingest \ | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/azure_api.py.mdx → snippets/source_connectors/azure_api.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.fsspec.azure import ( | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/azure_api.sh.mdx → snippets/source_connectors/azure_api.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
unstructured-ingest \ | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/biomed.py.mdx → snippets/source_connectors/biomed.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
from unstructured.ingest.connector.biomed import ( | ||
SimpleBiomedConfig, | ||
) | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/biomed.sh.mdx → snippets/source_connectors/biomed.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
unstructured-ingest \ | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/biomed_api.py.mdx → snippets/source_connectors/biomed_api.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.biomed import ( | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/biomed_api.sh.mdx → snippets/source_connectors/biomed_api.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
unstructured-ingest \ | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/box.py.mdx → snippets/source_connectors/box.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.fsspec.box import BoxAccessConfig, SimpleBoxConfig | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/box.sh.mdx → snippets/source_connectors/box.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
|
||
unstructured-ingest \ | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/box_api.py.mdx → snippets/source_connectors/box_api.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```python | ||
``` | ||
import os | ||
|
||
from unstructured.ingest.connector.fsspec.box import BoxAccessConfig, SimpleBoxConfig | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/box_api.sh.mdx → snippets/source_connectors/box_api.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
|
||
unstructured-ingest \ | ||
|
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/confluence.py.mdx → snippets/source_connectors/confluence.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
snippets/source_connectors/confluence.sh.mdx → snippets/source_connectors/confluence.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
```bash | ||
``` | ||
#!/usr/bin/env bash | ||
|
||
unstructured-ingest \ | ||
|
2 changes: 1 addition & 1 deletion
2
...s/source_connectors/confluence_api.py.mdx → snippets/source_connectors/confluence_api.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.