feat(runner): increase MAX_TURNS limit to 80 for large task sessions
This commit is contained in:
@@ -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");
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user