Empty Index Retriever

Default query for EmptyIndex.

class llama_index.indices.empty.retrievers.EmptyIndexRetriever(index: EmptyIndex, input_prompt: Optional[Prompt] = None, **kwargs: Any)

EmptyIndex query.

Passes the raw LLM call to the underlying LLM model.

Parameters

input_prompt (Optional[SimpleInputPrompt]) – A Simple Input Prompt (see Prompt Templates).

retrieve(str_or_query_bundle: Union[str, QueryBundle]) List[NodeWithScore]

Retrieve nodes given query.

Parameters

str_or_query_bundle (QueryType) – Either a query string or a QueryBundle object.