IC4T
update
cfd3735
raw
history blame contribute delete
239 Bytes
"""Test Anyscale API wrapper."""
from langchain.llms.anyscale import Anyscale
def test_anyscale_call() -> None:
"""Test valid call to Anyscale."""
llm = Anyscale()
output = llm("Say foo:")
assert isinstance(output, str)