From 16729de369024465ae0dd547b4f72dfa28a4c231 Mon Sep 17 00:00:00 2001 From: Mason Daugherty Date: Mon, 4 Aug 2025 17:38:02 -0400 Subject: [PATCH] add some notes --- .../unit_tests/chat_models_v1.py | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/libs/standard-tests/langchain_tests/unit_tests/chat_models_v1.py b/libs/standard-tests/langchain_tests/unit_tests/chat_models_v1.py index a51a963a757..cc2f48fe2a4 100644 --- a/libs/standard-tests/langchain_tests/unit_tests/chat_models_v1.py +++ b/libs/standard-tests/langchain_tests/unit_tests/chat_models_v1.py @@ -105,22 +105,38 @@ class ChatModelV1Tests(BaseStandardTests): @property def supports_file_content_blocks(self) -> bool: - """Whether the model supports ``FileContentBlock``.""" + """Whether the model supports ``FileContentBlock``. + + Replaces ``supports_pdf_inputs`` from v0. + + """ return False @property def supports_image_content_blocks(self) -> bool: - """Whether the model supports ``ImageContentBlock``.""" + """Whether the model supports ``ImageContentBlock``. + + Replaces ``supports_image_inputs`` from v0. + + """ return False @property def supports_audio_content_blocks(self) -> bool: - """Whether the model supports ``AudioContentBlock``.""" + """Whether the model supports ``AudioContentBlock``. + + Replaces ``supports_audio_inputs`` from v0. + + """ return False @property def supports_video_content_blocks(self) -> bool: - """Whether the model supports ``VideoContentBlock``.""" + """Whether the model supports ``VideoContentBlock``. + + Replaces ``supports_video_inputs`` from v0. + + """ return False @property