withTrialSalt method

ReplayLLMClient withTrialSalt(
  1. String salt
)

Returns a copy of this client bound to salt. Convenience for per-trial wrapping inside an environment's prepare().

Implementation

ReplayLLMClient withTrialSalt(String salt) => ReplayLLMClient(
  store: store,
  fallback: fallback,
  strictReplay: strictReplay,
  hasher: hasher,
  rateLimitGate: rateLimitGate,
  trialSalt: salt,
);