-
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.
Mask API key for baidu qianfan (#14281)
Description: This PR masked baidu qianfan - Chat_Models API Key and added unit tests. Issue: the issue langchain-ai#12165. Tag maintainer: @eyurtsev --------- Co-authored-by: xiayi <[email protected]>
- Loading branch information
Showing
2 changed files
with
71 additions
and
13 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
53 changes: 53 additions & 0 deletions
53
libs/langchain/tests/integration_tests/chat_models/test_baiduqianfan.py
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,53 @@ | ||
from typing import cast | ||
|
||
from langchain_core.pydantic_v1 import SecretStr | ||
from pytest import CaptureFixture, MonkeyPatch | ||
|
||
from langchain.chat_models.baidu_qianfan_endpoint import ( | ||
QianfanChatEndpoint, | ||
) | ||
|
||
|
||
def test_qianfan_key_masked_when_passed_from_env( | ||
monkeypatch: MonkeyPatch, capsys: CaptureFixture | ||
) -> None: | ||
"""Test initialization with an API key provided via an env variable""" | ||
monkeypatch.setenv("QIANFAN_AK", "test-api-key") | ||
monkeypatch.setenv("QIANFAN_SK", "test-secret-key") | ||
|
||
chat = QianfanChatEndpoint() | ||
print(chat.qianfan_ak, end="") | ||
captured = capsys.readouterr() | ||
assert captured.out == "**********" | ||
|
||
print(chat.qianfan_sk, end="") | ||
captured = capsys.readouterr() | ||
assert captured.out == "**********" | ||
|
||
|
||
def test_qianfan_key_masked_when_passed_via_constructor( | ||
capsys: CaptureFixture, | ||
) -> None: | ||
"""Test initialization with an API key provided via the initializer""" | ||
chat = QianfanChatEndpoint( | ||
qianfan_ak="test-api-key", | ||
qianfan_sk="test-secret-key", | ||
) | ||
print(chat.qianfan_ak, end="") | ||
captured = capsys.readouterr() | ||
assert captured.out == "**********" | ||
|
||
print(chat.qianfan_sk, end="") | ||
captured = capsys.readouterr() | ||
|
||
assert captured.out == "**********" | ||
|
||
|
||
def test_uses_actual_secret_value_from_secret_str() -> None: | ||
"""Test that actual secret is retrieved using `.get_secret_value()`.""" | ||
chat = QianfanChatEndpoint( | ||
qianfan_ak="test-api-key", | ||
qianfan_sk="test-secret-key", | ||
) | ||
assert cast(SecretStr, chat.qianfan_ak).get_secret_value() == "test-api-key" | ||
assert cast(SecretStr, chat.qianfan_sk).get_secret_value() == "test-secret-key" |