mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
3a2eb6e12b
Added noqa for existing prints. Can slowly remove / will prevent more being intro'd
12 lines
291 B
Python
12 lines
291 B
Python
"""Test Anyscale API wrapper."""
|
|
|
|
from langchain_community.llms.aviary import Aviary
|
|
|
|
|
|
def test_aviary_call() -> None:
|
|
"""Test valid call to Anyscale."""
|
|
llm = Aviary()
|
|
output = llm("Say bar:")
|
|
print(f"llm answer:\n{output}") # noqa: T201
|
|
assert isinstance(output, str)
|