diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..ff1bd5c --- /dev/null +++ b/.mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "docs-langchain": { + "type": "http", + "url": "https://docs.langchain.com/mcp" + } + } +} \ No newline at end of file diff --git a/libs/redis/tests/unit_tests/test_tool_message_issue_51.py b/libs/redis/tests/unit_tests/test_tool_message_issue_51.py index 7498a3a..ae820f5 100644 --- a/libs/redis/tests/unit_tests/test_tool_message_issue_51.py +++ b/libs/redis/tests/unit_tests/test_tool_message_issue_51.py @@ -22,7 +22,7 @@ def test_add_tool_message_stores_tool_call_id( ) -> None: """Test that adding a ToolMessage stores tool_call_id. - This is the fix for issue #51 where ToolMessage.tool_call_id + This is the fix for issue #51 where `ToolMessage.tool_call_id` was not being stored, causing KeyError on deserialization. """ mock_redis_client = MagicMock() @@ -184,7 +184,7 @@ def capture_load(**kwargs: Any) -> None: def test_mixed_message_types_with_tool_message( self, mock_search_index: MagicMock ) -> None: - """Test conversation with mixed message types including ToolMessage.""" + """Test conversation with mixed message types including `ToolMessage`.""" mock_redis_client = MagicMock() mock_redis_client.client_setinfo = MagicMock() mock_redis_client.ft = MagicMock()