-
Notifications
You must be signed in to change notification settings - Fork 15.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: mask api key for cerebriumai llm (#14272)
- **Description:** Masking API key for CerebriumAI LLM to protect user secrets. - **Issue:** #12165 - **Dependencies:** None - **Tag maintainer:** @eyurtsev --------- Signed-off-by: Yuchen Liang <[email protected]> Co-authored-by: Harrison Chase <[email protected]>
- Loading branch information
Showing
3 changed files
with
46 additions
and
10 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
File renamed without changes.
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,33 @@ | ||
"""Test CerebriumAI llm""" | ||
|
||
|
||
from langchain_core.pydantic_v1 import SecretStr | ||
from pytest import CaptureFixture, MonkeyPatch | ||
|
||
from langchain.llms.cerebriumai import CerebriumAI | ||
|
||
|
||
def test_api_key_is_secret_string() -> None: | ||
llm = CerebriumAI(cerebriumai_api_key="test-cerebriumai-api-key") | ||
assert isinstance(llm.cerebriumai_api_key, SecretStr) | ||
|
||
|
||
def test_api_key_masked_when_passed_via_constructor(capsys: CaptureFixture) -> None: | ||
llm = CerebriumAI(cerebriumai_api_key="secret-api-key") | ||
print(llm.cerebriumai_api_key, end="") | ||
captured = capsys.readouterr() | ||
|
||
assert captured.out == "**********" | ||
assert repr(llm.cerebriumai_api_key) == "SecretStr('**********')" | ||
|
||
|
||
def test_api_key_masked_when_passed_from_env( | ||
monkeypatch: MonkeyPatch, capsys: CaptureFixture | ||
) -> None: | ||
monkeypatch.setenv("CEREBRIUMAI_API_KEY", "secret-api-key") | ||
llm = CerebriumAI() | ||
print(llm.cerebriumai_api_key, end="") | ||
captured = capsys.readouterr() | ||
|
||
assert captured.out == "**********" | ||
assert repr(llm.cerebriumai_api_key) == "SecretStr('**********')" |