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.
33 lines
983 B
Python
33 lines
983 B
Python
"""Test EmbaasEmbeddings embeddings"""
|
|
|
|
import pytest
|
|
from langchain_core.pydantic_v1 import SecretStr
|
|
from pytest import CaptureFixture
|
|
|
|
from langchain_community.embeddings import PremAIEmbeddings
|
|
|
|
|
|
@pytest.mark.requires("premai")
|
|
def test_api_key_is_string() -> None:
|
|
llm = PremAIEmbeddings( # type: ignore[call-arg]
|
|
premai_api_key="secret-api-key", # type: ignore[arg-type]
|
|
project_id=8,
|
|
model="fake-model", # type: ignore[arg-type]
|
|
)
|
|
assert isinstance(llm.premai_api_key, SecretStr)
|
|
|
|
|
|
@pytest.mark.requires("premai")
|
|
def test_api_key_masked_when_passed_via_constructor(
|
|
capsys: CaptureFixture,
|
|
) -> None:
|
|
llm = PremAIEmbeddings( # type: ignore[call-arg]
|
|
premai_api_key="secret-api-key", # type: ignore[arg-type]
|
|
project_id=8,
|
|
model="fake-model", # type: ignore[arg-type]
|
|
)
|
|
print(llm.premai_api_key, end="") # noqa: T201
|
|
captured = capsys.readouterr()
|
|
|
|
assert captured.out == "**********"
|