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 bce9be0 commit 3dfd323Copy full SHA for 3dfd323
docs/guides/ORCHESTRATION_CHAT_COMPLETION.md
@@ -201,10 +201,6 @@ Change your LLM configuration to add model parameters:
201
OrchestrationAiModel customGPT4O =
202
OrchestrationAiModel.GPT_4O
203
.withParams(
204
- Map.of(
205
- "max_tokens", 50,
206
- "temperature", 0.1,
207
- "frequency_penalty", 0,
208
- "presence_penalty", 0))
+ params().maxTokens(50).temperature(0.1).frequencyPenalty(0).presencePenalty(0))
209
.withVersion("2024-05-13");
210
```
0 commit comments