mirror of
https://github.com/hwchase17/langchain.git
synced 2026-06-09 10:17:00 +00:00
21 lines
513 B
Python
21 lines
513 B
Python
"""Standard LangChain interface tests."""
|
|
|
|
from langchain_core.language_models import BaseChatModel
|
|
from langchain_tests.unit_tests.chat_models import (
|
|
ChatModelUnitTests,
|
|
)
|
|
|
|
from langchain_groq import ChatGroq
|
|
|
|
|
|
class TestGroqStandard(ChatModelUnitTests):
|
|
"""Run ChatGroq on LangChain standard tests."""
|
|
|
|
@property
|
|
def chat_model_class(self) -> type[BaseChatModel]:
|
|
return ChatGroq
|
|
|
|
@property
|
|
def chat_model_params(self) -> dict:
|
|
return {"model": "llama-3.1-8b-instant"}
|