Is there a way we could do a asynchronous query to weaviate?
# instead of
self.client.query.multi_get(get_builders).do()
# do a async call to perform a query
await self.client.query.multi_get(get_builders).do()
Basically making use of asyncio (asyncio — Asynchronous I/O — Python 3.11.5 documentation)