mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
3a2eb6e12b
Added noqa for existing prints. Can slowly remove / will prevent more being intro'd
30 lines
803 B
Python
30 lines
803 B
Python
"""Test Fireworks chat model"""
|
|
|
|
import sys
|
|
|
|
import pytest
|
|
from langchain_core.pydantic_v1 import SecretStr
|
|
from pytest import CaptureFixture
|
|
|
|
from langchain_community.llms import Fireworks
|
|
|
|
if sys.version_info < (3, 9):
|
|
pytest.skip("fireworks-ai requires Python > 3.8", allow_module_level=True)
|
|
|
|
|
|
@pytest.mark.requires("fireworks")
|
|
def test_api_key_is_string() -> None:
|
|
llm = Fireworks(fireworks_api_key="secret-api-key")
|
|
assert isinstance(llm.fireworks_api_key, SecretStr)
|
|
|
|
|
|
@pytest.mark.requires("fireworks")
|
|
def test_api_key_masked_when_passed_via_constructor(
|
|
capsys: CaptureFixture,
|
|
) -> None:
|
|
llm = Fireworks(fireworks_api_key="secret-api-key")
|
|
print(llm.fireworks_api_key, end="") # noqa: T201
|
|
captured = capsys.readouterr()
|
|
|
|
assert captured.out == "**********"
|