InvokeAI/invokeai/frontend/web/src/app/constants.ts
psychedelicious d5a75eb833 feat: increase seed from int32 to uint32
At some point I typo'd this and set the max seed to signed int32 max. It should be *un*signed int32 max.

This restored the seed range to what it was in v2.3.
2023-07-24 16:34:50 +10:00

3 lines
75 B
TypeScript

export const NUMPY_RAND_MIN = 0;
export const NUMPY_RAND_MAX = 4294967295;