diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0868a0d2e..b1dc5bfe4f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -504,4 +504,5 @@ jobs: uses: anchore/scan-action@v3 with: image: "unstructured:dev" - severity-cutoff: medium + # NOTE(robinson) - revert this to medium when we bump libreoffice + severity-cutoff: high diff --git a/CHANGELOG.md b/CHANGELOG.md index 60d35ec560..73725edd1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.14.4-dev1 +## 0.14.4-dev2 ### Enhancements @@ -6,6 +6,7 @@ ### Fixes +* **Clarified dependence on particular version of `python-docx`** Pinned `python-docx` version to ensure a particular method `unstructured` uses is included. * **Ingest preserves original file extension** Ingest V2 introduced a change that dropped the original extension for upgraded connectors. This reverts that change. ## 0.14.3 diff --git a/README.md b/README.md index 65960d2624..ca8d97c595 100644 --- a/README.md +++ b/README.md @@ -37,21 +37,7 @@

Open-Source Pre-Processing Tools for Unstructured Data

-The `unstructured` library provides open-source components for ingesting and pre-processing images and text documents, such as PDFs, HTML, Word docs, and [many more](https://unstructured-io.github.io/unstructured/core.html#partitioning). The use cases of `unstructured` revolve around streamlining and optimizing the data processing workflow for LLMs. `unstructured` modular functions and connectors form a cohesive system that simplifies data ingestion and pre-processing, making it adaptable to different platforms and efficient in transforming unstructured data into structured outputs. - -

-

API Announcement!

-

- -We are thrilled to announce our newly launched [Unstructured API](https://unstructured-io.github.io/unstructured/api.html), providing the Unstructured capabilities from `unstructured` as an API. Check out the [`unstructured-api` GitHub repository](https://github.com/Unstructured-IO/unstructured-api) to start making API calls. You’ll also find instructions about how to host your own API version. - -While access to the hosted Unstructured API will remain free, API Keys are required to make requests. To prevent disruption, get yours [here](https://unstructured.io/api-key) and start using it today! Check out the [`unstructured-api` README](https://github.com/Unstructured-IO/unstructured-api#--) to start making API calls.

- -#### :rocket: Beta Feature: Chipper Model - -We are releasing the beta version of our Chipper model to deliver superior performance when processing high-resolution, complex documents. To start using the Chipper model in your API request, you can utilize the `hi_res_model_name=chipper` parameter. Please refer to the documentation [here](https://unstructured-io.github.io/unstructured/api.html#beta-version-hi-res-strategy-with-chipper-model). - -As the Chipper model is in beta version, we welcome feedback and suggestions. For those interested in testing the Chipper model, we encourage you to connect with us on [Slack community](https://short.unstructured.io/pzw05l7). +The `unstructured` library provides open-source components for ingesting and pre-processing images and text documents, such as PDFs, HTML, Word docs, and [many more](https://docs.unstructured.io/open-source/core-functionality/partitioning). The use cases of `unstructured` revolve around streamlining and optimizing the data processing workflow for LLMs. `unstructured` modular functions and connectors form a cohesive system that simplifies data ingestion and pre-processing, making it adaptable to different platforms and efficient in transforming unstructured data into structured outputs. ## :eight_pointed_black_star: Quick Start @@ -182,29 +168,23 @@ This starts a docker container with your local repo mounted to `/mnt/local_unstr ## :clap: Quick Tour ### Documentation -This README overviews how to install, use and develop the library. For more comprehensive documentation, visit https://unstructured-io.github.io/unstructured/ . +For more comprehensive documentation, visit https://docs.unstructured.io . You can also learn +more about our other products on the documentation page, including our SaaS API. -### Concepts Guide +Here are a few pages from the [Open Source documentation page](https://docs.unstructured.io/open-source/introduction/overview) +that are helpful for new users to review: -The `unstructured` library includes core functionality for partitioning, chunking, cleaning, and -staging raw documents for NLP tasks. -You can see a complete list of available functions and how to use them from the [Core Functionality documentation](https://unstructured-io.github.io/unstructured/core.html). +- [Quick Start](https://docs.unstructured.io/open-source/introduction/quick-start) +- [Using the `unstructured` open source package](https://docs.unstructured.io/open-source/core-functionality/overview) +- [Connectors](https://docs.unstructured.io/open-source/ingest/overview) +- [Concepts](https://docs.unstructured.io/open-source/concepts/document-elements) +- [Integrations](https://docs.unstructured.io/open-source/integrations) -In general, these functions fall into several categories: -- *Partitioning* functions break raw documents into standard, structured elements. -- *Cleaning* functions remove unwanted text from documents, such as boilerplate and sentence fragments. -- *Staging* functions format data for downstream tasks, such as ML inference and data labeling. -- *Chunking* functions split documents into smaller sections for use in RAG apps and similarity - search. -- *Embedding* encoder classes provide an interfaces for easily converting preprocessed text to - vectors. - -The **Connectors** 🔗 in `unstructured` serve as vital links between the pre-processing pipeline and various data storage platforms. They allow for the batch processing of documents across various sources, including cloud services, repositories, and local directories. Each connector is tailored to a specific platform, such as Azure, Google Drive, or Github, and comes with unique commands and dependencies. To see the list of Connectors available in `unstructured` library, please check out the [Connectors GitHub folder](https://github.com/Unstructured-IO/unstructured/tree/main/unstructured/ingest/connector) and [documentation](https://unstructured-io.github.io/unstructured/ingest/index.html) ### PDF Document Parsing Example -The following examples show how to get started with the `unstructured` library. You can parse over a dozen document types with one line of code! Use this [Colab notebook](https://colab.research.google.com/drive/1U8VCjY2-x8c6y5TYMbSFtQGlQVFHCVIW) to run the example below. - -The easiest way to parse a document in unstructured is to use the `partition` function. If you use `partition` function, `unstructured` will detect the file type and route it to the appropriate file-specific partitioning function. If you are using the `partition` function, you may need to install additional parameters via `pip install unstructured[local-inference]`. Ensure you first install `libmagic` using the instructions outlined [here](https://unstructured-io.github.io/unstructured/installing.html#filetype-detection) `partition` will always apply the default arguments. If you need advanced features, use a document-specific partitioning function. +The following examples show how to get started with the `unstructured` library. The easiest way to parse a document in unstructured is to use the `partition` function. If you use `partition` function, `unstructured` will detect the file type and route it to the appropriate file-specific partitioning function. If you are using the `partition` function, you may need to install additional dependencies per doc type. +For example, to install docx dependencies you need to run `pip install "unstructured[docx]"`. +See our [installation guide](https://docs.unstructured.io/open-source/installation/full-installation) for more details. ```python from unstructured.partition.auto import partition @@ -245,7 +225,7 @@ Deep Learning(DL)-based approaches are the state-of-the-art for a wide range of including document image classification [11, ``` -See the [partitioning](https://unstructured-io.github.io/unstructured/core.html#partitioning) +See the [partitioning](https://docs.unstructured.io/open-source/core-functionality/partitioning) section in our documentation for a full list of options and instructions on how to use file-specific partitioning functions. @@ -263,7 +243,7 @@ Encountered a bug? Please create a new [GitHub issue](https://github.com/Unstruc | Section | Description | |-|-| | [Company Website](https://unstructured.io) | Unstructured.io product and company info | -| [Documentation](https://unstructured-io.github.io/unstructured) | Full API documentation | +| [Documentation](https://docs.unstructured.io/) | Full API documentation | | [Batch Processing](unstructured/ingest/README.md) | Ingesting batches of documents through Unstructured | ## :chart_with_upwards_trend: Analytics diff --git a/docs/source/404.rst b/docs/source/404.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/404.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/api.rst b/docs/source/api.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/api.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/apis/api_parameters.rst b/docs/source/apis/api_parameters.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/apis/api_parameters.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/apis/api_sdks.rst b/docs/source/apis/api_sdks.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/apis/api_sdks.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/apis/aws_marketplace.rst b/docs/source/apis/aws_marketplace.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/apis/aws_marketplace.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/apis/azure_marketplace.rst b/docs/source/apis/azure_marketplace.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/apis/azure_marketplace.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/apis/saas_api.rst b/docs/source/apis/saas_api.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/apis/saas_api.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/apis/usage_methods.rst b/docs/source/apis/usage_methods.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/apis/usage_methods.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/apis/validation_errors.rst b/docs/source/apis/validation_errors.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/apis/validation_errors.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/best_practices.rst b/docs/source/best_practices.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/best_practices.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/best_practices/models.rst b/docs/source/best_practices/models.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/best_practices/models.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/best_practices/strategies.rst b/docs/source/best_practices/strategies.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/best_practices/strategies.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/best_practices/table_extraction_pdf.rst b/docs/source/best_practices/table_extraction_pdf.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/best_practices/table_extraction_pdf.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/core.rst b/docs/source/core.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/core.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/core/chunking.rst b/docs/source/core/chunking.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/core/chunking.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/core/cleaning.rst b/docs/source/core/cleaning.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/core/cleaning.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/core/embedding.rst b/docs/source/core/embedding.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/core/embedding.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/core/extracting.rst b/docs/source/core/extracting.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/core/extracting.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/core/partition.rst b/docs/source/core/partition.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/core/partition.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/core/staging.rst b/docs/source/core/staging.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/core/staging.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/examples.rst b/docs/source/examples.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/examples.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/examples/chroma.rst b/docs/source/examples/chroma.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/examples/chroma.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/examples/databricks.rst b/docs/source/examples/databricks.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/examples/databricks.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/examples/dict_to_elements.rst b/docs/source/examples/dict_to_elements.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/examples/dict_to_elements.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/configs.rst b/docs/source/ingest/configs.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/configs.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/configs/chunking_config.rst b/docs/source/ingest/configs/chunking_config.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/configs/chunking_config.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/configs/embedding_config.rst b/docs/source/ingest/configs/embedding_config.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/configs/embedding_config.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/configs/fsspec_config.rst b/docs/source/ingest/configs/fsspec_config.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/configs/fsspec_config.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/configs/partition_config.rst b/docs/source/ingest/configs/partition_config.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/configs/partition_config.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/configs/permissions_config.rst b/docs/source/ingest/configs/permissions_config.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/configs/permissions_config.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/configs/processor_config.rst b/docs/source/ingest/configs/processor_config.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/configs/processor_config.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/configs/read_config.rst b/docs/source/ingest/configs/read_config.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/configs/read_config.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/configs/retry_strategy_config.rst b/docs/source/ingest/configs/retry_strategy_config.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/configs/retry_strategy_config.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors.rst b/docs/source/ingest/destination_connectors.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/astra.rst b/docs/source/ingest/destination_connectors/astra.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/astra.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/azure.rst b/docs/source/ingest/destination_connectors/azure.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/azure.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/azure_cognitive_search.rst b/docs/source/ingest/destination_connectors/azure_cognitive_search.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/azure_cognitive_search.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/box.rst b/docs/source/ingest/destination_connectors/box.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/box.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/chroma.rst b/docs/source/ingest/destination_connectors/chroma.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/chroma.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/clarifai.rst b/docs/source/ingest/destination_connectors/clarifai.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/clarifai.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/databricks_volumes.rst b/docs/source/ingest/destination_connectors/databricks_volumes.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/databricks_volumes.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/delta_table.rst b/docs/source/ingest/destination_connectors/delta_table.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/delta_table.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/dropbox.rst b/docs/source/ingest/destination_connectors/dropbox.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/dropbox.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/elasticsearch.rst b/docs/source/ingest/destination_connectors/elasticsearch.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/elasticsearch.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/gcs.rst b/docs/source/ingest/destination_connectors/gcs.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/gcs.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/mongodb.rst b/docs/source/ingest/destination_connectors/mongodb.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/mongodb.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/opensearch.rst b/docs/source/ingest/destination_connectors/opensearch.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/opensearch.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/pinecone.rst b/docs/source/ingest/destination_connectors/pinecone.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/pinecone.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/qdrant.rst b/docs/source/ingest/destination_connectors/qdrant.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/qdrant.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/s3.rst b/docs/source/ingest/destination_connectors/s3.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/s3.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/sql.rst b/docs/source/ingest/destination_connectors/sql.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/sql.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/vectara.rst b/docs/source/ingest/destination_connectors/vectara.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/vectara.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/destination_connectors/weaviate.rst b/docs/source/ingest/destination_connectors/weaviate.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/destination_connectors/weaviate.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/index.rst b/docs/source/ingest/index.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/index.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors.rst b/docs/source/ingest/source_connectors.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/airtable.rst b/docs/source/ingest/source_connectors/airtable.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/airtable.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/azure.rst b/docs/source/ingest/source_connectors/azure.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/azure.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/biomed.rst b/docs/source/ingest/source_connectors/biomed.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/biomed.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/box.rst b/docs/source/ingest/source_connectors/box.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/box.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/confluence.rst b/docs/source/ingest/source_connectors/confluence.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/confluence.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/delta_table.rst b/docs/source/ingest/source_connectors/delta_table.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/delta_table.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/discord.rst b/docs/source/ingest/source_connectors/discord.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/discord.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/dropbox.rst b/docs/source/ingest/source_connectors/dropbox.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/dropbox.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/elasticsearch.rst b/docs/source/ingest/source_connectors/elasticsearch.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/elasticsearch.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/github.rst b/docs/source/ingest/source_connectors/github.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/github.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/gitlab.rst b/docs/source/ingest/source_connectors/gitlab.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/gitlab.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/google_cloud_storage.rst b/docs/source/ingest/source_connectors/google_cloud_storage.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/google_cloud_storage.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/google_drive.rst b/docs/source/ingest/source_connectors/google_drive.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/google_drive.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/jira.rst b/docs/source/ingest/source_connectors/jira.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/jira.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/local_connector.rst b/docs/source/ingest/source_connectors/local_connector.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/local_connector.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/mongodb.rst b/docs/source/ingest/source_connectors/mongodb.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/mongodb.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/notion.rst b/docs/source/ingest/source_connectors/notion.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/notion.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/onedrive.rst b/docs/source/ingest/source_connectors/onedrive.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/onedrive.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/opensearch.rst b/docs/source/ingest/source_connectors/opensearch.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/opensearch.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/outlook.rst b/docs/source/ingest/source_connectors/outlook.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/outlook.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/reddit.rst b/docs/source/ingest/source_connectors/reddit.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/reddit.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/s3.rst b/docs/source/ingest/source_connectors/s3.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/s3.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/salesforce.rst b/docs/source/ingest/source_connectors/salesforce.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/salesforce.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/sftp.rst b/docs/source/ingest/source_connectors/sftp.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/sftp.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/sharepoint.rst b/docs/source/ingest/source_connectors/sharepoint.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/sharepoint.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/slack.rst b/docs/source/ingest/source_connectors/slack.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/slack.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/ingest/source_connectors/wikipedia.rst b/docs/source/ingest/source_connectors/wikipedia.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/ingest/source_connectors/wikipedia.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/installation/docker.rst b/docs/source/installation/docker.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/installation/docker.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/installation/full_installation.rst b/docs/source/installation/full_installation.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/installation/full_installation.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/installing.rst b/docs/source/installing.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/installing.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/integrations.rst b/docs/source/integrations.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/integrations.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/introduction.rst b/docs/source/introduction.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/introduction.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/introduction/getting_started.rst b/docs/source/introduction/getting_started.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/introduction/getting_started.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/introduction/key_concepts.rst b/docs/source/introduction/key_concepts.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/introduction/key_concepts.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/introduction/overview.rst b/docs/source/introduction/overview.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/introduction/overview.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/metadata.rst b/docs/source/metadata.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/metadata.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platform.rst b/docs/source/platform.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platform.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/destination_platform.rst b/docs/source/platforms/destination_platform.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/destination_platform.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/job.rst b/docs/source/platforms/job.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/job.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_destinations/amazon_s3_destination.rst b/docs/source/platforms/platform_destinations/amazon_s3_destination.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_destinations/amazon_s3_destination.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_destinations/azure_cognitive_search.rst b/docs/source/platforms/platform_destinations/azure_cognitive_search.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_destinations/azure_cognitive_search.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_destinations/chroma.rst b/docs/source/platforms/platform_destinations/chroma.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_destinations/chroma.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_destinations/databricks.rst b/docs/source/platforms/platform_destinations/databricks.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_destinations/databricks.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_destinations/elasticsearch_destination.rst b/docs/source/platforms/platform_destinations/elasticsearch_destination.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_destinations/elasticsearch_destination.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_destinations/google_cloud_destination.rst b/docs/source/platforms/platform_destinations/google_cloud_destination.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_destinations/google_cloud_destination.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_destinations/mongodb.rst b/docs/source/platforms/platform_destinations/mongodb.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_destinations/mongodb.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_destinations/opensearch.rst b/docs/source/platforms/platform_destinations/opensearch.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_destinations/opensearch.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_destinations/pinecone.rst b/docs/source/platforms/platform_destinations/pinecone.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_destinations/pinecone.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_destinations/postgresql.rst b/docs/source/platforms/platform_destinations/postgresql.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_destinations/postgresql.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_destinations/weaviate.rst b/docs/source/platforms/platform_destinations/weaviate.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_destinations/weaviate.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_sources/amazon_s3_source.rst b/docs/source/platforms/platform_sources/amazon_s3_source.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_sources/amazon_s3_source.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_sources/azure_blob.rst b/docs/source/platforms/platform_sources/azure_blob.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_sources/azure_blob.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_sources/elasticsearch_source.rst b/docs/source/platforms/platform_sources/elasticsearch_source.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_sources/elasticsearch_source.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_sources/google_cloud_source.rst b/docs/source/platforms/platform_sources/google_cloud_source.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_sources/google_cloud_source.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_sources/google_drive.rst b/docs/source/platforms/platform_sources/google_drive.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_sources/google_drive.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_sources/onedrive.rst b/docs/source/platforms/platform_sources/onedrive.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_sources/onedrive.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_sources/opensearch.rst b/docs/source/platforms/platform_sources/opensearch.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_sources/opensearch.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_sources/salesforce.rst b/docs/source/platforms/platform_sources/salesforce.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_sources/salesforce.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_sources/sftp.rst b/docs/source/platforms/platform_sources/sftp.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_sources/sftp.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/platform_sources/sharepoint.rst b/docs/source/platforms/platform_sources/sharepoint.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/platform_sources/sharepoint.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/source_platform.rst b/docs/source/platforms/source_platform.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/source_platform.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/docs/source/platforms/workflow.rst b/docs/source/platforms/workflow.rst new file mode 100644 index 0000000000..c32a73bbc7 --- /dev/null +++ b/docs/source/platforms/workflow.rst @@ -0,0 +1,6 @@ +Unstructured Documentation +========================== + +The Unstructured documentation page has moved! Check out our new and improved docs page at +`https://docs.unstructured.io `_ to learn more about our +products and tools. diff --git a/requirements/deps/constraints.txt b/requirements/deps/constraints.txt index 325252e403..570d4949f3 100644 --- a/requirements/deps/constraints.txt +++ b/requirements/deps/constraints.txt @@ -38,10 +38,6 @@ opencv-python==4.8.0.76 opencv-contrib-python==4.8.0.76 platformdirs==3.10.0 -# Note(scanny): partition_docx() uses table features added in python-docx v1.1.2. Added here since -# multiple formats have a python-docx dependency (docx, odt) -python-docx>=1.1.2 - # TODO: Constraint due to langchain, remove when that gets updated: packaging<24.0 diff --git a/requirements/extra-docx.in b/requirements/extra-docx.in index ea1062fe66..296b718aaa 100644 --- a/requirements/extra-docx.in +++ b/requirements/extra-docx.in @@ -1,4 +1,5 @@ -c ./deps/constraints.txt -c base.txt -python-docx +# Note(scanny): partition_docx() uses table features added in python-docx v1.1.2. +python-docx>=1.1.2 diff --git a/requirements/extra-odt.in b/requirements/extra-odt.in index 29f9e05124..727a76f5e2 100644 --- a/requirements/extra-odt.in +++ b/requirements/extra-odt.in @@ -1,5 +1,6 @@ -c ./deps/constraints.txt -c base.txt -python-docx +# Note(scanny): partition_docx() uses table features added in python-docx v1.1.2. +python-docx>=1.1.2 pypandoc diff --git a/setup.py b/setup.py index a51a842eaa..7adde89116 100644 --- a/setup.py +++ b/setup.py @@ -96,6 +96,7 @@ def load_requirements(file_list: Optional[Union[str, List[str]]] = None) -> List "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering :: Artificial Intelligence", ], author="Unstructured Technologies", diff --git a/unstructured/__version__.py b/unstructured/__version__.py index 23bad8442f..469f3223a0 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.14.4-dev1" # pragma: no cover +__version__ = "0.14.4-dev2" # pragma: no cover