Class QdrantDataEngineBuilderExtensions
Namespace: Cephalon.Data.Qdrant.Registration
Assembly: Cephalon.Data.Qdrant.dll
Registers the Qdrant vector-store data companion pack with an
public static class QdrantDataEngineBuilderExtensionsInheritance
Section titled “Inheritance”object ← QdrantDataEngineBuilderExtensions
Inherited Members
Section titled “Inherited Members”object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
Methods
Section titled “Methods”AddQdrantData(EngineBuilder, string, int, Action<QdrantDataOptions>?)
Section titled “ AddQdrantData(EngineBuilder, string, int, Action<QdrantDataOptions>?)”Adds the Qdrant data pack with the supplied host and optional port.
public static EngineBuilder AddQdrantData(this EngineBuilder builder, string host, int port = 6334, Action<QdrantDataOptions>? configure = null)Parameters
Section titled “Parameters”builder EngineBuilder
The engine builder to extend.
host string
The Qdrant server hostname (e.g. “localhost”).
port int
The Qdrant gRPC port. Defaults to 6334.
configure Action<QdrantDataOptions>?
An optional callback that configures the host-owned Qdrant pack options.
Returns
Section titled “Returns”The same engine builder for fluent composition.
Remarks
Section titled “Remarks”Register outbox or inbox support by configuring configure callback.