fix: title gen w/ gpt-5-nano (#2473)
This commit is contained in:
@@ -696,13 +696,22 @@ export namespace Session {
|
|||||||
).length
|
).length
|
||||||
if (numRealUserMsgs === 1 && !session.parentID && isDefaultTitle(session.title)) {
|
if (numRealUserMsgs === 1 && !session.parentID && isDefaultTitle(session.title)) {
|
||||||
const small = (await Provider.getSmallModel(model.providerID)) ?? model
|
const small = (await Provider.getSmallModel(model.providerID)) ?? model
|
||||||
|
const options = {
|
||||||
|
...ProviderTransform.options(small.providerID, small.modelID, input.sessionID),
|
||||||
|
...small.info.options,
|
||||||
|
}
|
||||||
|
if (small.providerID === "openai") {
|
||||||
|
options["reasoningEffort"] = "minimal"
|
||||||
|
}
|
||||||
|
if (small.providerID === "google") {
|
||||||
|
options["thinkingConfig"] = {
|
||||||
|
thinkingBudget: 0,
|
||||||
|
}
|
||||||
|
}
|
||||||
generateText({
|
generateText({
|
||||||
maxOutputTokens: small.info.reasoning ? 1024 : 20,
|
maxOutputTokens: small.info.reasoning ? 1500 : 20,
|
||||||
providerOptions: {
|
providerOptions: {
|
||||||
[model.providerID]: {
|
[model.providerID]: options,
|
||||||
...small.info.options,
|
|
||||||
...ProviderTransform.options(small.providerID, small.modelID, input.sessionID),
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
messages: [
|
messages: [
|
||||||
...SystemPrompt.title(model.providerID).map(
|
...SystemPrompt.title(model.providerID).map(
|
||||||
|
|||||||
Reference in New Issue
Block a user