生态 ( Ecosystem )集成 (Integrations)Llama.cppOn this pageLlama.cpp本页介绍如何在 LangChain 中使用 llama.cpp。 分为两个部分:安装和设置,以及对特定的 Llama-cpp 包装器的引用。安装和设置使用 pip install llama-cpp-python 安装 Python 包下载 支持的模型,并按照 说明 将其转换为 llama.cpp 格式包装器LLM存在一个 LlamaCpp LLM 包装器,可以通过以下方式访问from langchain.llms import LlamaCpp有关更详细的步骤,请参阅 此笔记本嵌入存在一个 LlamaCpp 嵌入包装器,可以通过以下方式访问from langchain.embeddings import LlamaCppEmbeddings有关更详细的步骤,请参阅 此笔记本