We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab880fc commit 7cfed64Copy full SHA for 7cfed64
slime/utils/types.py
@@ -31,6 +31,10 @@ class Status(Enum):
31
COMPLETED = "completed"
32
TRUNCATED = "truncated"
33
ABORTED = "aborted"
34
+ # Indicates a recoverable or non-critical failure during generation (e.g., tool call failure,
35
+ # external API error, parsing error). Unlike ABORTED, FAILED samples may still contain partial
36
+ # valid output and can be retried or handled gracefully.
37
+ FAILED = "failed"
38
39
status: Status = Status.PENDING
40
0 commit comments