You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/tests/integration_tests/llms/test_aviary.py

11 lines
249 B
Python

"""Test Anyscale API wrapper."""
from langchain.llms.aviary import Aviary
def test_aviary_call() -> None:
"""Test valid call to Anyscale."""
llm = Aviary(model="test/model")
output = llm("Say bar:")
assert isinstance(output, str)