diff --git a/libs/standard-tests/QUICK_START.md b/libs/standard-tests/QUICK_START.md index b563c8d1eca..88455868b3d 100644 --- a/libs/standard-tests/QUICK_START.md +++ b/libs/standard-tests/QUICK_START.md @@ -73,8 +73,8 @@ class TestAdvancedModelV1(ChatModelV1UnitTests): return True @property - def supports_enhanced_tool_calls(self): - """Enhanced tool calling with metadata""" + def supports_tool_calls(self): + """Tool calling with metadata""" return True ``` @@ -91,7 +91,7 @@ class TestAdvancedModelV1(ChatModelV1UnitTests): | `supports_reasoning_content_blocks` | Reasoning/thinking blocks | `False` | | `supports_citations` | Citation annotations | `False` | | `supports_web_search_blocks` | Web search integration | `False` | -| `supports_enhanced_tool_calls` | Enhanced tool calling | `False` | +| `supports_enhanced_tool_calls` | Tool calling | `False` | | `supports_non_standard_blocks` | Custom content blocks | `True` | **Note:** These defaults are provided by the base test class. You only need to override properties where your model's capabilities differ from the default. @@ -236,8 +236,8 @@ class TestFakeChatModelV1(ChatModelV1UnitTests): return False @property - def supports_enhanced_tool_calls(self) -> bool: - """This fake model supports enhanced tool calls.""" + def supports_tool_calls(self) -> bool: + """This fake model supports tool calls.""" return True @property @@ -340,8 +340,8 @@ class TestFakeChatModelV1Integration(ChatModelV1IntegrationTests): return False @property - def supports_enhanced_tool_calls(self) -> bool: - """Enable enhanced tool calling tests.""" + def supports_tool_calls(self) -> bool: + """Enable tool calling tests.""" return True @property diff --git a/libs/standard-tests/README_V1.md b/libs/standard-tests/README_V1.md index c007fae5d07..11c653dc3c1 100644 --- a/libs/standard-tests/README_V1.md +++ b/libs/standard-tests/README_V1.md @@ -86,7 +86,7 @@ class TestYourChatModelV1Integration(ChatModelV1IntegrationTests): ### Tool Calling -- `supports_enhanced_tool_calls`: Enhanced tool calling with content blocks +- `supports_tool_calls`: Tool calling with content blocks - `supports_invalid_tool_calls`: Error handling for invalid tool calls - `supports_tool_call_chunks`: Streaming tool call support