You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The nested retriever which will produce the first-level results, that will later be used for reranking. */
90
+
retriever: RetrieverContainer
91
+
/** This value determines how many documents we will consider from the nested retriever. */
92
+
rank_window_size?: integer
93
+
/** Unique identifier of the inference endpoint created using the inference API. */
94
+
inference_id?: string
95
+
/** The text snippet used as the basis for similarity comparison */
96
+
inference_text?: string
97
+
/** The document field to be used for text similarity comparisons. This field should contain the text that will be evaluated against the inference_text */
98
+
field?: string
99
+
}
100
+
101
+
exportclassRuleRetrieverextendsRetrieverBase{
102
+
/** The ruleset IDs containing the rules this retriever is evaluating against. */
103
+
ruleset_ids: Id[]
104
+
/** The match criteria that will determine if a rule in the provided rulesets should be applied. */
105
+
match_criteria: UserDefinedValue
106
+
/** The retriever whose results rules should be applied to. */
107
+
retriever: RetrieverContainer
108
+
/** This value determines the size of the individual result set. */
0 commit comments