langchain/tests/integration_tests/llms/test_anyscale.py
kYLe 0d51a1f12b
Add LLMs support for Anyscale Service (#4350)
Add Anyscale service integration under LLM

Co-authored-by: Dev 2049 <dev.dev2049@gmail.com>
2023-05-11 00:39:59 -07:00

11 lines
239 B
Python

"""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)