mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-24 13:28:16 +00:00
17 lines
379 B
Python
17 lines
379 B
Python
"""Standard LangChain interface tests"""
|
|
|
|
from typing import Type
|
|
|
|
from langchain_core.language_models import BaseChatModel
|
|
from langchain_tests.unit_tests.chat_models import (
|
|
ChatModelUnitTests,
|
|
)
|
|
|
|
from langchain_groq import ChatGroq
|
|
|
|
|
|
class TestGroqStandard(ChatModelUnitTests):
|
|
@property
|
|
def chat_model_class(self) -> Type[BaseChatModel]:
|
|
return ChatGroq
|