< Summary

Information
Class: Elsa.AI.Copilot.Options.CopilotOptions
Assembly: Elsa.AI.Copilot
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.AI.Copilot/Options/CopilotOptions.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 8
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_CliPath()100%210%
get_Model()100%210%
get_ProviderName()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.AI.Copilot/Options/CopilotOptions.cs

#LineLine coverage
 1namespace Elsa.AI.Copilot.Options;
 2
 3public class CopilotOptions
 4{
 05    public string CliPath { get; set; } = "copilot";
 06    public string? Model { get; set; }
 07    public string? ProviderName { get; set; } = "copilot";
 8}