diff --git a/src/Tools/AI Test Toolkit/src/AITTestContext.Codeunit.al b/src/Tools/AI Test Toolkit/src/AITTestContext.Codeunit.al index b98e3f1d62..dd68b22f82 100644 --- a/src/Tools/AI Test Toolkit/src/AITTestContext.Codeunit.al +++ b/src/Tools/AI Test Toolkit/src/AITTestContext.Codeunit.al @@ -84,15 +84,6 @@ codeunit 149044 "AIT Test Context" exit(AITTestContextImpl.GetExpectedData()); end; - /// - /// Get the AOAI Model Version for the AI Test Suite. - /// - /// The AOAI Model Version as an Option. - procedure GetAOAIModelVersion(): Option - begin - exit(AITTestContextImpl.GetAOAIModelVersion()); - end; - /// /// Sets the answer for a question and answer evaluation. /// This will also copy the context, question and ground truth to the output dataset. diff --git a/src/Tools/AI Test Toolkit/src/AITTestContextImpl.Codeunit.al b/src/Tools/AI Test Toolkit/src/AITTestContextImpl.Codeunit.al index 7a434b7586..664929201f 100644 --- a/src/Tools/AI Test Toolkit/src/AITTestContextImpl.Codeunit.al +++ b/src/Tools/AI Test Toolkit/src/AITTestContextImpl.Codeunit.al @@ -86,18 +86,6 @@ codeunit 149043 "AIT Test Context Impl." exit(GetTestInput(ExpectedDataTok)); end; - /// - /// Get the AOAI Model Version for the AI Test Suite. - /// - /// The AOAI Model Version as an Option. - procedure GetAOAIModelVersion(): Option - var - AITTestSuite: Record "AIT Test Suite"; - begin - GetAITTestSuite(AITTestSuite); - exit(AITTestSuite."Model Version"); - end; - /// /// Sets the answer for a question and answer evaluation. /// This will also copy the context, question and ground truth to the output dataset. @@ -254,17 +242,6 @@ codeunit 149043 "AIT Test Context Impl." AITTestSuiteMgt.SetTestOutput(AITALTestSuiteMgt.GetDefaultRunProcedureOperationLbl(), TestOutputCU.Testdata().ToText()); end; - /// - /// Returns the AITTestSuite associated with the sessions. - /// - /// AITTestMethodLine associated with the session. - local procedure GetAITTestSuite(var AITTestSuite: Record "AIT Test Suite") - var - AITTestRunIteration: Codeunit "AIT Test Run Iteration"; - begin - AITTestRunIteration.GetAITTestSuite(AITTestSuite); - end; - /// /// Returns the AITTestMethodLine associated with the sessions. /// diff --git a/src/Tools/AI Test Toolkit/src/API/AITLogEntryAPI.Page.al b/src/Tools/AI Test Toolkit/src/API/AITLogEntryAPI.Page.al index 36c28316ca..1a0cc3d7c7 100644 --- a/src/Tools/AI Test Toolkit/src/API/AITLogEntryAPI.Page.al +++ b/src/Tools/AI Test Toolkit/src/API/AITLogEntryAPI.Page.al @@ -50,10 +50,6 @@ page 149038 "AIT Log Entry API" { Caption = 'Version'; } - field(modelVersion; Rec."Model Version") - { - Caption = 'AOAI Model Version'; - } field("startTime"; Rec."Start Time") { Caption = 'Start Time'; diff --git a/src/Tools/AI Test Toolkit/src/Logs/AITLogEntry.Table.al b/src/Tools/AI Test Toolkit/src/Logs/AITLogEntry.Table.al index 9a60814431..b4fe826903 100644 --- a/src/Tools/AI Test Toolkit/src/Logs/AITLogEntry.Table.al +++ b/src/Tools/AI Test Toolkit/src/Logs/AITLogEntry.Table.al @@ -158,11 +158,6 @@ table 149034 "AIT Log Entry" { Caption = 'Output Data'; } - field(40; "Model Version"; Option) - { - Caption = 'AOAI Model Version'; - OptionMembers = Latest,Preview; - } } keys diff --git a/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuite.Page.al b/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuite.Page.al index 5599db96a5..6542dbf952 100644 --- a/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuite.Page.al +++ b/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuite.Page.al @@ -39,9 +39,6 @@ page 149031 "AIT Test Suite" ShowMandatory = true; NotBlank = true; } - field("Model Version"; Rec."Model Version") - { - } field("Test Runner Id"; TestRunnerDisplayName) { Caption = 'Test Runner'; diff --git a/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuite.Table.al b/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuite.Table.al index f92f78aac4..786a23b2d1 100644 --- a/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuite.Table.al +++ b/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuite.Table.al @@ -127,12 +127,6 @@ table 149030 "AIT Test Suite" Caption = 'Unique RunID'; Editable = false; } - field(20; "Model Version"; Option) - { - Caption = 'AOAI Model Version'; - ToolTip = 'Specifies the model version to be used by the tests in the test suite.'; - OptionMembers = Latest,Preview; - } field(21; "No. of Tests Executed"; Integer) { Caption = 'No. of Tests Executed'; diff --git a/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuiteImportExport.XmlPort.al b/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuiteImportExport.XmlPort.al index fce13a776a..83f47c9ab7 100644 --- a/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuiteImportExport.XmlPort.al +++ b/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuiteImportExport.XmlPort.al @@ -30,10 +30,6 @@ xmlport 149031 "AIT Test Suite Import/Export" { Occurrence = Optional; } - fieldattribute(ModelVersion; "AITSuite"."Model Version") - { - Occurrence = Optional; - } fieldattribute(Dataset; "AITSuite"."Input Dataset") { Occurrence = Required; diff --git a/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuiteMgt.Codeunit.al b/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuiteMgt.Codeunit.al index 645e10cc2f..59fbd1a3c2 100644 --- a/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuiteMgt.Codeunit.al +++ b/src/Tools/AI Test Toolkit/src/TestSuite/AITTestSuiteMgt.Codeunit.al @@ -301,7 +301,6 @@ codeunit 149034 "AIT Test Suite Mgt." AITLogEntry.Operation := CopyStr(ModifiedOperation, 1, MaxStrLen(AITLogEntry.Operation)); AITLogEntry."Original Operation" := CopyStr(Operation, 1, MaxStrLen(AITLogEntry."Original Operation")); AITLogEntry.Tag := AITTestRunIteration.GetAITTestSuiteTag(); - AITLogEntry."Model Version" := GlobalAITTestSuite."Model Version"; AITLogEntry."Entry No." := 0; if ModifiedExecutionSuccess then