Skip to content

Commit

Permalink
Update property method on chat standard tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MateuszOssGit committed Oct 18, 2024
1 parent 72b7acf commit 369a52f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions libs/ibm/tests/integration_tests/test_chat_models_standard.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,20 @@ def chat_model_class(self) -> Type[BaseChatModel]:
return ChatWatsonx

@property
def supports_image_inputs(self) -> bool:
return False # Supported, but set False due to token limit in test account
def has_tool_calling(self) -> bool:
return True

@property
def returns_usage_metadata(self) -> bool:
return True

@property
def has_tool_calling(self) -> bool:
return True
def supports_image_inputs(self) -> bool:
return False # Supported, but set False due to token limit in test account

@property
def supports_image_tool_message(self) -> bool:
return False # Supported, but set False due to token limit in test account

@property
def supported_usage_metadata_details(
Expand Down

0 comments on commit 369a52f

Please sign in to comment.