converse-mcp-server 2.3.0 → 2.3.1
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.
- package/package.json +1 -1
- package/src/providers/openai.js +3 -1
- package/src/tools/chat.js +2 -2
- package/src/tools/consensus.js +2 -2
package/package.json
CHANGED
package/src/providers/openai.js
CHANGED
|
@@ -20,8 +20,9 @@ const SUPPORTED_MODELS = {
|
|
|
20
20
|
supportsTemperature: false, // GPT-5 doesn't support temperature
|
|
21
21
|
supportsWebSearch: true,
|
|
22
22
|
supportsResponsesAPI: true,
|
|
23
|
+
supportsNoneReasoningEffort: true, // GPT-5.1 supports "none" for faster responses
|
|
23
24
|
timeout: 3600000, // 1 hour
|
|
24
|
-
description: 'Latest flagship model (400K context, 128K output) - Superior reasoning, code generation,
|
|
25
|
+
description: 'Latest flagship model (400K context, 128K output) - Superior reasoning, code generation, analysis. Supports "none" reasoning for faster responses',
|
|
25
26
|
aliases: ['gpt-5', 'gpt5', 'gpt 5', 'gpt-5.1-2025-11-13', 'gpt5.1', 'gpt 5.1']
|
|
26
27
|
},
|
|
27
28
|
'gpt-5-2025-08-07': {
|
|
@@ -34,6 +35,7 @@ const SUPPORTED_MODELS = {
|
|
|
34
35
|
supportsTemperature: false, // GPT-5 doesn't support temperature
|
|
35
36
|
supportsWebSearch: true,
|
|
36
37
|
supportsResponsesAPI: true,
|
|
38
|
+
supportsNoneReasoningEffort: false, // GPT-5.0 does not support "none" reasoning
|
|
37
39
|
timeout: 3600000, // 1 hour
|
|
38
40
|
description: 'GPT-5.0 model (400K context, 128K output) - Previous version, accessible via fully qualified name',
|
|
39
41
|
aliases: ['gpt-5.0', 'gpt5.0', 'gpt 5.0']
|
package/src/tools/chat.js
CHANGED
|
@@ -854,8 +854,8 @@ chatTool.inputSchema = {
|
|
|
854
854
|
},
|
|
855
855
|
reasoning_effort: {
|
|
856
856
|
type: 'string',
|
|
857
|
-
enum: ['minimal', 'low', 'medium', 'high', 'max'],
|
|
858
|
-
description: 'Reasoning depth for thinking models. Examples: "
|
|
857
|
+
enum: ['none', 'minimal', 'low', 'medium', 'high', 'max'],
|
|
858
|
+
description: 'Reasoning depth for thinking models. Examples: "none" (no reasoning, fastest - GPT-5.1+ only), "minimal" (few reasoning tokens), "low" (light analysis), "medium" (balanced), "high" (complex analysis). Default: "medium"',
|
|
859
859
|
default: 'medium'
|
|
860
860
|
},
|
|
861
861
|
verbosity: {
|
package/src/tools/consensus.js
CHANGED
|
@@ -1378,8 +1378,8 @@ consensusTool.inputSchema = {
|
|
|
1378
1378
|
},
|
|
1379
1379
|
reasoning_effort: {
|
|
1380
1380
|
type: 'string',
|
|
1381
|
-
enum: ['minimal', 'low', 'medium', 'high', 'max'],
|
|
1382
|
-
description: 'Reasoning depth for thinking models. Examples: "low" (light analysis), "medium" (balanced), "high" (complex analysis). Default: "medium"',
|
|
1381
|
+
enum: ['none', 'minimal', 'low', 'medium', 'high', 'max'],
|
|
1382
|
+
description: 'Reasoning depth for thinking models. Examples: "none" (no reasoning, fastest - GPT-5.1+ only), "low" (light analysis), "medium" (balanced), "high" (complex analysis). Default: "medium"',
|
|
1383
1383
|
default: 'medium'
|
|
1384
1384
|
},
|
|
1385
1385
|
use_websearch: {
|