mirror of
https://github.com/hwchase17/langchain
synced 2024-11-11 19:11:02 +00:00
16 lines
428 B
Python
16 lines
428 B
Python
|
"""Standard LangChain interface tests"""
|
||
|
|
||
|
from typing import Type
|
||
|
|
||
|
import pytest
|
||
|
from langchain_core.language_models import BaseChatModel
|
||
|
from langchain_standard_tests.integration_tests import ChatModelIntegrationTests
|
||
|
|
||
|
from langchain_fireworks import ChatFireworks
|
||
|
|
||
|
|
||
|
class TestFireworksStandard(ChatModelIntegrationTests):
|
||
|
@pytest.fixture
|
||
|
def chat_model_class(self) -> Type[BaseChatModel]:
|
||
|
return ChatFireworks
|