-
Chris Paganon authoredChris Paganon authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
retriever.md 705 B
sidebar_position: 5
Retriever
A retriever in LlamaIndex is what is used to fetch Node
s from an index using a query string. Aa VectorIndexRetriever
will fetch the top-k most similar nodes. Meanwhile, a SummaryIndexRetriever
will fetch all nodes no matter the query.
const retriever = vector_index.asRetriever();
retriever.topK = { TEXT: 3, IMAGE: 1 };
// Fetch nodes!
const nodesWithScore = await retriever.retrieve({ query: "query string" });