mirror of
https://github.com/hwchase17/langchain.git
synced 2026-03-17 10:34:27 +00:00
replicate readme add replicate to integration simple replicate test rename api key to token, and update to latest python client update replicate docs
11 lines
245 B
Python
11 lines
245 B
Python
"""Test Replicate API wrapper."""
|
|
|
|
from langchain.llms.replicate import Replicate
|
|
|
|
|
|
def test_replicate_call() -> None:
|
|
"""Test valid call to Replicate."""
|
|
llm = Replicate()
|
|
output = llm("Say foo:")
|
|
assert isinstance(output, str)
|