Skip to content

Commit 15ec9e5

Browse files
committed
Apply latest changes
1 parent f42a8c0 commit 15ec9e5

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

foundation-models/openai/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
</configuration>
148148
<executions>
149149
<execution>
150-
<id>orchestration</id>
150+
<id>openai</id>
151151
<goals>
152152
<goal>generate</goal>
153153
</goals>

foundation-models/openai/src/main/java/com/sap/ai/sdk/foundationmodels/openai/generated/model/ChatCompletionResponseMessageRole.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@
1313

1414
import com.fasterxml.jackson.annotation.JsonCreator;
1515
import com.fasterxml.jackson.annotation.JsonValue;
16+
import com.google.common.annotations.Beta;
1617
import javax.annotation.Nonnull;
1718

1819
/** The role of the author of the response message. */
20+
@Beta
1921
public enum ChatCompletionResponseMessageRole {
2022
ASSISTANT("assistant"),
2123

foundation-models/openai/src/main/java/com/sap/ai/sdk/foundationmodels/openai/generated/model/InnerErrorCode.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@
1313

1414
import com.fasterxml.jackson.annotation.JsonCreator;
1515
import com.fasterxml.jackson.annotation.JsonValue;
16+
import com.google.common.annotations.Beta;
1617
import javax.annotation.Nonnull;
1718

1819
/** Error codes for the inner error object. */
20+
@Beta
1921
public enum InnerErrorCode {
2022
RESPONSIBLE_AI_POLICY_VIOLATION("ResponsibleAIPolicyViolation"),
2123

foundation-models/openai/src/main/java/com/sap/ai/sdk/foundationmodels/openai/generated/model/ToolCallType.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@
1313

1414
import com.fasterxml.jackson.annotation.JsonCreator;
1515
import com.fasterxml.jackson.annotation.JsonValue;
16+
import com.google.common.annotations.Beta;
1617
import javax.annotation.Nonnull;
1718

1819
/** The type of the tool call, in this case &#x60;function&#x60;. */
20+
@Beta
1921
public enum ToolCallType {
2022
FUNCTION("function"),
2123

0 commit comments

Comments
 (0)