mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-12 21:11:43 +00:00
10
tests/integration_tests/llms/test_pipelineai.py
Normal file
10
tests/integration_tests/llms/test_pipelineai.py
Normal file
@@ -0,0 +1,10 @@
|
||||
"""Test Pipeline Cloud API wrapper."""
|
||||
|
||||
from langchain.llms.pipelineai import PipelineAI
|
||||
|
||||
|
||||
def test_pipelineai_call() -> None:
|
||||
"""Test valid call to Pipeline Cloud."""
|
||||
llm = PipelineAI()
|
||||
output = llm("Say foo:")
|
||||
assert isinstance(output, str)
|
Reference in New Issue
Block a user