File size: 221 Bytes
58d33f0
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""Test Modal API wrapper."""

from langchain.llms.modal import Modal


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