Enum 7773 AOAI Model Type in 26
- App
- System Application
- Namespace
- System.AI
Versions171819202122232425262728latest
Source in 26
src/System Application/App/AI/src/Azure OpenAI/AOAIModelType.Enum.al36 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;
/// <summary>
/// The supported model types for Azure OpenAI.
/// </summary>
enum 7773 "AOAI Model Type"
{
Access = Public;
Extensible = false;
/// <summary>
/// Embedding model type.
/// Details: https://aka.ms/AOAIUnderstandEmbeddings
/// </summary>
value(0; Embeddings)
{
}
/// <summary>
/// Completions model type.
/// </summary>
value(1; "Text Completions")
{
}
/// <summary>
/// Chat completions model type.
/// </summary>
value(2; "Chat Completions")
{
}
}Values, 3
| Id | Name | Obsolete |
|---|---|---|
| 0 | Embeddings | - |
| 1 | Text Completions | - |
| 2 | Chat Completions | - |