mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-21 06:14:37 +00:00
9 lines
219 B
Python
9 lines
219 B
Python
"""Test embedding model integration."""
|
|
|
|
from langchain_ollama.embeddings import OllamaEmbeddings
|
|
|
|
|
|
def test_initialization() -> None:
|
|
"""Test embedding model initialization."""
|
|
OllamaEmbeddings(model="llama3")
|