Enum 7787 AOAI Policy in 28
- App
- System Application
- Namespace
- System.AI
Versions171819202122232425262728latest
Source in 28
src/System Application/App/AI/src/Azure OpenAI/Chat Completion/AOAIPolicy.Enum.al44 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.AI;
enum 7787 "AOAI Policy"
{
Extensible = false;
Access = Internal;
/// <summary>
/// Requests containing harms with a low severity are blocked and XPIA detection is enabled.
/// </summary>
value(1; "ConservativeWithXPIA")
{
Caption = 'ConservativeWithXPIA', Locked = true;
}
/// <summary>
/// Requests containing harms with a low severity are blocked and XPIA detection is disabled.
/// </summary>
value(2; "ConservativeWithoutXPIA")
{
Caption = 'ConservativeWithoutXPIA', Locked = true;
}
/// <summary>
/// Requests containing harms with a medium severity are blocked and XPIA detection is enabled.
/// </summary>
value(3; "MediumWithXPIA")
{
Caption = 'MediumWithXPIA', Locked = true;
}
/// <summary>
/// Requests containing harms with a medium severity are blocked and XPIA detection is disabled.
/// </summary>
value(4; "MediumWithoutXPIA")
{
Caption = 'Default', Locked = true;
}
}Values, 4
| Id | Name | Obsolete |
|---|---|---|
| 1 | ConservativeWithXPIA | - |
| 2 | ConservativeWithoutXPIA | - |
| 3 | MediumWithXPIA | - |
| 4 | MediumWithoutXPIA | - |