Llama.cpp
This page covers how to use llama.cpp within LangChain. It is broken into two parts: installation and setup, and then references to specific Llama-cpp wrappers.
Installation and Setupβ
- Install the Python package with
pip install llama-cpp-python
- Download one of the supported models and convert them to the llama.cpp format per the instructions
Wrappersβ
LLMβ
There exists a LlamaCpp LLM wrapper, which you can access with
from langchain_community.llms import LlamaCpp
API Reference:
For a more detailed walkthrough of this, see this notebook
Embeddingsβ
There exists a LlamaCpp Embeddings wrapper, which you can access with
from langchain_community.embeddings import LlamaCppEmbeddings
API Reference:
For a more detailed walkthrough of this, see this notebook