seed method

OpenAIBuilder seed(
  1. int seedValue
)

Sets seed for deterministic outputs

If specified, the system will make a best effort to sample deterministically, such that repeated requests with the same seed and parameters should return the same result.

Implementation

OpenAIBuilder seed(int seedValue) {
  _baseBuilder.extension('seed', seedValue);
  return this;
}