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
3 changes: 3 additions & 0 deletions docs/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
### ✨ New Functionality

- [Grounding] Added `GroundingClient.withHeader()`.
- [Orchestration] Added `GPT_52` model for `OrchestrationAiModel`.
- [OpenAi] Added `GPT_52` model from `OpenAiModel`.
- [Orchestration] Added `GEMINI_EMBEDDING` model for `OrchestrationEmbeddingModel`.

### 📈 Improvements

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ public record OpenAiModel(@Nonnull String name, @Nullable String version) implem
/** Azure OpenAI GPT-5-nano model */
public static final OpenAiModel GPT_REALTIME = new OpenAiModel("gpt-realtime", null);

/** Azure OpenAI GPT-5.2 model */
public static final OpenAiModel GPT_52 = new OpenAiModel("gpt-5.2", null);

/**
* Azure OpenAI Text Embedding ADA 002 model
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,9 @@ public class OrchestrationAiModel {
/** Azure OpenAI GPT-5-nano model */
public static final OrchestrationAiModel GPT_5_NANO = new OrchestrationAiModel("gpt-5-nano");

/** Azure OpenAI GPT-5.2 model */
public static final OrchestrationAiModel GPT_52 = new OrchestrationAiModel("gpt-5.2");

/**
* Google Cloud Platform Gemini 1.0 Pro model
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ public class OrchestrationEmbeddingModel implements AiModel {
public static final OrchestrationEmbeddingModel NVIDIA_LLAMA_32_NV_EMBEDQA_1B =
new OrchestrationEmbeddingModel("nvidia--llama-3.2-nv-embedqa-1b");

/** Google Cloud Platform Gemini Embedding model */
public static final OrchestrationEmbeddingModel GEMINI_EMBEDDING =
new OrchestrationEmbeddingModel("gemini-embedding");

/**
* Creates a new embedding model configuration with the specified name.
*
Expand Down
Loading