< Summary

Information
Class: UIBlazor.Models.AiToolToCall
Assembly: UIBlazor
File(s): /home/runner/work/InvAit/InvAit/UIBlazor/Models/AiToolToCall.cs
Tag: 14_22728831704
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 14
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_Name()100%210%
get_Arguments()100%210%

File(s)

/home/runner/work/InvAit/InvAit/UIBlazor/Models/AiToolToCall.cs

#LineLine coverage
 1namespace UIBlazor.Models;
 2
 3public class AiToolToCall
 4{
 5    /// <summary>
 6    /// The name of the function to be executed.
 7    /// </summary>
 08    public string Name { get; init; } = string.Empty;
 9
 10    /// <summary>
 11    /// Gets or sets the function's arguments.
 12    /// </summary>
 013    public Dictionary<string, object> Arguments { get; init; } = [];
 14}

Methods/Properties

get_Name()
get_Arguments()