org.llm4s.reliability.RetryPolicy
See theRetryPolicy companion trait
Attributes
-
Companion
-
trait
-
Graph
-
-
Supertypes
-
class Object
trait Matchable
class Any
-
Self type
-
Members list
Exponential backoff: 2^n * baseDelay.
Exponential backoff: 2^n * baseDelay.
Example: baseDelay=1s → 1s, 2s, 4s, 8s, ...
Attributes
Fixed delay: always wait the same amount of time.
Fixed delay: always wait the same amount of time.
Example: delay=3s → 3s, 3s, 3s, ...
Attributes
Linear backoff: attemptNumber * baseDelay.
Linear backoff: attemptNumber * baseDelay.
Example: baseDelay=2s → 2s, 4s, 6s, 8s, ...
Attributes
No retry: fail immediately on first error.
No retry: fail immediately on first error.
Attributes