@sellable/mcp 0.1.423 → 0.1.425
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -21,15 +21,14 @@ const DEFAULT_MODEL_QUALITY_CONFIG = {
|
|
|
21
21
|
minimumModel: "GPT 5.5",
|
|
22
22
|
familyKeywords: ["gpt"],
|
|
23
23
|
minimumVersion: "5.5",
|
|
24
|
-
minimumReasoningEffort: "
|
|
24
|
+
minimumReasoningEffort: "xhigh",
|
|
25
25
|
acceptedReasoningEfforts: [
|
|
26
|
-
"high",
|
|
27
26
|
"extra high",
|
|
28
27
|
"extra-high",
|
|
29
28
|
"xhigh",
|
|
30
29
|
"extra_high",
|
|
31
30
|
],
|
|
32
|
-
recommendedReasoningEffort: "
|
|
31
|
+
recommendedReasoningEffort: "xhigh",
|
|
33
32
|
},
|
|
34
33
|
},
|
|
35
34
|
warningCopy: {
|
package/dist/tools/prompts.js
CHANGED
|
@@ -303,7 +303,7 @@ export function getPostFindLeadsScoutRegistry() {
|
|
|
303
303
|
filename: String(agent.codex?.filename || `${agent.name}.toml`),
|
|
304
304
|
description: String(agent.codex?.description || ""),
|
|
305
305
|
model: String(agent.codex?.model || "gpt-5.5"),
|
|
306
|
-
modelReasoningEffort: String(agent.codex?.modelReasoningEffort || "
|
|
306
|
+
modelReasoningEffort: String(agent.codex?.modelReasoningEffort || "xhigh"),
|
|
307
307
|
},
|
|
308
308
|
claude: {
|
|
309
309
|
filename: String(agent.claude?.filename || `${agent.name}.md`),
|