The community member asked if it is possible to use retrieval with batch. Another community member responded that it is not possible to do batch retrieval, but you can do async retrieval (assuming the vector store supports it). They provided an example code snippet using index.as_retriever(similarity_top_k=2) and nodes = await retriever.aretrieve("query"). Other community members thanked the first responder and asked if the code snippet was correct.