Class MemoryEntry
A chunk of content stored in the vector store with its embedding.
public record MemoryEntry : IEquatable<MemoryEntry>
- Inheritance
-
MemoryEntry
- Implements
- Inherited Members
Properties
Category
public string? Category { get; init; }
Property Value
Content
public required string Content { get; init; }
Property Value
CreatedAt
public DateTimeOffset CreatedAt { get; init; }
Property Value
Embedding
public float[]? Embedding { get; init; }
Property Value
- float[]
Id
public required string Id { get; init; }
Property Value
Metadata
public IReadOnlyDictionary<string, string> Metadata { get; init; }
Property Value
Source
public string? Source { get; init; }