< Summary

Information
Class: NexusLabs.Needlr.AgentFramework.AIAgentBuilderPluginOptions
Assembly: NexusLabs.Needlr.AgentFramework
File(s): /home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework/AIAgentBuilderPluginOptions.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
Total lines: 15
Line coverage: 0%
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_AgentBuilder()100%210%

File(s)

/home/runner/work/needlr/needlr/src/NexusLabs.Needlr.AgentFramework/AIAgentBuilderPluginOptions.cs

#LineLine coverage
 1using Microsoft.Agents.AI;
 2
 3namespace NexusLabs.Needlr.AgentFramework;
 4
 5/// <summary>
 6/// Options passed to <see cref="IAIAgentBuilderPlugin.Configure"/> to allow
 7/// plugins to participate in agent-builder configuration.
 8/// </summary>
 9public sealed class AIAgentBuilderPluginOptions
 10{
 11    /// <summary>
 12    /// Gets the <see cref="AIAgentBuilder"/> being configured.
 13    /// </summary>
 014    public required AIAgentBuilder AgentBuilder { get; init; }
 15}

Methods/Properties

get_AgentBuilder()