Fix ask-user review pause in web runs
This commit is contained in:
@@ -2325,8 +2325,40 @@ class LocalCodingAgent:
|
||||
plan = payload.get('plan')
|
||||
if isinstance(plan, dict):
|
||||
return self._format_generation_plan_review(plan)
|
||||
ask_user = payload.get('ask_user')
|
||||
if isinstance(ask_user, dict):
|
||||
return self._format_ask_user_review(ask_user)
|
||||
return fallback
|
||||
|
||||
def _format_ask_user_review(self, ask_user: dict[str, object]) -> str:
|
||||
question = str(ask_user.get('question') or '').strip()
|
||||
header = str(ask_user.get('header') or '').strip()
|
||||
question_id = str(ask_user.get('question_id') or '').strip()
|
||||
choices = ask_user.get('choices')
|
||||
lines: list[str] = []
|
||||
if header:
|
||||
lines.append(header)
|
||||
lines.append('')
|
||||
lines.append(question or '需要你补充一个回答后才能继续。')
|
||||
if isinstance(choices, list) and choices:
|
||||
rendered_choices = [
|
||||
str(choice).strip()
|
||||
for choice in choices
|
||||
if isinstance(choice, str) and str(choice).strip()
|
||||
]
|
||||
if rendered_choices:
|
||||
lines.append('')
|
||||
lines.append('请选择一个选项,或直接回复你的补充说明:')
|
||||
for index, choice in enumerate(rendered_choices, start=1):
|
||||
lines.append(f'{index}. {choice}')
|
||||
else:
|
||||
lines.append('')
|
||||
lines.append('请直接回复你的答案,我会继续执行。')
|
||||
if question_id:
|
||||
lines.append('')
|
||||
lines.append(f'内部问题 ID:`{question_id}`')
|
||||
return '\n'.join(lines)
|
||||
|
||||
def _format_generation_goal_review(self, goal: dict[str, object]) -> str:
|
||||
target_summary = self._format_review_targets(goal)
|
||||
lines = [
|
||||
|
||||
+23
-1
@@ -2972,7 +2972,29 @@ def _ask_user_question(arguments: dict[str, Any], context: ToolExecutionContext)
|
||||
allow_free_text=allow_free_text,
|
||||
)
|
||||
except LookupError as exc:
|
||||
raise ToolExecutionError(str(exc)) from exc
|
||||
payload = {
|
||||
'ask_user': {
|
||||
'question': question,
|
||||
'question_id': question_id,
|
||||
'header': header,
|
||||
'choices': list(choices),
|
||||
'allow_free_text': allow_free_text,
|
||||
'reason': str(exc),
|
||||
}
|
||||
}
|
||||
return (
|
||||
json.dumps(payload, ensure_ascii=False, indent=2),
|
||||
{
|
||||
'action': 'ask_user_question',
|
||||
'requires_user_review': True,
|
||||
'question': question,
|
||||
'question_id': question_id,
|
||||
'header': header,
|
||||
'choices': list(choices),
|
||||
'allow_free_text': allow_free_text,
|
||||
'reason': str(exc),
|
||||
},
|
||||
)
|
||||
lines = ['# Ask User', '']
|
||||
if header:
|
||||
lines.append(f'- Header: {header}')
|
||||
|
||||
Reference in New Issue
Block a user