How can I view the nodes or I guess the result of the chunks
after creating a vector query index?
I'm running into an issue where in the service context if I pass in a
chunk_size of 512
I am able to get proper results from similarity search. But when I don't pass anything into the service context, which I assume the
chunk_size is 1024 by default
from llama index, I am getting no results back so I'd like to see what the chunks end up looking like to see whats wrong.
vector_query_engine_index = VectorStoreIndex.from_documents(documents, use_async=True,
service_context=service_context
)