langchain/libs/partners/ollama
2024-08-12 21:31:48 -04:00
..
langchain_ollama ollama[patch]: Update API Reference for ollama embeddings (#25315) 2024-08-12 21:31:48 -04:00
scripts patch[Partners] Unified fix of incorrect variable declarations in all check_imports (#25014) 2024-08-03 13:49:41 -04:00
tests make image inputs compatible with langchain_ollama (#24619) 2024-07-26 17:39:57 -07:00
.gitignore
LICENSE
Makefile
poetry.lock partners/ollama: release 0.1.1 (#24910) 2024-07-31 17:31:29 -07:00
pyproject.toml partners/ollama: release 0.1.1 (#24910) 2024-07-31 17:31:29 -07:00
README.md

langchain-ollama

This package contains the LangChain integration with Ollama

Installation

pip install -U langchain-ollama

You will also need to run the Ollama server locally. You can download it here.

Chat Models

ChatOllama class exposes chat models from Ollama.

from langchain_ollama import ChatOllama

llm = ChatOllama(model="llama3-groq-tool-use")
llm.invoke("Sing a ballad of LangChain.")

Embeddings

OllamaEmbeddings class exposes embeddings from Ollama.

from langchain_ollama import OllamaEmbeddings

embeddings = OllamaEmbeddings(model="llama3")
embeddings.embed_query("What is the meaning of life?")

LLMs

OllamaLLM class exposes LLMs from Ollama.

from langchain_ollama import OllamaLLM

llm = OllamaLLM(model="llama3")
llm.invoke("The meaning of life is")