mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +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")
|