Class OptimizationHistoryEntry<T>
- Namespace
- AiDotNet.Interfaces
- Assembly
- AiDotNet.dll
Represents a single entry in the optimization history.
public class OptimizationHistoryEntry<T>
Type Parameters
TThe 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
Metadata
Gets or sets optional metadata about this iteration.
public Dictionary<string, string> Metadata { get; set; }
Property Value
Prompt
Gets or sets the prompt tested in this iteration.
public string Prompt { get; set; }
Property Value
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; }