converse-mcp-server 2.8.2 → 2.8.3
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/claude.js +2 -1
package/package.json
CHANGED
package/src/providers/claude.js
CHANGED
|
@@ -224,7 +224,8 @@ async function* createStreamingGenerator(
|
|
|
224
224
|
// Build query options
|
|
225
225
|
// Use higher maxTurns to allow for file reading operations
|
|
226
226
|
const queryOptions = {
|
|
227
|
-
|
|
227
|
+
model: 'claude-opus-4-5', // Use Opus 4.5 for best quality
|
|
228
|
+
maxTurns: 20, // Allow multiple turns for file operations
|
|
228
229
|
permissionMode: 'bypassPermissions', // Don't prompt for permissions
|
|
229
230
|
};
|
|
230
231
|
|