test: Full E2E Pipeline 성공 (Plan→Code→Review) — 3호출 219초 #task-190
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user