Skip to content
Open
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
2 changes: 0 additions & 2 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ updates:
versions: [ ">=5.0.0" ]
- dependency-name: "com.github.victools:jsonschema-module-jackson"
versions: [ ">=5.0.0" ]
- dependency-name: "org.openapitools:openapi-generator"
versions: [ ">=7.23.0" ]
groups:
production-minor-patch:
dependency-type: "production"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class ChatCompletionsRequestCommon
private Boolean stream = false;

@JsonProperty("stop")
private ChatCompletionsRequestCommonStop stop = null;
private ChatCompletionsRequestCommonStop stop;

@JsonProperty("max_tokens")
private Integer maxTokens = 4096;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class CreateChatCompletionRequest
private Boolean stream = false;

@JsonProperty("stop")
private CreateChatCompletionRequestAllOfStop stop = null;
private CreateChatCompletionRequestAllOfStop stop;

@JsonProperty("max_tokens")
private Integer maxTokens;
Expand Down
15 changes: 1 addition & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<maven.compiler.proc>full</maven.compiler.proc>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.outputTimestamp>2025-04-03T13:23:00Z</project.build.outputTimestamp>
<cloud-sdk.version>5.32.0</cloud-sdk.version>
<cloud-sdk.version>5.33.0-SNAPSHOT</cloud-sdk.version>
<junit-jupiter.version>6.1.0</junit-jupiter.version>
<wiremock.version>3.13.2</wiremock.version>
<assertj-core.version>3.27.7</assertj-core.version>
Expand Down Expand Up @@ -319,19 +319,6 @@
<groupId>com.sap.cloud.sdk.datamodel</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>${cloud-sdk.version}</version>
<dependencies>
<!-- Handle regression in 7.23.0 -->
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator</artifactId>
<version>7.22.0</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.24.0</version>
</plugin>
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
Expand Down
Loading