mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
6d6fd1b9e1
Add PipelineAI LLM integration
11 lines
259 B
Python
11 lines
259 B
Python
"""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)
|