Skip to content

Commit 21f44f8

Browse files
committed
Formatting
1 parent 2e77d44 commit 21f44f8

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

orchestration/src/test/java/com/sap/ai/sdk/orchestration/OrchestrationUnitTest.java

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,12 @@
6363
@WireMockTest
6464
class OrchestrationUnitTest {
6565
static final OrchestrationAiModel CUSTOM_GPT_35 =
66-
GPT_35_TURBO_16K
67-
.withModelParams(
68-
Map.of(
69-
"max_tokens", 50,
70-
"temperature", 0.1,
71-
"frequency_penalty", 0,
72-
"presence_penalty", 0));
66+
GPT_35_TURBO_16K.withModelParams(
67+
Map.of(
68+
"max_tokens", 50,
69+
"temperature", 0.1,
70+
"frequency_penalty", 0,
71+
"presence_penalty", 0));
7372
private final Function<String, InputStream> fileLoader =
7473
filename -> Objects.requireNonNull(getClass().getClassLoader().getResourceAsStream(filename));
7574

0 commit comments

Comments
 (0)