| 86 | |
| 87 | |
| 88 | class RetryStrategy(str, Enum): |
| 89 | NONE = "none" |
| 90 | SIMPLE = "simple" |
| 91 | PROMPT_MUTATION = "prompt_mutation" |
| 92 | FALLBACK = "fallback" |
| 93 | |
| 94 | |
| 95 | # ============================================================================= |
nothing calls this directly
no outgoing calls
no test coverage detected