mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-10 17:46:15 +00:00
This PR upgrades community to a recent version of mypy. It inserts type: ignore on all existing failures.
22 lines
671 B
Python
22 lines
671 B
Python
"""Test EdenAiEmbeddings embeddings"""
|
|
|
|
from langchain_core.pydantic_v1 import SecretStr
|
|
from pytest import CaptureFixture
|
|
|
|
from langchain_community.embeddings import EdenAiEmbeddings
|
|
|
|
|
|
def test_api_key_is_string() -> None:
|
|
llm = EdenAiEmbeddings(edenai_api_key="secret-api-key") # type: ignore[arg-type]
|
|
assert isinstance(llm.edenai_api_key, SecretStr)
|
|
|
|
|
|
def test_api_key_masked_when_passed_via_constructor(
|
|
capsys: CaptureFixture,
|
|
) -> None:
|
|
llm = EdenAiEmbeddings(edenai_api_key="secret-api-key") # type: ignore[arg-type]
|
|
print(llm.edenai_api_key, end="") # noqa: T201
|
|
captured = capsys.readouterr()
|
|
|
|
assert captured.out == "**********"
|