mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-29 09:58:44 +00:00
10 lines
230 B
Python
10 lines
230 B
Python
"""Test embedding model integration."""
|
|
|
|
|
|
from langchain_nomic.embeddings import NomicEmbeddings
|
|
|
|
|
|
def test_initialization() -> None:
|
|
"""Test embedding model initialization."""
|
|
NomicEmbeddings(model="nomic-embed-text-v1")
|