converse-mcp-server 2.25.1 → 2.26.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/LICENSE +18 -18
- package/docs/ALTERNATIVE_PROVIDERS.md +449 -449
- package/docs/ARCHITECTURE.md +551 -551
- package/package.json +1 -1
- package/src/providers/copilot.js +14 -1
package/package.json
CHANGED
package/src/providers/copilot.js
CHANGED
|
@@ -249,7 +249,20 @@ const SUPPORTED_MODELS = {
|
|
|
249
249
|
supportsWebSearch: false,
|
|
250
250
|
timeout: 600000,
|
|
251
251
|
description: 'Anthropic Claude Opus 4.7 via Copilot subscription',
|
|
252
|
-
aliases: [
|
|
252
|
+
aliases: [],
|
|
253
|
+
},
|
|
254
|
+
'claude-opus-4.8': {
|
|
255
|
+
modelName: 'claude-opus-4.8',
|
|
256
|
+
friendlyName: 'Claude Opus 4.8 (via Copilot)',
|
|
257
|
+
contextWindow: 200000,
|
|
258
|
+
maxOutputTokens: 32768,
|
|
259
|
+
supportsStreaming: true,
|
|
260
|
+
supportsImages: false,
|
|
261
|
+
supportsTemperature: false,
|
|
262
|
+
supportsWebSearch: false,
|
|
263
|
+
timeout: 600000,
|
|
264
|
+
description: 'Anthropic Claude Opus 4.8 via Copilot subscription',
|
|
265
|
+
aliases: ['opus', 'claude'],
|
|
253
266
|
},
|
|
254
267
|
|
|
255
268
|
// Google models
|