mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
25fbe356b4
This PR upgrades community to a recent version of mypy. It inserts type: ignore on all existing failures.
20 lines
626 B
Python
20 lines
626 B
Python
from langchain_core.pydantic_v1 import SecretStr
|
|
from pytest import CaptureFixture
|
|
|
|
from langchain_community.llms.pipelineai import PipelineAI
|
|
|
|
|
|
def test_api_key_is_string() -> None:
|
|
llm = PipelineAI(pipeline_api_key="secret-api-key") # type: ignore[arg-type]
|
|
assert isinstance(llm.pipeline_api_key, SecretStr)
|
|
|
|
|
|
def test_api_key_masked_when_passed_via_constructor(
|
|
capsys: CaptureFixture,
|
|
) -> None:
|
|
llm = PipelineAI(pipeline_api_key="secret-api-key") # type: ignore[arg-type]
|
|
print(llm.pipeline_api_key, end="") # noqa: T201
|
|
captured = capsys.readouterr()
|
|
|
|
assert captured.out == "**********"
|