byaldi
byaldi copied to clipboard
Use late-interaction multi-modal models such as ColPali in just a few lines of code.
When installing the package with ```pip install byaldi``` the integrations folder is not installed. The folder is indeed missing in the .tar.gz and .whl files on [PyPi](https://pypi.org/project/Byaldi/#files)
Hello. I have the index saved to disk (4 json.gz files, and one embeddings_0.pt file). `from_index()` takes anywhere between 15-30 seconds, which seems like a long time, given that the...
Why === Currently if you pass in the `device` arg to `from_pretrained`, there is a logic bug which makes it get resolved to something else unnecessarily based on the device...
I downloaded the models manually, is byaldi does automatically is not working in my case (guess that I don't know where to put the hugging face token). So, where should...
Hey Team, Can I expect removal of index functionality any time soon? I'm really in need of this.
Currently, Byaldi requires local inference by `RAG = RAGMultiModalModel.from_pretrained("vidore/colpali-v1.2")`. Can you refactor the `RAGMultiModalModel` class to call a remote VLLM API to complete the work? E.g. `RAGMultiModalModel.from_api("https://localhost:3000/v1/completions")`.
Is this normal for 1 pdf file with 15 pages for `vidore/colqwen2-v0.1` model ```sh CUDA out of memory. Tried to allocate 59.39 GiB. GPU 0 has a total capacity of...
I am trying to run the model in Jupyter notebook.  1. In the above iteration I haven't initialized the model.  2. Now I run the cell the model...
I have a microservice that exposes some endpoints to interact with the model (like vllm or similar). How can I use my external model with Byaldi?
For #30 I basically used Claude to refactor the classes, no breaking changes introduced to the existing api, RAGMultiModalModel will internally use IndexManager (can also be a wrapper over a...