mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-01 13:26:15 +00:00
This PR upgrades community to a recent version of mypy. It inserts type: ignore on all existing failures.
11 lines
357 B
Python
11 lines
357 B
Python
"""Test Prediction Guard API wrapper."""
|
|
|
|
from langchain_community.llms.predictionguard import PredictionGuard
|
|
|
|
|
|
def test_predictionguard_call() -> None:
|
|
"""Test valid call to prediction guard."""
|
|
llm = PredictionGuard(model="OpenAI-text-davinci-003") # type: ignore[call-arg]
|
|
output = llm.invoke("Say foo:")
|
|
assert isinstance(output, str)
|