Skip to content

Commit 1666a79

Browse files
fix: align unstructured-client version with pyproject.toml
unstructured-client>=0.44.0 requires pydantic>=2.12.5, but OGX uses pydantic<2.12.0. Use >=0.25.0,<0.44.0 to avoid conflict. Addresses review feedback from @cdoern
1 parent 0c413bc commit 1666a79

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ogx/providers/registry/file_processors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def available_providers() -> list[ProviderSpec]:
197197
api=Api.file_processors,
198198
provider_type="remote::unstructured-api",
199199
adapter_type="unstructured-api",
200-
pip_packages=["unstructured-client>=0.44.0"],
200+
pip_packages=["unstructured-client>=0.25.0,<0.44.0"],
201201
module="ogx.providers.remote.file_processor.unstructured_api",
202202
config_class="ogx.providers.remote.file_processor.unstructured_api.UnstructuredApiFileProcessorConfig",
203203
api_dependencies=[Api.files],

0 commit comments

Comments
 (0)