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 0511808 commit 38ac502Copy full SHA for 38ac502
app/client/platforms/openai.ts
@@ -231,7 +231,7 @@ export class ChatGPTApi implements LLMApi {
231
messages,
232
stream: options.config.stream,
233
model: modelConfig.model,
234
- temperature: !isO1OrO3 ? modelConfig.temperature : 1,
+ temperature: (!isO1OrO3 && !isGpt5) ? modelConfig.temperature : 1,
235
presence_penalty: !isO1OrO3 ? modelConfig.presence_penalty : 0,
236
frequency_penalty: !isO1OrO3 ? modelConfig.frequency_penalty : 0,
237
top_p: !isO1OrO3 ? modelConfig.top_p : 1,
0 commit comments