LangfuseExperimentScoreCounts
NexusLabs.Foundry.Langfuse¶
LangfuseExperimentScoreCounts Class¶
Contains immutable counts of experiment score outcomes.
public sealed record LangfuseExperimentScoreCounts : System.IEquatable<NexusLabs.Foundry.Langfuse.LangfuseExperimentScoreCounts>
Inheritance System.Object 🡒 LangfuseExperimentScoreCounts
Implements System.IEquatable<LangfuseExperimentScoreCounts>
Constructors¶
LangfuseExperimentScoreCounts(int, int, int, int, int) Constructor¶
Initializes experiment score counts.
public LangfuseExperimentScoreCounts(int accepted, int failed, int notAttempted, int skipped, int disabled);
Parameters¶
accepted System.Int32
The number of accepted score requests.
failed System.Int32
The number of failed score requests.
notAttempted System.Int32
The number of scores without an authoritative target.
skipped System.Int32
The number of metrics without publishable values.
disabled System.Int32
The number of disabled-mode scores.
Properties¶
LangfuseExperimentScoreCounts.Accepted Property¶
Gets the number of accepted score requests.
Property Value¶
LangfuseExperimentScoreCounts.Disabled Property¶
Gets the number of disabled-mode scores.
Property Value¶
LangfuseExperimentScoreCounts.Failed Property¶
Gets the number of failed score requests.
Property Value¶
LangfuseExperimentScoreCounts.NotAttempted Property¶
Gets the number of scores not attempted because their target was unavailable.
Property Value¶
LangfuseExperimentScoreCounts.Skipped Property¶
Gets the number of evaluation metrics without publishable values.
Property Value¶
LangfuseExperimentScoreCounts.Total Property¶
Gets the total number of observed score outcomes.