File size: 245 Bytes
cfd3735
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""Test Replicate API wrapper."""

from langchain.llms.replicate import Replicate


def test_replicate_call() -> None:
    """Test valid call to Replicate."""
    llm = Replicate()
    output = llm("Say foo:")
    assert isinstance(output, str)