forked from langchain-ai/langchain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
community[patch]: introduce convert_to_secret() to bananadev llm (lan…
…gchain-ai#14283) - **Description:** Per langchain-ai#12165, this PR add to BananaLLM the function convert_to_secret_str() during environment variable validation. - **Issue:** langchain-ai#12165 - **Tag maintainer:** @eyurtsev - **Twitter handle:** @treewatcha75751 --------- Co-authored-by: Bagatur <[email protected]>
- Loading branch information
Showing
2 changed files
with
49 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
"""Test Banana llm""" | ||
from typing import cast | ||
|
||
from langchain_core.pydantic_v1 import SecretStr | ||
from pytest import CaptureFixture, MonkeyPatch | ||
|
||
from langchain_community.llms.bananadev import Banana | ||
|
||
|
||
def test_api_key_is_secret_string() -> None: | ||
llm = Banana(banana_api_key="secret-api-key") | ||
assert isinstance(llm.banana_api_key, SecretStr) | ||
|
||
|
||
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("BANANA_API_KEY", "secret-api-key") | ||
llm = Banana() | ||
print(llm.banana_api_key, end="") # noqa: T201 | ||
captured = capsys.readouterr() | ||
|
||
assert captured.out == "**********" | ||
|
||
|
||
def test_api_key_masked_when_passed_via_constructor( | ||
capsys: CaptureFixture, | ||
) -> None: | ||
"""Test initialization with an API key provided via the initializer""" | ||
llm = Banana(banana_api_key="secret-api-key") | ||
print(llm.banana_api_key, end="") # noqa: T201 | ||
captured = capsys.readouterr() | ||
|
||
assert captured.out == "**********" | ||
|
||
|
||
def test_uses_actual_secret_value_from_secretstr() -> None: | ||
"""Test that actual secret is retrieved using `.get_secret_value()`.""" | ||
llm = Banana(banana_api_key="secret-api-key") | ||
assert cast(SecretStr, llm.banana_api_key).get_secret_value() == "secret-api-key" |