فهرست منبع

fix: title gen w/ gpt-5-nano (#2473)

Aiden Cline 5 ماه پیش
والد
کامیت
93c2f5060e
1فایلهای تغییر یافته به همراه14 افزوده شده و 5 حذف شده
  1. 14 5
      packages/opencode/src/session/index.ts

+ 14 - 5
packages/opencode/src/session/index.ts

@@ -696,13 +696,22 @@ export namespace Session {
     ).length
     if (numRealUserMsgs === 1 && !session.parentID && isDefaultTitle(session.title)) {
       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({
-        maxOutputTokens: small.info.reasoning ? 1024 : 20,
+        maxOutputTokens: small.info.reasoning ? 1500 : 20,
         providerOptions: {
-          [model.providerID]: {
-            ...small.info.options,
-            ...ProviderTransform.options(small.providerID, small.modelID, input.sessionID),
-          },
+          [model.providerID]: options,
         },
         messages: [
           ...SystemPrompt.title(model.providerID).map(