< 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: 13
Coverable lines: 13
Total lines: 18
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_RuntimePath()100%210%
get_RuntimeUrl()100%210%
get_ConnectionToken()100%210%
get_RuntimeArguments()100%210%
get_WorkingDirectory()100%210%
get_BaseDirectory()100%210%
get_GitHubToken()100%210%
get_UseLoggedInUser()100%210%
get_EnableStreaming()100%210%
get_IncludeSubAgentStreamingEvents()100%210%
get_Model()100%210%
get_ReasoningEffort()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? RuntimePath { get; set; }
 06    public string? RuntimeUrl { get; set; }
 07    public string? ConnectionToken { get; set; }
 08    public ICollection<string> RuntimeArguments { get; set; } = [];
 09    public string? WorkingDirectory { get; set; }
 010    public string? BaseDirectory { get; set; }
 011    public string? GitHubToken { get; set; }
 012    public bool? UseLoggedInUser { get; set; }
 013    public bool EnableStreaming { get; set; } = true;
 014    public bool IncludeSubAgentStreamingEvents { get; set; } = true;
 015    public string? Model { get; set; }
 016    public string? ReasoningEffort { get; set; }
 017    public string? ProviderName { get; set; } = "copilot";
 18}