2023-11-06 19:13:59 +00:00
|
|
|
"""Test the Nebula model by Symbl.ai"""
|
|
|
|
|
2023-11-20 21:09:30 +00:00
|
|
|
from langchain_core.pydantic_v1 import SecretStr
|
2023-11-06 19:13:59 +00:00
|
|
|
from pytest import CaptureFixture, MonkeyPatch
|
|
|
|
|
2023-12-11 21:53:30 +00:00
|
|
|
from langchain_community.llms.symblai_nebula import Nebula
|
2023-11-06 19:13:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_api_key_is_secret_string() -> None:
|
|
|
|
llm = Nebula(nebula_api_key="secret-api-key")
|
|
|
|
assert isinstance(llm.nebula_api_key, SecretStr)
|
|
|
|
assert llm.nebula_api_key.get_secret_value() == "secret-api-key"
|
|
|
|
|
|
|
|
|
|
|
|
def test_api_key_masked_when_passed_from_env(
|
|
|
|
monkeypatch: MonkeyPatch, capsys: CaptureFixture
|
|
|
|
) -> None:
|
|
|
|
monkeypatch.setenv("NEBULA_API_KEY", "secret-api-key")
|
|
|
|
llm = Nebula()
|
2024-02-10 00:13:30 +00:00
|
|
|
print(llm.nebula_api_key, end="") # noqa: T201
|
2023-11-06 19:13:59 +00:00
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert captured.out == "**********"
|
|
|
|
|
|
|
|
|
|
|
|
def test_api_key_masked_when_passed_via_constructor(capsys: CaptureFixture) -> None:
|
|
|
|
llm = Nebula(nebula_api_key="secret-api-key")
|
2024-02-10 00:13:30 +00:00
|
|
|
print(llm.nebula_api_key, end="") # noqa: T201
|
2023-11-06 19:13:59 +00:00
|
|
|
captured = capsys.readouterr()
|
|
|
|
assert captured.out == "**********"
|