Welcome to Aryn!#
Aryn is an LLM-powered data preparation, processing, and analytics system for complex, unstructured documents like PDFs, HTML, presentations, and more. With Aryn, you can prepare data for GenAI and RAG applications, power high-quality document processing workflows, and run analytics on large document collections with natural language. It includes two components: The Aryn Partitioning Service and Sycamore.
The Aryn Partitioning Service (APS) is a serverless, GPU-powered API for segmenting and labeling PDF documents, doing OCR, and extracting tables and images. It returns the output in JSON. APS runs the Aryn Partitioner and its state-of-the-art, open source deep learning AI model trained on 80k+ enterprise documents. You can use it to partition documents and extract information directly in your code, or use it with Sycamore for additional processing. Sign-up here for free to get an API Key and use the Aryn Playground to visually see how it segments and processes your own documents. Or, watch the Aryn Partitioning Service in action in this video.
Sycamore is a document processing engine covered under the Apache v2.0 license. It's built for complex unstructured data, such as documents, presentations, transcripts, embedded tables, and internal knowledge repositories. Sycamore provides a declarative dataflow abstraction called a DocSet to make manipulating unstructured documents easy and scalable. It’s similar in style to Apache Spark and Pandas, but for collections of unstructured documents. DocSets can be used not only for extracting, enriching, summarizing, and cleaning unstructured data, but also for running powerful analytics on these datasets.
Sycamore uses LLM-powered transforms, and you can choose the model to leverage. It can handle complex documents with embedded tables, figures, graphs, and other infographics. For ETL use cases, Sycamore reliably generates vector embeddings with the model of your choice, and loads vector databases and search engines like Pinecone, OpenSearch, Weaviate, Elasticsearch, Qdrant and more.
Key Features
Powerful and accurate document segmentation for complex documents with tables, images, text, infographics, and more. Aryn’s vision-based segmentation models provide 11+ class labels, and are up to 6x better in mean average precision (mAP) and 4x better in mean average recall (mAR) than existing solutions.
Developer-focused reliable and flexible document processing engine with Sycamore. Similar to Apache Spark, but for handling and processing unstructured document collections at scale. Easily process document collections using sophisticated data transforms and LLMs, while maintaining overall document lineage using Sycamore’s DocSet abstraction. Create better chunks and extract higher quality metadata, leading to 30% better recall and 2x better accuracy on real-world use cases.
Scalable, fault-tolerant, and reliable loading of vector DBs and search indexes. Generate vector embeddings using your choice of model, easily build knowledge graphs, and other output formats from your unstructured data. Targets include leading engines like Elasticsearch, OpenSearch, Weaviate, Pinecone, DuckDB, Qdrant and more. Aryn can seamlessly handle millions of documents.
Plug-and-Play LLMs. Use different LLMs for entity extraction, vector embedding, and post-processing steps.
Getting Started#
Aryn Partitioning Service#
Sign-up here for free to get an API Key.
You will need an Aryn Cloud API key, which you can get for free here. You will recieve the API key in your email inbox.
Next, you can:
Use the Aryn Playground: Visit the Playground and use the UI to see how the service segments, lables, and extracts data from your documents.
Use the Aryn SDK:
Install the Aryn SDK using
pip
:
pip install aryn-sdk
Then, partition your document:
from aryn_sdk.partition import partition_file
with open("mydocument.pdf", "rb") as f:
data = partition_file(f)
You can specify additional options (e.g. table extraction), and a list of these options is here.
Sycamore#
Install Sycamore with
pip
:
pip install sycamore-ai
Support for vector databases can be installed using extras. For example,
pip install sycamore-ai[opensearch]
will install Sycamore with OpenSearch support. You can find a list of supported connectors here.
By default, Sycamore works with the Aryn Partitioning Service to process PDFs. you can sign-up here for free to get an API Key. To install support for local partitioning and embedding models, you can install Sycamore with the local-inference
extra:
pip install sycamore-ai[local-inference]
You can now create and run Sycamore scripts to process your documents and unstructured data. This notebook demonstrates a variety of Sycamore data transforms and loads an OpenSearch hybrid search index.
More Resources#
Join the Aryn / Sycamore Slack workspace: https://join.slack.com/t/sycamore-ulj8912/shared_invite/zt-23sv0yhgy-MywV5dkVQ~F98Aoejo48Jg
Watch the intro video to the Aryn Partitioning Service: https://www.aryn.ai/?name=ArynPartitioningService_Intro
Sign up for the Aryn Partitioning Service: https://aryn.ai/get-started
Use the Aryn Playground to experiment with the Partitioning Service: https://play.aryn.cloud/partitioning
View the Sycamore GitHub: https://github.com/aryn-ai/sycamore