mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
11 lines
239 B
Python
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)
|