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
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
"""Test Anyscale llm"""
|
|
|
|
import pytest
|
|
from langchain_core.pydantic_v1 import SecretStr
|
|
from pytest import CaptureFixture, MonkeyPatch
|
|
|
|
from langchain_community.llms.anyscale import Anyscale
|
|
|
|
|
|
@pytest.mark.requires("openai")
|
|
def test_api_key_is_secret_string() -> None:
|
|
llm = Anyscale(anyscale_api_key="secret-api-key", anyscale_api_base="test")
|
|
assert isinstance(llm.anyscale_api_key, SecretStr)
|
|
|
|
|
|
@pytest.mark.requires("openai")
|
|
def test_api_key_masked_when_passed_from_env(
|
|
monkeypatch: MonkeyPatch, capsys: CaptureFixture
|
|
) -> None:
|
|
"""Test initialization with an API key provided via an env variable"""
|
|
monkeypatch.setenv("ANYSCALE_API_KEY", "secret-api-key")
|
|
llm = Anyscale(anyscale_api_base="test")
|
|
print(llm.anyscale_api_key, end="") # noqa: T201
|
|
captured = capsys.readouterr()
|
|
|
|
assert captured.out == "**********"
|
|
|
|
|
|
@pytest.mark.requires("openai")
|
|
def test_api_key_masked_when_passed_via_constructor(
|
|
capsys: CaptureFixture,
|
|
) -> None:
|
|
"""Test initialization with an API key provided via the initializer"""
|
|
llm = Anyscale(anyscale_api_key="secret-api-key", anyscale_api_base="test")
|
|
print(llm.anyscale_api_key, end="") # noqa: T201
|
|
captured = capsys.readouterr()
|
|
|
|
assert captured.out == "**********"
|