返回 DeepSeek-Reasonix
turn_outcome.go
根目录 / internal / event / turn_outcome.go
1 package event
2
3 const TurnOutcomeFinalReadiness = "final_readiness"
4
5 const TurnOutcomeIncompleteRead = "incomplete_read"
6
7 // TurnOutcomeRecoveryPaused marks an Auto recovery Episode budget stop. New
8 // clients show an informational status (not send-failed); older clients still
9 // read Err text and ignore the unknown outcome.
10 const TurnOutcomeRecoveryPaused = "recovery_paused"
11
11 lines GO