Share via


EmbeddingsStore.Add Method

Definition

Overloads

Name Description
Add(VectorbaseEntry)

Adds an entry to the vectorbase.

Add(BinaryData)

Adds an entry to the vectorbase. The media type must be "text/plain".

Add(IReadOnlyList<VectorbaseEntry>)

Adds a list of entries to the vectorbase.

Add(String)

Adds an entry to the vectorbase.

Add(VectorbaseEntry)

Source:
EmbeddingsStore.cs

Adds an entry to the vectorbase.

public abstract int Add(Azure.Projects.AI.VectorbaseEntry entry);
abstract member Add : Azure.Projects.AI.VectorbaseEntry -> int
Public MustOverride Function Add (entry As VectorbaseEntry) As Integer

Parameters

Returns

Applies to

Add(BinaryData)

Source:
EmbeddingsStore.cs

Adds an entry to the vectorbase. The media type must be "text/plain".

public void Add(BinaryData data);
member this.Add : BinaryData -> unit
Public Sub Add (data As BinaryData)

Parameters

data
BinaryData

Exceptions

Applies to

Add(IReadOnlyList<VectorbaseEntry>)

Source:
EmbeddingsStore.cs

Adds a list of entries to the vectorbase.

public abstract void Add(System.Collections.Generic.IReadOnlyList<Azure.Projects.AI.VectorbaseEntry> entry);
abstract member Add : System.Collections.Generic.IReadOnlyList<Azure.Projects.AI.VectorbaseEntry> -> unit
Public MustOverride Sub Add (entry As IReadOnlyList(Of VectorbaseEntry))

Parameters

Applies to

Add(String)

Source:
EmbeddingsStore.cs

Adds an entry to the vectorbase.

public void Add(string text);
member this.Add : string -> unit
Public Sub Add (text As String)

Parameters

text
String

Applies to