You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: eval_protocol/types/types.py
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ class TerminationReason(str, Enum):
13
13
CONTROL_PLANE_SIGNAL: Trajectory ends because the control plane signals termination (e.g. env goal reached or failure condition)
14
14
USER_STOP: Trajectory ends because the simulated user signals to stop
15
15
ERROR: Trajectory ends because of an error
16
+
INTERRUPTED: Trajectory is interrupted by some non-system related reason (e.g. policy returns unexpected response and we need to terminate the rollout).
16
17
STOP: Trajectory ends by the policy (mapped to llm response stop reason "stop")
17
18
LENGTH: Trajectory ends by the policy (mapped to llm response stop reason "length")
18
19
TOOL_CALLS: Trajectory ends by the policy with a hanging tool call response (mapped to llm response stop reason "tool_calls")
@@ -22,6 +23,7 @@ class TerminationReason(str, Enum):
0 commit comments