meilisearch_python_async has an add_documents_in_batches method that takes advantage of Python's asyncio.gather functionality and should improve performance with adding batches. This PR switches from add_documents to add_documents_in_batches to take advantage of that.
meilisearch_python_async
has anadd_documents_in_batches
method that takes advantage of Python'sasyncio.gather
functionality and should improve performance with adding batches. This PR switches fromadd_documents
toadd_documents_in_batches
to take advantage of that.