mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-13 06:40:04 +00:00
9 lines
186 B
Python
9 lines
186 B
Python
"""Test Ollama Chat API wrapper."""
|
|
|
|
from langchain_ollama import OllamaLLM
|
|
|
|
|
|
def test_initialization() -> None:
|
|
"""Test integration initialization."""
|
|
OllamaLLM(model="llama3")
|