@inspectr/mcplab-core 0.6.0 → 0.7.0
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/dist/agent.js +1 -1
- package/package.json +1 -1
package/dist/agent.js
CHANGED
|
@@ -30,7 +30,7 @@ export async function runAgentScenario(params) {
|
|
|
30
30
|
const toolSequence = [];
|
|
31
31
|
const toolDurationsMs = [];
|
|
32
32
|
let finalText = '';
|
|
33
|
-
const maxTurns = params.maxTurns ??
|
|
33
|
+
const maxTurns = params.maxTurns ?? 30;
|
|
34
34
|
const emitProgress = async (event) => {
|
|
35
35
|
if (!params.onProgress)
|
|
36
36
|
return;
|