I have a keyword graph built on top of vector indexes. Is there a way to add some data (meta data) to the response of each index before they are being forwarded to the graph which produces the final answer?
Another question that may help me achieving this from another direction: I added each paragraph the ID, so basically I tried running the query with response_mode='no_text'. The problem is that those nodes are not being put in the response
That response mode means that the nodes are retrieved, but not sent to the LLM. You can access them from the response.source_nodes attribute, but I'm not totally sure if that's what you intended? π€