jfeng1115's picture
init commit
58d33f0
raw
history blame contribute delete
267 Bytes
"""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)