< Summary

Information
Class: NexusLabs.Needlr.AgentFramework.Langfuse.LangfuseScoreError
Assembly: NexusLabs.Needlr.AgentFramework.Langfuse
File(s): /home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework.Langfuse/LangfuseScoreError.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 12
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_ScoreName()100%11100%

File(s)

/home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework.Langfuse/LangfuseScoreError.cs

#LineLine coverage
 1namespace NexusLabs.Needlr.AgentFramework.Langfuse;
 2
 3/// <summary>
 4/// Describes a single failed attempt to upload an evaluation score to Langfuse. Passed to
 5/// <see cref="LangfuseOptions.ScoreErrorCallback"/> when
 6/// <see cref="LangfuseScoreFailureMode.NonFatal"/> is in effect, so callers can log the loss with
 7/// their own logger.
 8/// </summary>
 9/// <param name="ScoreName">The name of the score that failed to upload.</param>
 10/// <param name="TraceId">The Langfuse trace id the score was destined for, if known.</param>
 11/// <param name="Exception">The exception describing the failure.</param>
 512public sealed record LangfuseScoreError(string ScoreName, string? TraceId, Exception Exception);

Methods/Properties

get_ScoreName()