mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
ee6a773456
--------- Co-authored-by: Erick Friis <erick@langchain.dev>
9 lines
252 B
Python
9 lines
252 B
Python
"""Test embedding model integration."""
|
|
|
|
from langchain_fireworks.embeddings import FireworksEmbeddings
|
|
|
|
|
|
def test_initialization() -> None:
|
|
"""Test embedding model initialization."""
|
|
FireworksEmbeddings(model="nomic-ai/nomic-embed-text-v1.5")
|