Hello, I am trying to run a biword query while also using BM25F (So, retrieve and rank documents containing "Sartori company" rather than "Sartori" OR "company", using BM25F over a bunch of fields) Currently the query looks like this: "queries": { "number": "test_query", "text": "#combine(#bm25f(sartori) #bm25f(company))" } And I assume the biword/ordered query should look like this: "queries": { "number": "test_query", "text": "#bm25f(#ordered(sartori company))" } But every time I try to run the...