Class WMNativeEmbedding
A DTO class representing individual embeddings as they are stored in the database.
Inherited Members
Namespace: Quantellia.WMServer.Asset.LLM.VectorDB
Assembly: WMServer.dll
Syntax
public class WMNativeEmbedding : IDbEntity, IWMEntity
Properties
CreatedBy
ID of the user that created this entity.
Declaration
public string CreatedBy { get; set; }
Property Value
Type | Description |
---|---|
string |
CreatedDate
Date and time this entity was last updated.
Declaration
public DateTime CreatedDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
DocumentID
The ID of the Document this embedding belongs to.
Declaration
public string DocumentID { get; set; }
Property Value
Type | Description |
---|---|
string |
DocumentIndexID
The ID of the VectorIndex this embedding belongs to. This is necessary to allow multiple Vector Indices to index this document.
Declaration
public string DocumentIndexID { get; set; }
Property Value
Type | Description |
---|---|
string |
ID
The unique ID of this embedding
Declaration
public string ID { get; set; }
Property Value
Type | Description |
---|---|
string |
LLMID
The ID of the LLM this embedding belongs to.
Declaration
public string LLMID { get; set; }
Property Value
Type | Description |
---|---|
string |
LastUpdatedBy
ID of the user that last updated this entity.
Declaration
public string LastUpdatedBy { get; set; }
Property Value
Type | Description |
---|---|
string |
LastUpdatedDate
Date and time at which this entity was last updated.
Declaration
public DateTime LastUpdatedDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
Text
The text contained in this embedding.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
string |
Vector
The text embedding in vector format.
Declaration
[NotMapped]
public float[] Vector { get; set; }
Property Value
Type | Description |
---|---|
float[] |
VectorSerialized
The string representation of the text embedding
Declaration
public string VectorSerialized { get; set; }
Property Value
Type | Description |
---|---|
string |