We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3641e4b commit fcbf87fCopy full SHA for fcbf87f
owl/utils/enhanced_role_playing.py
@@ -450,12 +450,6 @@ def run_society(
450
"""
451
input_msg = society.init_chat(init_prompt)
452
for _round in range(round_limit):
453
- # Check if previous user response had TASK_DONE before getting next assistant response
454
- if _round > 0 and (
455
- "TASK_DONE" in input_msg.content or "任务已完成" in input_msg.content
456
- ):
457
- break
458
-
459
assistant_response, user_response = society.step(input_msg)
460
overall_completion_token_count += (
461
assistant_response.info["usage"]["completion_tokens"]
0 commit comments