qdrant_client::qdrant

Struct RecommendPointGroupsBuilder

source
pub struct RecommendPointGroupsBuilder { /* private fields */ }
Expand description

Builder for RecommendPointGroups.

Implementations§

source§

impl RecommendPointGroupsBuilder

source

pub fn collection_name(self, value: String) -> Self

Name of the collection

source

pub fn filter<VALUE: Into<Filter>>(self, value: VALUE) -> Self

Filter conditions - return only those points that satisfy the specified conditions

source

pub fn limit(self, value: u32) -> Self

Max number of groups in result

source

pub fn with_payload<VALUE: Into<SelectorOptions>>(self, value: VALUE) -> Self

Options for specifying which payload to include or not

source

pub fn params<VALUE: Into<SearchParams>>(self, value: VALUE) -> Self

Search config

source

pub fn score_threshold(self, value: f32) -> Self

If provided - cut off results with worse scores

source

pub fn using<VALUE: Into<String>>(self, value: VALUE) -> Self

Define which vector to use for recommendation, if not specified - default vector

source

pub fn with_vectors<VALUE: Into<SelectorOptions>>(self, value: VALUE) -> Self

Options for specifying which vectors to include into response

source

pub fn lookup_from<VALUE: Into<LookupLocation>>(self, value: VALUE) -> Self

Name of the collection to use for points lookup, if not specified - use current collection

source

pub fn group_by(self, value: String) -> Self

Payload field to group by, must be a string or number field. If there are multiple values for the field, all of them will be used. One point can be in multiple groups.

source

pub fn group_size(self, value: u32) -> Self

Maximum amount of points to return per group

source

pub fn read_consistency<VALUE: Into<Value>>(self, value: VALUE) -> Self

Options for specifying read consistency guarantees

source

pub fn with_lookup<VALUE: Into<WithLookup>>(self, value: VALUE) -> Self

Options for specifying how to use the group id to lookup points in another collection

source

pub fn strategy<VALUE: Into<i32>>(self, value: VALUE) -> Self

How to use the example vectors to find the results

source

pub fn timeout(self, value: u64) -> Self

If set, overrides global timeout setting for this request. Unit is seconds.

source

pub fn shard_key_selector<VALUE: Into<ShardKeySelector>>( self, value: VALUE, ) -> Self

Specify in which shards to look for the points, if not specified - look in all shards

source§

impl RecommendPointGroupsBuilder

source

pub fn build(self) -> RecommendPointGroups

Builds the desired type. Can often be omitted.

source§

impl RecommendPointGroupsBuilder

source

pub fn new( collection_name: impl Into<String>, group_by: impl Into<String>, group_size: u32, limit: u32, ) -> Self

source§

impl RecommendPointGroupsBuilder

source

pub fn add_positive( self, recommend_example: impl Into<RecommendExample>, ) -> Self

Look for vectors closest to the vectors from these points or vectors

source

pub fn add_negative( self, recommend_example: impl Into<RecommendExample>, ) -> Self

Try to avoid vectors like the vector from these points or vectors

Trait Implementations§

source§

impl From<RecommendPointGroupsBuilder> for RecommendPointGroups

source§

fn from(value: RecommendPointGroupsBuilder) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more