TransiencyLevel

Retry-policy input. Recognizers classify only what they can honestly determine from the exception; the retry strategy (e.g. exponential backoff with a generous cap) handles "how long a transient outage will last".

Entries

Link copied to clipboard

Definitely not transient — don't retry (bad API key, agent stuck, context overflow, 15-min LiteLLM request timeout).

Link copied to clipboard

Transient — retry per session policy. The strategy handles "how long" via, for example, exponential backoff.

Link copied to clipboard

Recognizer doesn't know — policy decides (Conservative = don't retry, Lenient = retry as TRANSIENT).

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.