Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
/**
* OpenAI models that are available in AI Core.
*
* <p>Please note that the template of models provided in this class might be outdated. To check the
* latest availability of OpenAI models in AI Core, please refer to <a
* href="https://me.sap.com/notes/3437766">SAP Availability of Generative AI Models </a>.
*
* @param name The name of the model.
* @param version The version of the model (optional).
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@
import lombok.Value;
import lombok.With;

/** Large language models available in Orchestration. */
/**
* Large language models available in Orchestration.
*
* <p>Please note that the template of models provided in this class might be outdated. To check the
* latest availability of models in Orchestration, please refer to <a
* href="https://me.sap.com/notes/3437766">SAP Availability of Generative AI Models </a> and pay
* attention to the <i>Available in Orchestration</i> column.
*/
@Value
@With
@AllArgsConstructor
Expand Down Expand Up @@ -81,13 +88,28 @@ public class OrchestrationAiModel {
public static final OrchestrationAiModel TITAN_TEXT_EXPRESS =
new OrchestrationAiModel("amazon--titan-text-express");

/** Amazon Nova Pro model */
public static final OrchestrationAiModel NOVA_PRO = new OrchestrationAiModel("amazon--nova-pro");

/** Amazon Nova Lite model */
public static final OrchestrationAiModel NOVA_LITE =
new OrchestrationAiModel("amazon--nova-lite");

/** Amazon Nova Micro model */
public static final OrchestrationAiModel NOVA_MICRO =
new OrchestrationAiModel("amazon--nova-micro");

/** Azure OpenAI GPT-3.5 Turbo chat completions model */
public static final OrchestrationAiModel GPT_35_TURBO = new OrchestrationAiModel("gpt-35-turbo");

/** Azure OpenAI GPT-3.5 Turbo chat completions model */
public static final OrchestrationAiModel GPT_35_TURBO_16K =
new OrchestrationAiModel("gpt-35-turbo-16k");

/** Azure OpenAI GPT-3.5 Turbo chat completions model */
public static final OrchestrationAiModel GPT_35_TURBO_0125 =
new OrchestrationAiModel("gpt-35-turbo-0125");

/** Azure OpenAI GPT-4 chat completions model */
public static final OrchestrationAiModel GPT_4 = new OrchestrationAiModel("gpt-4");

Expand Down
Loading