Hi, Is there any way to disable the "Retrieval" and "Augmentation" part when sending a query?
query_engine = index.as_query_engine()
response = query_engine.query("What did the author do growing up?")
So I would like to send this question directly to my LLM and get a response, without any type of augmentation. I know this is not the purpose of using LLAMAINDEX, but this can help me in debugging as I would like to see what is raw response without augmentation?