mirror of
https://github.com/hwchase17/langchain.git
synced 2026-07-16 17:26:50 +00:00
10 lines
261 B
Python
10 lines
261 B
Python
"""Test embedding model integration."""
|
|
|
|
|
|
from langchain_together.embeddings import TogetherEmbeddings
|
|
|
|
|
|
def test_initialization() -> None:
|
|
"""Test embedding model initialization."""
|
|
TogetherEmbeddings(model="togethercomputer/m2-bert-80M-8k-retrieval")
|