sapper-iq 1.1.5 → 1.1.6

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/sapper.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sapper-iq",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "AI-powered development assistant that executes commands and builds projects",
5
5
  "main": "sapper.mjs",
6
6
  "bin": {
package/sapper.mjs CHANGED
@@ -382,7 +382,7 @@ IMPORTANT RULES:
382
382
  messages.push({ role: 'user', content: input });
383
383
 
384
384
  let toolRounds = 0; // Prevent infinite loops
385
- const MAX_TOOL_ROUNDS = 5;
385
+ const MAX_TOOL_ROUNDS = 20;
386
386
 
387
387
  let active = true;
388
388
  while (active) {