Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ pageextension 149032 "Agent Run History" extends "AIT Run History"
var
AgentTestContextImpl: Codeunit "Agent Test Context Impl.";
begin
AgentTestContextImpl.OpenAgentTaskList(Rec."Agent Task IDs - By Tag");
AgentTestContextImpl.OpenAgentConsumptionOverview(Rec."Agent Task IDs - By Tag");
end;
}
field("Agent Task Count - By Tag"; AgentTaskCountByTag)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ codeunit 149039 "AIT Eval Monthly Copilot Cred." implements "AIT Eval Limit Prov

procedure OpenConfigurationPage(Notification: Notification)
begin
OpenConfigurationPage()
OpenConfigurationPage();
end;

[EventSubscriber(ObjectType::Table, Database::"AIT Eval Monthly Copilot Cred.", OnBeforeInsertEvent, '', false, false)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ page 149048 "AIT Eval Monthly Copilot Cred."
AgentSystemPermissions: Codeunit "Agent System Permissions";
begin
CurrentUserIsAgentAdminForCurrentCompany := AgentSystemPermissions.CurrentUserHasCanManageAllAgentsPermission();
CurrentUserIsAgentAdminForAllCompanies := AgentSystemPermissions.CurrentUserHasCanManageAllAgentsInAllCompaniesPermission()
CurrentUserIsAgentAdminForAllCompanies := AgentSystemPermissions.CurrentUserHasCanManageAllAgentsInAllCompaniesPermission();
end;

local procedure LoadCreditLimitSetup()
Expand Down Expand Up @@ -338,6 +338,7 @@ page 149048 "AIT Eval Monthly Copilot Cred."
Rec.Reset();
Rec.DeleteAll();
EnvironmentLoadedDataCopilotCreditsConsumed := 0;
CompanyLoadedDataCopilotCreditsConsumed := 0;
PeriodStartDate := EnvironmentLimitRecord.GetPeriodStartDate();

// Load all agent test suites and their credit consumption for the current period into the buffer.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ page 149034 "AIT Test Method Lines"
{
Editable = false;
Caption = 'Execution';
ToolTip = 'Specifies the average execution of the eval line. The execution is calculated as the percentage of evals that were executed among the total evals (excluding skipped evals).';
ToolTip = 'Specifies the average execution of the eval line. The execution is calculated as the percentage of evals that were executed among the total evals (including skipped evals).';
AutoFormatType = 0;
}
field(TurnsText; TurnsText)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ page 149031 "AIT Test Suite"
{
Editable = false;
Caption = 'Execution';
ToolTip = 'Specifies the average execution of the eval suite. The execution is calculated as the percentage of evals that were executed among the total evals (excluding skipped evals).';
ToolTip = 'Specifies the average execution of the eval suite. The execution is calculated as the percentage of evals that were executed among the total evals (including skipped evals).';
AutoFormatType = 0;
}
field("No. of Operations"; Rec."No. of Operations")
Expand Down
Loading