Table 2010 Azure OpenAi Settings in 27

App
System Application
Namespace
System.Text
Obsolete
Removed 27.0. Moved to AI SDK

Fields, 3Keys, 1

Versions171819202122232425262728latest

Source242526272829

Source in 27

src/System Application/App/Entity Text/src/AzureOpenAiSettings.Table.al54 lines, Copyright (c) Microsoft Corporation. MIT

#if not CLEANSCHEMA27
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Text;


/// <summary>
/// Contains settings for Azure OpenAI.
/// </summary>
table 2010 "Azure OpenAi Settings"
{
    ObsoleteReason = 'Moved to AI SDK';
    ObsoleteTag = '27.0';
    ObsoleteState = Removed;
    Caption = 'Azure OpenAI Settings';
    DataPerCompany = false;
    ReplicateData = false;
    Extensible = false;
    Access = Internal;

    fields
    {
        field(1; Id; Code[10])
        {
            Caption = 'Id';
            DataClassification = SystemMetadata;
        }

        field(2; Endpoint; Text[250])
        {
            Caption = 'Endpoint';
            DataClassification = CustomerContent;
        }

        field(3; Model; Text[250])
        {
            Caption = 'Model';
            DataClassification = CustomerContent;
        }
    }

    keys
    {
        key(Key1; Id)
        {
        }
    }


}
#endif

Fields, 3

IdNameTypeObsolete
1IdCode[10]-
2EndpointText[250]-
3ModelText[250]-

Keys, 1

NameFieldsObsolete
Key1Id-