Michele Dolfi

Results 178 comments of Michele Dolfi

The parallelism comes from these two points: - https://github.com/docling-project/docling/blob/main/docling/models/api_vlm_model.py#L70 - https://github.com/docling-project/docling/blob/main/docling/models/picture_description_api_model.py#L63 The default is `concurrency=1`, so I don't really see where you see concurrent requests to Ollama. Do you have...

I think it could be possible. But we will have to still limit python 3.9 to

We have to update a few packages with the proper pinning, but I think it is doable. See here https://github.com/DS4SD/docling-ibm-models/pull/57

I was just testing on a fresh install, and I cannot reproduce the error above. ```sh $ python3.12 -m venv venv $ source ./venv/bin/activate $ pip install docling $ docling...

@simjak which torch version did you install? ```sh $ pip freeze|grep torch torch==2.5.1 torchvision==0.20.1 ```

I guess this is the newest version one can use on Intel Mac, right? So we might consider some conditional markers in that case.

Is this a duplicate https://github.com/DS4SD/docling/issues/106?

In a few places we started using `ca_cert` as an additional argument, see e.g. https://github.com/docling-project/docling-serve/blob/main/docling_serve/datamodel/kfp.py#L7. We could indeed add other extra params. I was anyway wondering if the `ssl` package...

Did you try this example? https://ds4sd.github.io/docling/examples/export_figures/

Thanks for the PR. For letting the test pass, you have to apply the pre-commit hooks, see [CONTRIBUTING.md](https://github.com/DS4SD/docling/blob/main/CONTRIBUTING.md#coding-style-guidelines) ```console pre-commit run --all-files ```