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
29 lines
775 B
Python
29 lines
775 B
Python
"""Test Petals API wrapper."""
|
|
|
|
from langchain_core.pydantic_v1 import SecretStr
|
|
from pytest import CaptureFixture
|
|
|
|
from langchain_community.llms.petals import Petals
|
|
|
|
|
|
def test_api_key_is_string() -> None:
|
|
llm = Petals(huggingface_api_key="secret-api-key")
|
|
assert isinstance(llm.huggingface_api_key, SecretStr)
|
|
|
|
|
|
def test_api_key_masked_when_passed_via_constructor(
|
|
capsys: CaptureFixture,
|
|
) -> None:
|
|
llm = Petals(huggingface_api_key="secret-api-key")
|
|
print(llm.huggingface_api_key, end="") # noqa: T201
|
|
captured = capsys.readouterr()
|
|
|
|
assert captured.out == "**********"
|
|
|
|
|
|
def test_gooseai_call() -> None:
|
|
"""Test valid call to gooseai."""
|
|
llm = Petals(max_new_tokens=10)
|
|
output = llm("Say foo:")
|
|
assert isinstance(output, str)
|