We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e77d44 commit 21f44f8Copy full SHA for 21f44f8
orchestration/src/test/java/com/sap/ai/sdk/orchestration/OrchestrationUnitTest.java
@@ -63,13 +63,12 @@
63
@WireMockTest
64
class OrchestrationUnitTest {
65
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));
+ GPT_35_TURBO_16K.withModelParams(
+ Map.of(
+ "max_tokens", 50,
+ "temperature", 0.1,
+ "frequency_penalty", 0,
+ "presence_penalty", 0));
73
private final Function<String, InputStream> fileLoader =
74
filename -> Objects.requireNonNull(getClass().getClassLoader().getResourceAsStream(filename));
75
0 commit comments