mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
20 lines
493 B
Python
20 lines
493 B
Python
"""Test SparkLLM."""
|
|
from langchain_core.outputs import LLMResult
|
|
|
|
from langchain_community.llms.sparkllm import SparkLLM
|
|
|
|
|
|
def test_call() -> None:
|
|
"""Test valid call to sparkllm."""
|
|
llm = SparkLLM()
|
|
output = llm("Say foo:")
|
|
assert isinstance(output, str)
|
|
|
|
|
|
def test_generate() -> None:
|
|
"""Test valid call to sparkllm."""
|
|
llm = SparkLLM()
|
|
output = llm.generate(["Say foo:"])
|
|
assert isinstance(output, LLMResult)
|
|
assert isinstance(output.generations, list)
|