Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@ For more information take a look at our [Getting Started with Parxy tutorial](./
| [**pdfplumber**](https://github.com/jsvine/pdfplumber) | `pdfplumber` | ✅ | ✅ | Preview |
| [**PDFMiner**](https://github.com/pdfminer/pdfminer.six) | `pdfminer` | ✅ | ✅ | Preview |
| [**Docling**](https://docling-project.github.io/docling/) | `docling` | ✅ | ✅ | Preview |
| [**LiteParse**](https://github.com/run-llama/liteparse) | `liteparse` | ✅ | ✅ | Preview |
| [**Reducto**](https://reducto.ai/) | `reducto` | ✅ | ✅ | Preview |
| [**Unstructured.io** cloud service](https://docs.unstructured.io/open-source/introduction/overview) | | | | Planned |
| [**Chunkr**](https://www.chunkr.ai/) | | | | Planned |

Expand Down
1 change: 1 addition & 0 deletions docs/supported_services.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Parxy supports the following document processing services and libraries. The **E
| [**PDFMiner**](https://github.com/pdfminer/pdfminer.six) | Preview | `pdfminer` | ✅ | ✅ |
| [**Docling**](https://docling-project.github.io/docling/) | Preview | `docling` | ✅ | ✅ |
| [**LiteParse**](https://github.com/run-llama/liteparse) | Preview | `liteparse` | ✅ | ✅ |
| [**Reducto**](https://reducto.ai/) | Preview | `reducto` | ✅ | ✅ |

Status meanings: **Live** = stable; **Preview** = functional but the API may change.

Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ pdfminer = [
docling = [
"docling-slim[service-client]>=2.93.0",
]
reducto = [
"reductoai>=0.22.0",
]
all = [
"llama-cloud>=2.0.0",
"llmwhisperer-client>=2.4.2",
Expand All @@ -68,6 +71,7 @@ all = [
"pdfplumber>=0.11.0",
"pdfminer.six>=20251230",
"docling-slim[service-client]>=2.93.0",
"reductoai>=0.22.0",
]


Expand Down
1 change: 1 addition & 0 deletions src/parxy_core/drivers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
from parxy_core.drivers.pdfminer import PDFMinerDriver as PDFMinerDriver
from parxy_core.drivers.docling import DoclingDriver as DoclingDriver
from parxy_core.drivers.liteparse import LiteParseDriver as LiteParseDriver
from parxy_core.drivers.reducto import ReductoDriver as ReductoDriver
6 changes: 6 additions & 0 deletions src/parxy_core/drivers/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@
from parxy_core.drivers.pdfminer import PDFMinerDriver
from parxy_core.drivers.docling import DoclingDriver
from parxy_core.drivers.liteparse import LiteParseDriver
from parxy_core.drivers.reducto import ReductoDriver
from parxy_core.models import (
PdfActConfig,
LandingAIConfig,
LlamaParseConfig,
LlmWhispererConfig,
UnstructuredLocalConfig,
LiteParseConfig,
ReductoConfig,
ParxyConfig,
DoclingConfig,
)
Expand Down Expand Up @@ -231,6 +233,9 @@ def _create_docling_driver(self) -> DoclingDriver:
def _create_liteparse_driver(self) -> LiteParseDriver:
return LiteParseDriver(config=LiteParseConfig(), logger=self._logger)

def _create_reducto_driver(self) -> ReductoDriver:
return ReductoDriver(config=ReductoConfig(), logger=self._logger)

def _create_landingai_driver(self) -> LandingAIADEDriver:
"""Create a LandingAI ADE Driver instance.

Expand Down Expand Up @@ -310,6 +315,7 @@ def get_supported_drivers(self) -> List[str]:
'pdfminer',
'docling',
'liteparse',
'reducto',
]

return supported_drivers
Expand Down
Loading