NomicEmbeddings
This notebook covers how to get started with Nomic embedding models.
Installation
# install package
!pip install -U langchain-nomic
Environment Setup
Make sure to set the following environment variables:
NOMIC_API_KEY
Usage
from langchain_nomic.embeddings import NomicEmbeddings
embeddings = NomicEmbeddings(model="nomic-embed-text-v1")
embeddings.embed_query("My query to look up")
embeddings.embed_documents(
["This is a content of the document", "This is another document"]
)
# async embed query
await embeddings.aembed_query("My query to look up")
# async embed documents
await embeddings.aembed_documents(
["This is a content of the document", "This is another document"]
)