Ranking Properties
data class RankingProperties(val llm: String? = null, val maxAttempts: Int = 5, val backoffMillis: Long = 100, val backoffMultiplier: Double = 5.0, val backoffMaxInterval: Long = 180000) : RetryProperties
Properties for the ranking service. Optional LLM selection, plus normal retry properties.
Parameters
llm
name of the LLM to use for ranking, or null to use auto selection
max Attempts
maximum number of attempts to retry ranking
backoff Millis
initial backoff time in milliseconds
backoff Multiplier
multiplier for backoff time
backoff Max Interval
maximum backoff time in milliseconds