How to make random_score more random?

With this query to randomize the search results, is it possible to set how randomized the results will be from the original results? How can I increase or decrease the amount of randomness that the search results have?

GET /_search
{
    "query": {
        "function_score": {
            "random_score": {
                "seed": 10,
                "field": "_seq_no"
            },
           "query": MY ACTUAL QUERY THAT I WANT RANDOMIZED RESULTS FOR
        }
    }
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.