You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/tests/integration_tests/llms/test_ai21.py

11 lines
227 B
Python

"""Test AI21 API wrapper."""
from langchain.llms.ai21 import AI21
def test_ai21_call() -> None:
"""Test valid call to ai21."""
llm = AI21(maxTokens=10)
output = llm("Say foo:")
assert isinstance(output, str)