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