nodes
in llama_index.SentenceSplitter
and I'm trying to synthesize using get_response_synthesizer
:query = "<query>" nodes = SentenceSplitter().get_nodes_from_documents(documents) synthesizer = get_response_synthesizer(response_mode="compact") synthesizer.synthesize(query, nodes)
AttributeError: 'TextNode' object has no attribute 'node'
NodeWithScore
objects (the output of a retriever)from llama_index.schema import NodeWithScore NodeWithScore(node=node, score=1.0)