返回 Skill 列表
extension
分类: 内容与媒体无需 API Key

scienceworld-process-pauser

这项技能在任务执行过程中引入了有意的暂停。当代理需要考虑下一步、评估中间结果或等待进程完成时,应触发此技能。该技能使用'wait1'或'wait'动作暂时停止活动,以防止在复杂的实验程序中仓促做出决定。

person作者: jakexiaohubgithub

Skill: Process Pauser

When to Use

Activate this skill when you need to:

  • Consider next steps in a complex procedure.
  • Evaluate an intermediate result (e.g., a mixed chemical, a partial assembly).
  • Wait for a simulated process to complete.
  • Prevent rushed decisions that could lead to errors.

Core Actions

Use the following actions to implement a pause:

  • wait1: Pauses execution for a single simulation step. Use for brief reflection.
  • wait: Pauses execution for 10 simulation steps. Use for longer consideration or simulated waiting periods.

Implementation Logic

  1. Identify the Pause Trigger: Recognize a moment requiring deliberation (e.g., after creating an intermediate product, before adding a new component).
  2. Select Duration: Choose wait1 for quick checks or wait for extended evaluation.
  3. Execute Pause: Perform the selected wait action.
  4. Resume: Continue the task with the benefit of the reflective pause.

Example from Trajectory

In the paint-mixing task, the agent used wait1 after creating orange paint and before adding more red to make red-orange. This pause allowed for consideration of proportions and color adjustment.