jfeng1115's picture
init commit
58d33f0
raw
history blame contribute delete
221 Bytes
"""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)