LlamaIndex
LlamaIndex 是构建LLM应用程序的领先数据框架
安装与设置
你需要安装llama-index
python包。
pip install llama-index
查看安装说明。
检索器
LlamaIndexRetriever
它用于在LlamaIndex数据结构上进行带来源的问答。
from langchain_community.retrievers.llama_index import LlamaIndexRetriever
API Reference:LlamaIndexRetriever
LlamaIndexGraphRetriever
它用于在LlamaIndex图数据结构上进行带来源的问答。
from langchain_community.retrievers.llama_index import LlamaIndexGraphRetriever
API Reference:LlamaIndexGraphRetriever