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
let response = vector_operations_api::search_records_namespace(
184
+
&self.client.openapi_config,
185
+
namespace,
186
+
SearchRecordsRequest{
187
+
query:Box::new(query),
188
+
fields,
189
+
rerank: rerank.map(|r| Box::new(r)),
190
+
},
191
+
)
192
+
.await?;
193
+
194
+
Ok(response)
195
+
}
196
+
171
197
/// The list operation lists the IDs of vectors in a single namespace of a serverless index. An optional prefix can be passed to limit the results to IDs with a common prefix.
0 commit comments