From 93d0ad97fed9b01ffc7cf79497e9d82e0a1e5f2d Mon Sep 17 00:00:00 2001 From: Bagatur <22008038+baskaryan@users.noreply.github.com> Date: Tue, 18 Jun 2024 19:32:15 -0700 Subject: [PATCH] anthropic[patch]: test image input (#23155) --- .../anthropic/tests/integration_tests/test_standard.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/partners/anthropic/tests/integration_tests/test_standard.py b/libs/partners/anthropic/tests/integration_tests/test_standard.py index 28a194e75a..8f0ba944bc 100644 --- a/libs/partners/anthropic/tests/integration_tests/test_standard.py +++ b/libs/partners/anthropic/tests/integration_tests/test_standard.py @@ -16,3 +16,7 @@ class TestAnthropicStandard(ChatModelIntegrationTests): @property def chat_model_params(self) -> dict: return {"model": "claude-3-haiku-20240307"} + + @property + def supports_image_inputs(self) -> bool: + return True