Table of Contents

Class MemoryEntry

Namespace
JD.AI.Core.Memory
Assembly
JD.AI.Core.dll

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

string

Content

public required string Content { get; init; }

Property Value

string

CreatedAt

public DateTimeOffset CreatedAt { get; init; }

Property Value

DateTimeOffset

Embedding

public float[]? Embedding { get; init; }

Property Value

float[]

Id

public required string Id { get; init; }

Property Value

string

Metadata

public IReadOnlyDictionary<string, string> Metadata { get; init; }

Property Value

IReadOnlyDictionary<string, string>

Source

public string? Source { get; init; }

Property Value

string