feat(runner): increase MAX_TURNS limit to 80 for large task sessions

This commit is contained in:
2026-06-03 13:13:50 -07:00
parent d16ef9c138
commit ae54954545
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ const child_process_1 = require("child_process");
const vibn_chat_model_1 = require("./llm/vibn-chat-model");
const tools_1 = require("./tools");
const loader_1 = require("./prompts/loader");
const MAX_TURNS = 45;
const MAX_TURNS = 80;
function runBuildVerification(repoRoot, appPath) {
const fs = require("fs");
const path = require("path");

View File

@@ -13,7 +13,7 @@ import { AgentConfig } from "./agents";
import { executeTool, ToolContext } from "./tools";
import { resolvePrompt } from "./prompts/loader";
const MAX_TURNS = 45;
const MAX_TURNS = 80;
function runBuildVerification(
repoRoot: string,