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