langchain/libs/partners/nomic
2025-07-01 18:16:38 +00:00
..
langchain_nomic langchain-nomic[patch]: Add ruff bandit rules to linter (#31805) 2025-07-01 11:39:11 -04:00
scripts multiple: pydantic 2 compatibility, v0.3 (#26443) 2024-09-13 14:38:45 -07:00
tests infra: migrate to uv (#29566) 2025-02-06 13:36:26 -05:00
.gitignore
LICENSE
Makefile infra: add UV_FROZEN to makefiles (#29642) 2025-02-06 14:36:54 -05:00
pyproject.toml update pyproject.toml flake8 comment (#31810) 2025-07-01 18:16:38 +00:00
README.md
uv.lock langchain-nomic[patch]: Add ruff bandit rules to linter (#31805) 2025-07-01 11:39:11 -04:00

langchain-nomic

This package contains the LangChain integration with Nomic

Installation

pip install -U langchain-nomic

And you should configure credentials by setting the following environment variables:

  • NOMIC_API_KEY: your nomic API key

Embeddings

NomicEmbeddings class exposes embeddings from Nomic.

from langchain_nomic import NomicEmbeddings

embeddings = NomicEmbeddings()
embeddings.embed_query("What is the meaning of life?")