EmbeddingsStore.Add Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- entry
- VectorbaseEntry
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
- entry
- IReadOnlyList<VectorbaseEntry>
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