mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
17e886388b
Co-authored-by: Lance Martin <lance@langchain.dev>
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")
|