test: Full E2E Pipeline 성공 (Plan→Code→Review) — 3호출 219초 #task-190

This commit is contained in:
quantlab
2026-03-06 17:46:45 +09:00
parent 57c9cb6143
commit b6ed432fe3
2 changed files with 67 additions and 35 deletions

View File

@@ -36,7 +36,7 @@ class TaskPipeline:
f"Decompose this request into concrete tasks."
)
response = await self.gemini.call("planner", prompt, timeout=90)
response = await self.gemini.call("planner", prompt, timeout=180)
self._log("plan", user_request, response)
# JSON 추출
@@ -54,7 +54,7 @@ class TaskPipeline:
f"Implement the changes described in the task."
)
response = await self.gemini.call("coder", prompt, timeout=120)
response = await self.gemini.call("coder", prompt, timeout=180)
self._log("code", task.get("title", ""), response)
return response
@@ -66,7 +66,7 @@ class TaskPipeline:
f"Review the code changes."
)
response = await self.gemini.call("reviewer", prompt, timeout=90)
response = await self.gemini.call("reviewer", prompt, timeout=180)
self._log("review", task.get("title", ""), response)
review = self._extract_json(response)