File size: 263 Bytes
cfd3735
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""Test StochasticAI API wrapper."""

from langchain.llms.stochasticai import StochasticAI


def test_stochasticai_call() -> None:
    """Test valid call to StochasticAI."""
    llm = StochasticAI()
    output = llm("Say foo:")
    assert isinstance(output, str)