langchain/tests/integration_tests/llms/test_aleph_alpha.py

11 lines
267 B
Python
Raw Normal View History

"""Test Aleph Alpha API wrapper."""
from langchain.llms.aleph_alpha import AlephAlpha
def test_aleph_alpha_call() -> None:
"""Test valid call to cohere."""
llm = AlephAlpha(maximum_tokens=10)
output = llm("Say foo:")
assert isinstance(output, str)