mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
3a2eb6e12b
Added noqa for existing prints. Can slowly remove / will prevent more being intro'd
52 lines
1.6 KiB
Python
52 lines
1.6 KiB
Python
"""Test ForeFrontAI LLM"""
|
|
|
|
from typing import cast
|
|
|
|
from langchain_core.pydantic_v1 import SecretStr
|
|
from pytest import CaptureFixture, MonkeyPatch
|
|
|
|
from langchain_community.llms.forefrontai import ForefrontAI
|
|
|
|
|
|
def test_forefrontai_api_key_is_secret_string() -> None:
|
|
"""Test that the API key is stored as a SecretStr."""
|
|
llm = ForefrontAI(forefrontai_api_key="secret-api-key", temperature=0.2)
|
|
assert isinstance(llm.forefrontai_api_key, SecretStr)
|
|
|
|
|
|
def test_forefrontai_api_key_masked_when_passed_from_env(
|
|
monkeypatch: MonkeyPatch, capsys: CaptureFixture
|
|
) -> None:
|
|
"""Test that the API key is masked when passed from an environment variable."""
|
|
monkeypatch.setenv("FOREFRONTAI_API_KEY", "secret-api-key")
|
|
llm = ForefrontAI(temperature=0.2)
|
|
print(llm.forefrontai_api_key, end="") # noqa: T201
|
|
captured = capsys.readouterr()
|
|
|
|
assert captured.out == "**********"
|
|
|
|
|
|
def test_forefrontai_api_key_masked_when_passed_via_constructor(
|
|
capsys: CaptureFixture,
|
|
) -> None:
|
|
"""Test that the API key is masked when passed via the constructor."""
|
|
llm = ForefrontAI(
|
|
forefrontai_api_key="secret-api-key",
|
|
temperature=0.2,
|
|
)
|
|
print(llm.forefrontai_api_key, end="") # noqa: T201
|
|
captured = capsys.readouterr()
|
|
|
|
assert captured.out == "**********"
|
|
|
|
|
|
def test_forefrontai_uses_actual_secret_value_from_secretstr() -> None:
|
|
"""Test that the actual secret value is correctly retrieved."""
|
|
llm = ForefrontAI(
|
|
forefrontai_api_key="secret-api-key",
|
|
temperature=0.2,
|
|
)
|
|
assert (
|
|
cast(SecretStr, llm.forefrontai_api_key).get_secret_value() == "secret-api-key"
|
|
)
|