seed property
A seed for the random number generator.
By setting a seed, you can make the model's output mostly deterministic.
For a given prompt and parameters (like temperature, top_p, etc.), the
model will produce the same response every time. However, it's not a
guaranteed absolute deterministic behavior. This is different from
parameters like temperature, which control the level of randomness.
seed ensures that the "random" choices the model makes are the same on
every run, making it essential for testing and ensuring reproducible
results.
Optional.
Implementation
core.int? seed;