From 22386706ff7d1d04e0959a2f8f640df5b535c1d4 Mon Sep 17 00:00:00 2001 From: Panagiotis Bailis Date: Fri, 17 May 2024 11:24:49 +0300 Subject: [PATCH] renaming window_size to rank_window_size --- output/openapi/elasticsearch-serverless-openapi.json | 2 +- output/schema/schema.json | 2 +- output/typescript/types.ts | 2 +- specification/_types/Retriever.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index d1801dcb24..75800e947f 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -59787,7 +59787,7 @@ "description": "This value determines how much influence documents in individual result sets per query have over the final ranked result set.", "type": "number" }, - "window_size": { + "rank_window_size": { "description": "This value determines the size of the individual result sets per query.", "type": "number" } diff --git a/output/schema/schema.json b/output/schema/schema.json index 26843f5f1a..6103b9ee33 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -46554,7 +46554,7 @@ }, { "description": "This value determines the size of the individual result sets per query.", - "name": "window_size", + "name": "rank_window_size", "required": false, "type": { "kind": "instance_of", diff --git a/output/typescript/types.ts b/output/typescript/types.ts index e1407d293b..0612c7eb63 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -2523,7 +2523,7 @@ export interface QueryVectorBuilder { export interface RRFRetriever extends RetrieverBase { retrievers: RetrieverContainer[] rank_constant?: integer - window_size?: integer + rank_window_size?: integer } export interface RankBase { diff --git a/specification/_types/Retriever.ts b/specification/_types/Retriever.ts index bd179180a0..088041ce45 100644 --- a/specification/_types/Retriever.ts +++ b/specification/_types/Retriever.ts @@ -76,5 +76,5 @@ export class RRFRetriever extends RetrieverBase { /** This value determines how much influence documents in individual result sets per query have over the final ranked result set. */ rank_constant?: integer /** This value determines the size of the individual result sets per query. */ - window_size?: integer + rank_window_size?: integer }