mirror of
https://github.com/hwchase17/langchain.git
synced 2026-03-17 18:45:44 +00:00
initial commit
replicate readme add replicate to integration simple replicate test rename api key to token, and update to latest python client update replicate docs
This commit is contained in:
10
tests/integration_tests/llms/test_replicate.py
Normal file
10
tests/integration_tests/llms/test_replicate.py
Normal file
@@ -0,0 +1,10 @@
|
||||
"""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)
|
||||
Reference in New Issue
Block a user