Table of Contents

Class OptimizationHistoryEntry<T>

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

Represents a single entry in the optimization history.

public class OptimizationHistoryEntry<T>

Type Parameters

T

The type of the performance score.

Inheritance
OptimizationHistoryEntry<T>
Inherited Members

Properties

Iteration

Gets or sets the iteration number.

public int Iteration { get; set; }

Property Value

int

Metadata

Gets or sets optional metadata about this iteration.

public Dictionary<string, string> Metadata { get; set; }

Property Value

Dictionary<string, string>

Prompt

Gets or sets the prompt tested in this iteration.

public string Prompt { get; set; }

Property Value

string

Score

Gets or sets the performance score achieved.

public T Score { get; set; }

Property Value

T

Timestamp

Gets or sets the timestamp of this iteration.

public DateTime Timestamp { get; set; }

Property Value

DateTime