2023-10-31 01:17:53 +00:00
|
|
|
"""Test Fireworks chat model"""
|
2024-02-10 00:13:30 +00:00
|
|
|
|
2023-10-31 01:17:53 +00:00
|
|
|
import sys
|
|
|
|
|
|
|
|
import pytest
|
2023-11-20 21:09:30 +00:00
|
|
|
from langchain_core.pydantic_v1 import SecretStr
|
2023-10-31 01:17:53 +00:00
|
|
|
from pytest import CaptureFixture
|
|
|
|
|
2023-12-11 21:53:30 +00:00
|
|
|
from langchain_community.llms import Fireworks
|
2023-10-31 01:17:53 +00:00
|
|
|
|
|
|
|
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")
|
2024-02-10 00:13:30 +00:00
|
|
|
print(llm.fireworks_api_key, end="") # noqa: T201
|
2023-10-31 01:17:53 +00:00
|
|
|
captured = capsys.readouterr()
|
|
|
|
|
|
|
|
assert captured.out == "**********"
|