mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-11 05:45:01 +00:00
28 lines
902 B
Python
28 lines
902 B
Python
"""Standard LangChain interface tests"""
|
|
|
|
from typing import Type
|
|
|
|
import pytest
|
|
from langchain_core.language_models import BaseChatModel
|
|
from langchain_tests.integration_tests import ChatModelIntegrationTests
|
|
|
|
from langchain_community.chat_models import ChatPerplexity
|
|
|
|
|
|
class TestPerplexityStandard(ChatModelIntegrationTests):
|
|
@property
|
|
def chat_model_class(self) -> Type[BaseChatModel]:
|
|
return ChatPerplexity
|
|
|
|
@property
|
|
def chat_model_params(self) -> dict:
|
|
return {"model": "sonar"}
|
|
|
|
@pytest.mark.xfail(reason="TODO: handle in integration.")
|
|
def test_double_messages_conversation(self, model: BaseChatModel) -> None:
|
|
super().test_double_messages_conversation(model)
|
|
|
|
@pytest.mark.xfail(reason="Raises 400: Custom stop words not supported.")
|
|
def test_stop_sequence(self, model: BaseChatModel) -> None:
|
|
super().test_stop_sequence(model)
|