Table 2010 Azure OpenAi Settings
- App
- System Application
- Namespace
- System.Text
- Versions
- 22-28
- Obsolete
- Removed 27.0, seen from 23. Moved to AI SDK
Fields, 3Keys, 1Procedures, 9Obsolete, 1
Versions171819202122232425262728
Source in 29
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