standard-tests: set integration test parameters independent of unit test (#24979)

This ends up getting set in integration tests.
This commit is contained in:
ccurme 2024-08-02 13:40:11 -04:00 committed by GitHub
parent 54e9ea433a
commit c04d95b962
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -59,6 +59,10 @@ def _validate_tool_call_message_no_args(message: BaseMessage) -> None:
class ChatModelIntegrationTests(ChatModelTests):
@property
def standard_chat_model_params(self) -> dict:
return {}
def test_invoke(self, model: BaseChatModel) -> None:
result = model.invoke("Hello")
assert result is not None